From 37b5360526dff1940870604f48322d8cdad78751 Mon Sep 17 00:00:00 2001 From: Sparky Date: Thu, 31 Aug 2023 22:47:06 +0100 Subject: [PATCH 01/17] Research Wars: Episode I, A New Role This splits Lab Assistant into a true learner role (Research Understudy) and a science assistant RP role (Lab Assistant). It also adds alt-titles for both roles for each of the research specialisations. --- code/__defines/jobs.dm | 4 ++-- code/game/jobs/job/science.dm | 26 ++++++++++++++++++++++---- code/game/jobs/jobs.dm | 4 +++- html/changelogs/sciencelearneralts.yml | 8 ++++++++ 4 files changed, 35 insertions(+), 7 deletions(-) create mode 100644 html/changelogs/sciencelearneralts.yml diff --git a/code/__defines/jobs.dm b/code/__defines/jobs.dm index 0ce0475333f..36a03f44301 100644 --- a/code/__defines/jobs.dm +++ b/code/__defines/jobs.dm @@ -16,7 +16,7 @@ #define COMMAND_ROLES list(/datum/job/captain, /datum/job/xo, /datum/job/chief_engineer, /datum/job/cmo, /datum/job/rd, /datum/job/hos, /datum/job/operations_manager) #define COMMAND_SUPPORT_ROLES list(/datum/job/bridge_crew) -#define SCIENCE_ROLES list(/datum/job/scientist, /datum/job/xenoarchaeologist, /datum/job/xenobiologist, /datum/job/xenobotanist, /datum/job/intern_sci) +#define SCIENCE_ROLES list(/datum/job/scientist, /datum/job/xenoarchaeologist, /datum/job/xenobiologist, /datum/job/xenobotanist, /datum/job/intern_sci, /datum/job/intern_sci/assistant) #define MEDICAL_ROLES list(/datum/job/doctor, /datum/job/surgeon, /datum/job/pharmacist, /datum/job/psychiatrist, /datum/job/med_tech, /datum/job/intern_med) #define ENGINEERING_ROLES list(/datum/job/engineer, /datum/job/atmos, /datum/job/intern_eng) #define SERVICE_ROLES list(/datum/job/chaplain, /datum/job/bartender, /datum/job/chef, /datum/job/hydro, /datum/job/janitor, /datum/job/journalist, /datum/job/librarian) @@ -38,4 +38,4 @@ #define ZENG_ROLES list(SCIENCE_ROLES, MEDICAL_ROLES, CIVILIAN_ROLES, REPRESENTATIVE_ROLE) #define HEPH_ROLES list(OPERATIONS_ROLES, ENGINEERING_ROLES, CIVILIAN_ROLES, REPRESENTATIVE_ROLE) #define ORION_ROLES list(OPERATIONS_ROLES, CIVILIAN_ROLES, REPRESENTATIVE_ROLE) -#define INDEP_ROLES list(NON_CREW_CIVILIAN_ROLES, CONSULAR_ROLE, JOURNALIST_ROLE, CHAPLAIN_ROLE, OFF_DUTY_CREW_MEMBER_ROLE) \ No newline at end of file +#define INDEP_ROLES list(NON_CREW_CIVILIAN_ROLES, CONSULAR_ROLE, JOURNALIST_ROLE, CHAPLAIN_ROLE, OFF_DUTY_CREW_MEMBER_ROLE) diff --git a/code/game/jobs/job/science.dm b/code/game/jobs/job/science.dm index 5fd668aae13..e6bc2b68f79 100644 --- a/code/game/jobs/job/science.dm +++ b/code/game/jobs/job/science.dm @@ -212,19 +212,26 @@ uniform = /obj/item/clothing/under/rank/scientist/botany /datum/job/intern_sci - title = "Lab Assistant" + title = "Research Understudy" flag = INTERN_SCI departments = SIMPLEDEPT(DEPARTMENT_SCIENCE) department_flag = MEDSCI faction = "Station" - total_positions = 3 - spawn_positions = 3 + alt_titles = list("Xenoarchaeology Student", "Xenobiology Understudy", "Xenobotany Understudy") + total_positions = 2 + spawn_positions = 2 supervisors = "the Research Director" selection_color = "#a44799" + economic_modifier = 4 access = list(access_research, access_tox) minimal_access = list(access_research, access_tox) outfit = /datum/outfit/job/intern_sci blacklisted_species = list(SPECIES_VAURCA_BREEDER) + minimum_character_age = list( + SPECIES_HUMAN = 25, + SPECIES_SKRELL = 55, + SPECIES_SKRELL_AXIORI = 55 + ) /datum/outfit/job/intern_sci name = "Lab Assistant" @@ -248,4 +255,15 @@ tab_pda = /obj/item/modular_computer/handheld/pda/research wristbound = /obj/item/modular_computer/handheld/wristbound/preset/pda/research - tablet = /obj/item/modular_computer/handheld/preset/research \ No newline at end of file + tablet = /obj/item/modular_computer/handheld/preset/research + +/datum/job/intern_sci/assistant + title = "Lab Assistant" + flag = ASSISTANT_SCI + alt_titles = list("Field Assistant", "Xenobiology Assisant", "Xenobotany Assistant") + economic_modifier = 2 + minimum_character_age = list( + SPECIES_HUMAN = 18, + SPECIES_SKRELL = 50, + SPECIES_SKRELL_AXIORI = 50 + ) diff --git a/code/game/jobs/jobs.dm b/code/game/jobs/jobs.dm index 4998bcdef99..f9e5f510cc4 100644 --- a/code/game/jobs/jobs.dm +++ b/code/game/jobs/jobs.dm @@ -37,6 +37,7 @@ var/const/INTERN_MED =(1<<11) var/const/INTERN_SCI =(1<<12) var/const/XENOBOTANIST =(1<<13) var/const/XENOARCHEOLOGIST =(1<<14) +var/const/ASSISTANT_SCI =(1<<15) // SERVICE var/const/SERVICE =(1<<2) @@ -99,6 +100,7 @@ var/list/science_positions = list( "Xenoarchaeologist", "Xenobiologist", "Xenobotanist", + "Research Understudy", "Lab Assistant" ) @@ -163,4 +165,4 @@ var/list/nonhuman_positions = list( if(J.title == job) titles = J.alt_titles - return titles \ No newline at end of file + return titles diff --git a/html/changelogs/sciencelearneralts.yml b/html/changelogs/sciencelearneralts.yml new file mode 100644 index 00000000000..06909749dce --- /dev/null +++ b/html/changelogs/sciencelearneralts.yml @@ -0,0 +1,8 @@ +author: Sparky_hotdog + +delete-after: True + +changes: + - tweak: "The Lab Assistant job is now called Research Understudy. Its minimum age is 25, from 18." + - rscadd: "Added alt-titles for Research Understudy: Xenoarchaeology Student, Xenobiology Understudy and Xenobotany Understudy." + - rscadd: "Added a new Lab Assistant role with a minimum age of 18 which acts as a true assistant to research. It has alt-titles as well: Field Assistant, Xenobiology Assistant, Xenobotany Assistant." From e5744243e4c3d78d5a0ca90d73a609f0925a2b06 Mon Sep 17 00:00:00 2001 From: Sparky Date: Mon, 4 Sep 2023 15:26:44 +0100 Subject: [PATCH 02/17] New Understudy Age - 28 --- code/game/jobs/job/science.dm | 6 +++--- html/changelogs/sciencelearneralts.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/code/game/jobs/job/science.dm b/code/game/jobs/job/science.dm index e6bc2b68f79..e8c5120c2fe 100644 --- a/code/game/jobs/job/science.dm +++ b/code/game/jobs/job/science.dm @@ -228,9 +228,9 @@ outfit = /datum/outfit/job/intern_sci blacklisted_species = list(SPECIES_VAURCA_BREEDER) minimum_character_age = list( - SPECIES_HUMAN = 25, - SPECIES_SKRELL = 55, - SPECIES_SKRELL_AXIORI = 55 + SPECIES_HUMAN = 28, + SPECIES_SKRELL = 58, + SPECIES_SKRELL_AXIORI = 58 ) /datum/outfit/job/intern_sci diff --git a/html/changelogs/sciencelearneralts.yml b/html/changelogs/sciencelearneralts.yml index 06909749dce..7cb4be515de 100644 --- a/html/changelogs/sciencelearneralts.yml +++ b/html/changelogs/sciencelearneralts.yml @@ -3,6 +3,6 @@ author: Sparky_hotdog delete-after: True changes: - - tweak: "The Lab Assistant job is now called Research Understudy. Its minimum age is 25, from 18." + - tweak: "The Lab Assistant job is now called Research Understudy. Its minimum age is 28, from 18." - rscadd: "Added alt-titles for Research Understudy: Xenoarchaeology Student, Xenobiology Understudy and Xenobotany Understudy." - rscadd: "Added a new Lab Assistant role with a minimum age of 18 which acts as a true assistant to research. It has alt-titles as well: Field Assistant, Xenobiology Assistant, Xenobotany Assistant." From 6cd19a9eb1a8f8eeaeabf5d8c61657b8a80fd82f Mon Sep 17 00:00:00 2001 From: 1Sparky1 Date: Fri, 8 Sep 2023 21:41:44 +0100 Subject: [PATCH 03/17] Adds spawn points --- code/game/jobs/job/science.dm | 2 +- maps/sccv_horizon/sccv_horizon-2_deck_2.dmm | 61 ++++++++++----------- 2 files changed, 30 insertions(+), 33 deletions(-) diff --git a/code/game/jobs/job/science.dm b/code/game/jobs/job/science.dm index e8c5120c2fe..f62fc43947b 100644 --- a/code/game/jobs/job/science.dm +++ b/code/game/jobs/job/science.dm @@ -234,7 +234,7 @@ ) /datum/outfit/job/intern_sci - name = "Lab Assistant" + name = "Research Understudy" jobtype = /datum/job/intern_sci uniform = /obj/item/clothing/under/rank/scientist/intern diff --git a/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm b/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm index cef0ed9b12d..cbc3e6d9e2b 100644 --- a/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm +++ b/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm @@ -10562,13 +10562,13 @@ /turf/simulated/floor/tiled/dark, /area/horizon/bar) "fkF" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, /obj/effect/landmark/start{ name = "Xenoarchaeologist" }, /obj/structure/bed/stool/chair/office/light, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, /turf/simulated/floor/wood, /area/rnd/conference) "fkZ" = ( @@ -26629,15 +26629,13 @@ /turf/simulated/floor/tiled/full, /area/engineering/lobby) "mRW" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, /obj/effect/landmark/start{ name = "Xenoarchaeologist" }, /obj/structure/bed/stool/chair/office/light{ dir = 1 }, +/obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood, /area/rnd/conference) "mTY" = ( @@ -26954,11 +26952,11 @@ /area/rnd/xenobiology/xenoflora) "nac" = ( /obj/machinery/alarm/west, -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/simulated/floor/wood, /area/rnd/conference) "nam" = ( /obj/structure/lattice/catwalk, @@ -29818,7 +29816,7 @@ dir = 1 }, /obj/effect/landmark/start{ - name = "Lab Assistant" + name = "Research Understudy" }, /turf/simulated/floor/wood, /area/rnd/conference) @@ -31269,13 +31267,13 @@ /turf/simulated/floor/tiled/dark/full, /area/engineering/storage_eva) "pfr" = ( -/obj/effect/landmark/start{ - name = "Lab Assistant" - }, /obj/structure/bed/stool/chair/office/light{ dir = 1 }, /obj/effect/floor_decal/spline/fancy/wood, +/obj/effect/landmark/start{ + name = "Lab Assistant" + }, /turf/simulated/floor/wood, /area/rnd/conference) "pfB" = ( @@ -32317,15 +32315,21 @@ /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) "pJy" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/camera/network/research{ c_tag = "Research - Meeting Room"; dir = 4 }, -/turf/simulated/floor/tiled/white, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/obj/structure/bed/stool/chair/office/light{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood, /area/rnd/conference) "pJE" = ( /obj/item/device/radio/intercom/east, @@ -35548,11 +35552,11 @@ "rlX" = ( /obj/machinery/power/apc/low/west, /obj/structure/cable/green, -/obj/effect/floor_decal/corner/mauve{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/spline/fancy/wood{ dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, +/turf/simulated/floor/wood, /area/rnd/conference) "rmR" = ( /obj/structure/cable{ @@ -36965,13 +36969,6 @@ /obj/structure/railing/mapped, /turf/simulated/floor/tiled/dark/full, /area/hallway/primary/central_one) -"rVL" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/table/reinforced/glass, -/turf/simulated/floor/wood, -/area/rnd/conference) "rVV" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -40517,7 +40514,7 @@ /area/crew_quarters/heads/hor) "tNT" = ( /obj/effect/landmark/start{ - name = "Lab Assistant" + name = "Research Understudy" }, /obj/structure/bed/stool/chair/office/light, /obj/effect/floor_decal/spline/fancy/wood{ @@ -45875,10 +45872,10 @@ /obj/structure/bed/stool/chair/office/light{ dir = 1 }, +/obj/effect/floor_decal/spline/fancy/wood, /obj/effect/landmark/start{ name = "Scientist" }, -/obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood, /area/rnd/conference) "wlJ" = ( @@ -78593,7 +78590,7 @@ waD cfp lcs fkF -rVL +ncA mRW eZp dOi @@ -79200,7 +79197,7 @@ bSD jnF ouk ncA -wlF +pfr vVL dOi aTd From 0b27e4ce9b93cbd134cceb6c6b777e9f07e6d2af Mon Sep 17 00:00:00 2001 From: 1Sparky1 Date: Sun, 28 Apr 2024 09:48:36 +0100 Subject: [PATCH 04/17] Update spawn points --- maps/sccv_horizon/sccv_horizon-2_deck_2.dmm | 82 ++++++++++++--------- 1 file changed, 49 insertions(+), 33 deletions(-) diff --git a/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm b/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm index e07c352fdf3..3b21020bed8 100644 --- a/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm +++ b/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm @@ -11362,10 +11362,10 @@ /obj/effect/floor_decal/spline/fancy/wood{ dir = 9 }, +/obj/structure/bed/stool/chair/office/light, /obj/effect/landmark/start{ - name = "Xenoarchaeologist" + name = "Research Understudy" }, -/obj/structure/bed/stool/chair/office/light, /turf/simulated/floor/wood, /area/rnd/conference) "fkZ" = ( @@ -15495,6 +15495,16 @@ /obj/structure/platform_stairs, /turf/simulated/floor/tiled/dark, /area/maintenance/wing/port/far) +"gZA" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/effect/landmark/start{ + name = "Lab Assistant" + }, +/turf/simulated/floor/wood, +/area/rnd/conference) "gZD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -25003,6 +25013,16 @@ }, /turf/simulated/floor/tiled/dark, /area/maintenance/wing/starboard/far) +"lCb" = ( +/obj/structure/bed/stool/chair/office/light, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Research Understudy" + }, +/turf/simulated/floor/wood, +/area/rnd/conference) "lCC" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 5 @@ -28048,12 +28068,12 @@ /obj/effect/floor_decal/spline/fancy/wood{ dir = 10 }, -/obj/effect/landmark/start{ - name = "Xenoarchaeologist" - }, /obj/structure/bed/stool/chair/office/light{ dir = 1 }, +/obj/effect/landmark/start{ + name = "Scientist" + }, /turf/simulated/floor/wood, /area/rnd/conference) "mTY" = ( @@ -32790,16 +32810,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/storage/secure) -"pfr" = ( -/obj/effect/landmark/start{ - name = "Lab Assistant" - }, -/obj/structure/bed/stool/chair/office/light{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/wood, -/area/rnd/conference) "pfB" = ( /obj/effect/floor_decal/corner/brown{ dir = 10 @@ -33866,6 +33876,12 @@ c_tag = "Research - Meeting Room"; dir = 4 }, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/obj/structure/bed/stool/chair/office/light{ + dir = 4 + }, /turf/simulated/floor/tiled/white, /area/rnd/conference) "pJE" = ( @@ -39584,6 +39600,16 @@ temperature = 253.15 }, /area/horizon/kitchen/freezer) +"ssI" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/effect/landmark/start{ + name = "Xenoarchaeologist" + }, +/turf/simulated/floor/wood, +/area/rnd/conference) "ssK" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/railing/mapped, @@ -42454,16 +42480,6 @@ /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood, /area/crew_quarters/heads/hor) -"tNT" = ( -/obj/effect/landmark/start{ - name = "Lab Assistant" - }, -/obj/structure/bed/stool/chair/office/light, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/rnd/conference) "tNU" = ( /obj/structure/platform_stairs/full/east_west_cap, /obj/structure/platform/cutout{ @@ -48079,10 +48095,10 @@ /obj/structure/bed/stool/chair/office/light{ dir = 1 }, +/obj/effect/floor_decal/spline/fancy/wood, /obj/effect/landmark/start{ name = "Scientist" }, -/obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood, /area/rnd/conference) "wlJ" = ( @@ -81119,7 +81135,7 @@ xcO byv bSD gqz -jjl +lCb ncA wlF vVL @@ -81321,9 +81337,9 @@ daM rnA bSD jnF -hSU +ouk vye -wlF +gZA dxH dOi aTd @@ -81523,9 +81539,9 @@ rSx qUz bSD jnF -ouk +jjl ncA -wlF +ssI vVL dOi aTd @@ -81725,9 +81741,9 @@ pkA rnA bSD jnF -tNT +hSU ncA -pfr +ssI vVL dOi qFD From d3601b77355ef87b258bbcb18d39a784099b9e52 Mon Sep 17 00:00:00 2001 From: 1Sparky1 Date: Sun, 28 Apr 2024 09:58:17 +0100 Subject: [PATCH 05/17] Update sciencelearneralts.yml --- html/changelogs/sciencelearneralts.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/html/changelogs/sciencelearneralts.yml b/html/changelogs/sciencelearneralts.yml index 7cb4be515de..69dcf9cc44b 100644 --- a/html/changelogs/sciencelearneralts.yml +++ b/html/changelogs/sciencelearneralts.yml @@ -3,6 +3,7 @@ author: Sparky_hotdog delete-after: True changes: - - tweak: "The Lab Assistant job is now called Research Understudy. Its minimum age is 28, from 18." - - rscadd: "Added alt-titles for Research Understudy: Xenoarchaeology Student, Xenobiology Understudy and Xenobotany Understudy." - - rscadd: "Added a new Lab Assistant role with a minimum age of 18 which acts as a true assistant to research. It has alt-titles as well: Field Assistant, Xenobiology Assistant, Xenobotany Assistant." + - rscadd: "Added a new job, Research Understudy, to replace Lab Assistant as the learner job for research. It has a minumim age of 28, up from 18." + - rscadd: "Added alt-titles for Research Understudy: Xenoarchaeology Understudy, Xenobiology Understudy and Xenobotany Understudy." + - rscadd: "Added alt-titles for Lab Assistant: Field Assistant, Xenobiology Assistant and Xenobotany Assistant." + - tweak: "The Lab Assistant job is now intended as purely an aide to the research department." From 6d4c34d37aecf2f04d9d357d5b1742670b94f1e5 Mon Sep 17 00:00:00 2001 From: 1Sparky1 Date: Sun, 28 Apr 2024 09:59:49 +0100 Subject: [PATCH 06/17] Update sciencelearneralts.yml --- html/changelogs/sciencelearneralts.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/changelogs/sciencelearneralts.yml b/html/changelogs/sciencelearneralts.yml index 69dcf9cc44b..e24e5f61089 100644 --- a/html/changelogs/sciencelearneralts.yml +++ b/html/changelogs/sciencelearneralts.yml @@ -6,4 +6,4 @@ changes: - rscadd: "Added a new job, Research Understudy, to replace Lab Assistant as the learner job for research. It has a minumim age of 28, up from 18." - rscadd: "Added alt-titles for Research Understudy: Xenoarchaeology Understudy, Xenobiology Understudy and Xenobotany Understudy." - rscadd: "Added alt-titles for Lab Assistant: Field Assistant, Xenobiology Assistant and Xenobotany Assistant." - - tweak: "The Lab Assistant job is now intended as purely an aide to the research department." + - rscadd: "The Lab Assistant job is now intended as purely an aide to the research department." From ea5d4b4a78dee6b47c7ec39abf396292c9f2a5b6 Mon Sep 17 00:00:00 2001 From: 1Sparky1 Date: Sun, 28 Apr 2024 10:04:19 +0100 Subject: [PATCH 07/17] Update science.dm --- code/game/jobs/job/science.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/jobs/job/science.dm b/code/game/jobs/job/science.dm index 1b68bbb3d80..6f4c7527849 100644 --- a/code/game/jobs/job/science.dm +++ b/code/game/jobs/job/science.dm @@ -233,7 +233,7 @@ SPECIES_SKRELL_AXIORI = 58 ) -/datum/outfit/job/intern_sci +/obj/outfit/job/intern_sci name = "Research Understudy" jobtype = /datum/job/intern_sci From cbe073f066975f39b6e1b1772c2590436b3510f7 Mon Sep 17 00:00:00 2001 From: 1Sparky1 Date: Thu, 2 May 2024 15:41:59 +0100 Subject: [PATCH 08/17] Update sccv_horizon-2_deck_2.dmm --- maps/sccv_horizon/sccv_horizon-2_deck_2.dmm | 51 ++++++++++++--------- 1 file changed, 29 insertions(+), 22 deletions(-) diff --git a/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm b/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm index 2c3d0caea67..247cae01917 100644 --- a/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm +++ b/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm @@ -4723,9 +4723,6 @@ /obj/structure/bed/stool/chair/office/light{ dir = 8 }, -/obj/effect/landmark/start{ - name = "Xenoarchaeologist" - }, /obj/effect/floor_decal/spline/fancy/wood{ dir = 6 }, @@ -4735,6 +4732,9 @@ /obj/structure/cable/green{ icon_state = "4-8" }, +/obj/effect/landmark/start{ + name = "Scientist" + }, /turf/simulated/floor/wood, /area/rnd/conference) "bXR" = ( @@ -4931,7 +4931,6 @@ }, /obj/merge_conflict_marker{ name = "---Merge Conflict Marker---"; - desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, /obj/structure/disposalpipe/segment{ @@ -6558,12 +6557,12 @@ /obj/structure/bed/stool/chair/office/light{ dir = 4 }, -/obj/effect/landmark/start{ - name = "Scientist" - }, /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 }, +/obj/effect/landmark/start{ + name = "Xenoarchaeologist" + }, /turf/simulated/floor/wood, /area/rnd/conference) "cRP" = ( @@ -10537,7 +10536,6 @@ }, /obj/merge_conflict_marker{ name = "---Merge Conflict Marker---"; - desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, /obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, @@ -17294,7 +17292,6 @@ }, /obj/merge_conflict_marker{ name = "---Merge Conflict Marker---"; - desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, /obj/machinery/door/airlock/glass_research{ @@ -21104,7 +21101,6 @@ }, /obj/merge_conflict_marker{ name = "---Merge Conflict Marker---"; - desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, /obj/structure/table/standard, @@ -28683,7 +28679,6 @@ }, /obj/merge_conflict_marker{ name = "---Merge Conflict Marker---"; - desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, /obj/effect/floor_decal/corner/mauve{ @@ -29628,7 +29623,6 @@ }, /obj/merge_conflict_marker{ name = "---Merge Conflict Marker---"; - desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, /obj/structure/disposalpipe/segment{ @@ -31085,7 +31079,6 @@ }, /obj/merge_conflict_marker{ name = "---Merge Conflict Marker---"; - desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, /obj/machinery/door/airlock/glass_research{ @@ -36290,7 +36283,6 @@ }, /obj/merge_conflict_marker{ name = "---Merge Conflict Marker---"; - desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, /turf/simulated/wall/r_wall, @@ -37084,7 +37076,7 @@ dir = 4 }, /obj/effect/landmark/start{ - name = "Lab Assistant" + name = "Research Understudy" }, /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 @@ -40376,7 +40368,6 @@ }, /obj/merge_conflict_marker{ name = "---Merge Conflict Marker---"; - desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, /turf/simulated/wall/r_wall, @@ -40423,6 +40414,18 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, /area/horizon/zat) +"sHi" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Xenobiologist" + }, +/turf/simulated/floor/wood, +/area/rnd/conference) "sHm" = ( /obj/machinery/photocopier/faxmachine{ department = "Head of Security's Office" @@ -41972,7 +41975,6 @@ }, /obj/merge_conflict_marker{ name = "---Merge Conflict Marker---"; - desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, /obj/structure/disposalpipe/segment{ @@ -47514,6 +47516,12 @@ /obj/effect/floor_decal/corner/mauve{ dir = 10 }, +/obj/structure/bed/stool/chair/office/light{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Scientist" + }, /turf/simulated/floor/tiled/white, /area/rnd/conference) "vWt" = ( @@ -50671,7 +50679,6 @@ }, /obj/merge_conflict_marker{ name = "---Merge Conflict Marker---"; - desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." }, /obj/effect/floor_decal/corner/mauve/full{ @@ -52467,12 +52474,12 @@ /obj/structure/bed/stool/chair/office/light{ dir = 8 }, -/obj/effect/landmark/start{ - name = "Xenobiologist" - }, /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, +/obj/effect/landmark/start{ + name = "Research Understudy" + }, /turf/simulated/floor/wood, /area/rnd/conference) "ydC" = ( @@ -78563,7 +78570,7 @@ dOi biU qEJ qZO -cRO +sHi cRO hkj nAj From b40cb532f6e9e651530266b71e111db5408a8431 Mon Sep 17 00:00:00 2001 From: 1Sparky1 Date: Thu, 2 May 2024 15:59:35 +0100 Subject: [PATCH 09/17] Update sccv_horizon-2_deck_2.dmm --- maps/sccv_horizon/sccv_horizon-2_deck_2.dmm | 128 +------------------- 1 file changed, 2 insertions(+), 126 deletions(-) diff --git a/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm b/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm index 247cae01917..31a300cfe68 100644 --- a/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm +++ b/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm @@ -4922,17 +4922,6 @@ /turf/simulated/floor/tiled/dark/full, /area/horizon/security/armoury) "bZP" = ( -/obj/structure/bed/stool/chair/office/light, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Lab Assistant" - }, -/obj/merge_conflict_marker{ - name = "---Merge Conflict Marker---"; - desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." - }, /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -10531,13 +10520,6 @@ dir = 1 }, /obj/effect/floor_decal/spline/fancy/wood, -/obj/effect/landmark/start{ - name = "Scientist" - }, -/obj/merge_conflict_marker{ - name = "---Merge Conflict Marker---"; - desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." - }, /obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, /turf/simulated/floor/reinforced, /area/rnd/xenobiology/hazardous) @@ -17283,17 +17265,6 @@ /turf/simulated/floor/tiled/dark/full, /area/horizon/security/armoury) "hLt" = ( -/obj/structure/bed/stool/chair/office/light, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Xenobiologist" - }, -/obj/merge_conflict_marker{ - name = "---Merge Conflict Marker---"; - desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." - }, /obj/machinery/door/airlock/glass_research{ dir = 4; name = "Hazardous Containment"; @@ -21092,17 +21063,6 @@ /turf/simulated/floor/plating, /area/engineering/engine_room) "jzf" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood, -/obj/effect/landmark/start{ - name = "Xenoarchaeologist" - }, -/obj/merge_conflict_marker{ - name = "---Merge Conflict Marker---"; - desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." - }, /obj/structure/table/standard, /obj/item/gun/projectile/shotgun/foldable/cameragun, /obj/effect/floor_decal/corner/mauve{ @@ -28671,16 +28631,6 @@ c_tag = "Research - Meeting Room"; dir = 4 }, -/obj/effect/landmark/start{ - name = "Scientist" - }, -/obj/structure/bed/stool/chair/office/light{ - dir = 4 - }, -/obj/merge_conflict_marker{ - name = "---Merge Conflict Marker---"; - desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." - }, /obj/effect/floor_decal/corner/mauve{ dir = 10 }, @@ -29614,17 +29564,6 @@ /turf/simulated/floor/tiled/dark/full, /area/engineering/engine_room/rust) "nyi" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/obj/structure/bed/stool/chair/office/light, -/obj/effect/landmark/start{ - name = "Research Understudy" - }, -/obj/merge_conflict_marker{ - name = "---Merge Conflict Marker---"; - desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." - }, /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -31068,19 +31007,6 @@ /turf/simulated/floor/tiled/full, /area/horizon/hallway/deck_two/fore) "oka" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/obj/structure/bed/stool/chair/office/light{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Scientist" - }, -/obj/merge_conflict_marker{ - name = "---Merge Conflict Marker---"; - desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." - }, /obj/machinery/door/airlock/glass_research{ dir = 1; name = "Containment"; @@ -36273,20 +36199,6 @@ }, /turf/simulated/floor/tiled/full, /area/hallway/primary/central_one) -"qGu" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood, -/obj/effect/landmark/start{ - name = "Lab Assistant" - }, -/obj/merge_conflict_marker{ - name = "---Merge Conflict Marker---"; - desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." - }, -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology/hazardous) "qGH" = ( /obj/structure/table/standard, /obj/item/paper_bin{ @@ -40358,20 +40270,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/hallway/primary/central_one) -"sFV" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood, -/obj/effect/landmark/start{ - name = "Xenoarchaeologist" - }, -/obj/merge_conflict_marker{ - name = "---Merge Conflict Marker---"; - desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." - }, -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology/hazardous) "sGi" = ( /obj/machinery/atmospherics/valve{ dir = 8 @@ -41966,17 +41864,6 @@ }, /area/horizon/kitchen/freezer) "twd" = ( -/obj/structure/bed/stool/chair/office/light, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Research Understudy" - }, -/obj/merge_conflict_marker{ - name = "---Merge Conflict Marker---"; - desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." - }, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -50670,17 +50557,6 @@ /turf/simulated/floor/tiled, /area/maintenance/wing/starboard) "xoZ" = ( -/obj/structure/bed/stool/chair/office/light, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Xenobotanist" - }, -/obj/merge_conflict_marker{ - name = "---Merge Conflict Marker---"; - desc = "A best-effort merge was performed. You must resolve this conflict yourself (manually) and remove this object once complete." - }, /obj/effect/floor_decal/corner/mauve/full{ dir = 8 }, @@ -81419,7 +81295,7 @@ keT qZw bZP apn -qGu +kPs uOO uOO kPs @@ -81621,7 +81497,7 @@ nFP kPs hLt kPs -sFV +kPs kPs kPs kPs From 31dcc63fa912bdcadb46d10c0abf5482ff19de56 Mon Sep 17 00:00:00 2001 From: 1Sparky1 Date: Thu, 2 May 2024 16:00:28 +0100 Subject: [PATCH 10/17] Update sccv_horizon-2_deck_2.dmm --- maps/sccv_horizon/sccv_horizon-2_deck_2.dmm | 4 ---- 1 file changed, 4 deletions(-) diff --git a/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm b/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm index 31a300cfe68..d02c99f65d3 100644 --- a/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm +++ b/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm @@ -28627,10 +28627,6 @@ dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/camera/network/research{ - c_tag = "Research - Meeting Room"; - dir = 4 - }, /obj/effect/floor_decal/corner/mauve{ dir = 10 }, From 21d334605926392fdedbe599d93b6e6383e6eca3 Mon Sep 17 00:00:00 2001 From: 1Sparky1 Date: Thu, 2 May 2024 16:01:34 +0100 Subject: [PATCH 11/17] Update sccv_horizon-2_deck_2.dmm --- maps/sccv_horizon/sccv_horizon-2_deck_2.dmm | 3 --- 1 file changed, 3 deletions(-) diff --git a/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm b/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm index d02c99f65d3..00a31afcee9 100644 --- a/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm +++ b/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm @@ -28623,9 +28623,6 @@ /turf/simulated/floor/tiled/full, /area/hallway/primary/central_two) "mZX" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/corner/mauve{ dir = 10 From 1c001a9977813c0bde53340347cdf825e69a5e04 Mon Sep 17 00:00:00 2001 From: 1Sparky1 Date: Thu, 2 May 2024 16:02:14 +0100 Subject: [PATCH 12/17] Update sccv_horizon-2_deck_2.dmm --- maps/sccv_horizon/sccv_horizon-2_deck_2.dmm | 1 - 1 file changed, 1 deletion(-) diff --git a/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm b/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm index 00a31afcee9..9153be0c808 100644 --- a/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm +++ b/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm @@ -28623,7 +28623,6 @@ /turf/simulated/floor/tiled/full, /area/hallway/primary/central_two) "mZX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/corner/mauve{ dir = 10 }, From e54bd1ba092b0cfd178e55be081171f102242e47 Mon Sep 17 00:00:00 2001 From: 1Sparky1 Date: Mon, 6 May 2024 10:37:50 +0100 Subject: [PATCH 13/17] Update sccv_horizon-2_deck_2.dmm --- maps/sccv_horizon/sccv_horizon-2_deck_2.dmm | 50 +++++---------------- 1 file changed, 12 insertions(+), 38 deletions(-) diff --git a/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm b/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm index 9153be0c808..697b2084117 100644 --- a/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm +++ b/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm @@ -4723,6 +4723,9 @@ /obj/structure/bed/stool/chair/office/light{ dir = 8 }, +/obj/effect/landmark/start{ + name = "Xenoarchaeologist" + }, /obj/effect/floor_decal/spline/fancy/wood{ dir = 6 }, @@ -4732,9 +4735,6 @@ /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/effect/landmark/start{ - name = "Scientist" - }, /turf/simulated/floor/wood, /area/rnd/conference) "bXR" = ( @@ -6546,12 +6546,12 @@ /obj/structure/bed/stool/chair/office/light{ dir = 4 }, +/obj/effect/landmark/start{ + name = "Scientist" + }, /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 }, -/obj/effect/landmark/start{ - name = "Xenoarchaeologist" - }, /turf/simulated/floor/wood, /area/rnd/conference) "cRP" = ( @@ -10515,14 +10515,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"eJY" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood, -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/hazardous) "eKj" = ( /obj/machinery/door/airlock/external, /obj/effect/map_effect/marker/airlock{ @@ -36980,7 +36972,7 @@ dir = 4 }, /obj/effect/landmark/start{ - name = "Research Understudy" + name = "Lab Assistant" }, /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 @@ -40304,18 +40296,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, /area/horizon/zat) -"sHi" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Xenobiologist" - }, -/turf/simulated/floor/wood, -/area/rnd/conference) "sHm" = ( /obj/machinery/photocopier/faxmachine{ department = "Head of Security's Office" @@ -47395,12 +47375,6 @@ /obj/effect/floor_decal/corner/mauve{ dir = 10 }, -/obj/structure/bed/stool/chair/office/light{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Scientist" - }, /turf/simulated/floor/tiled/white, /area/rnd/conference) "vWt" = ( @@ -52342,12 +52316,12 @@ /obj/structure/bed/stool/chair/office/light{ dir = 8 }, +/obj/effect/landmark/start{ + name = "Xenobiologist" + }, /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, -/obj/effect/landmark/start{ - name = "Research Understudy" - }, /turf/simulated/floor/wood, /area/rnd/conference) "ydC" = ( @@ -78438,7 +78412,7 @@ dOi biU qEJ qZO -sHi +cRO cRO hkj nAj @@ -81085,7 +81059,7 @@ keT oYV twd eTr -eJY +uuR uOO uOO kPs From db4a10cdbc6ba437d95770a61dc2d63ffaf8a631 Mon Sep 17 00:00:00 2001 From: 1Sparky1 Date: Mon, 6 May 2024 10:40:00 +0100 Subject: [PATCH 14/17] Fix map changes There were a lot for some reason --- maps/sccv_horizon/sccv_horizon-2_deck_2.dmm | 40 +++++++++++++++------ 1 file changed, 29 insertions(+), 11 deletions(-) diff --git a/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm b/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm index 697b2084117..f598e27d4b7 100644 --- a/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm +++ b/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm @@ -522,6 +522,18 @@ /obj/effect/shuttle_landmark/horizon/exterior/deck_2/port_fore, /turf/template_noop, /area/template_noop) +"anK" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Xenobiologist" + }, +/turf/simulated/floor/wood, +/area/rnd/conference) "aob" = ( /obj/structure/railing/mapped{ dir = 4 @@ -4723,9 +4735,6 @@ /obj/structure/bed/stool/chair/office/light{ dir = 8 }, -/obj/effect/landmark/start{ - name = "Xenoarchaeologist" - }, /obj/effect/floor_decal/spline/fancy/wood{ dir = 6 }, @@ -4735,6 +4744,9 @@ /obj/structure/cable/green{ icon_state = "4-8" }, +/obj/effect/landmark/start{ + name = "Scientist" + }, /turf/simulated/floor/wood, /area/rnd/conference) "bXR" = ( @@ -6546,12 +6558,12 @@ /obj/structure/bed/stool/chair/office/light{ dir = 4 }, -/obj/effect/landmark/start{ - name = "Scientist" - }, /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 }, +/obj/effect/landmark/start{ + name = "Xenoarchaeologist" + }, /turf/simulated/floor/wood, /area/rnd/conference) "cRP" = ( @@ -36972,7 +36984,7 @@ dir = 4 }, /obj/effect/landmark/start{ - name = "Lab Assistant" + name = "Research Understudy" }, /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 @@ -47375,6 +47387,12 @@ /obj/effect/floor_decal/corner/mauve{ dir = 10 }, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/obj/structure/bed/stool/chair/office/light{ + dir = 1 + }, /turf/simulated/floor/tiled/white, /area/rnd/conference) "vWt" = ( @@ -52316,12 +52334,12 @@ /obj/structure/bed/stool/chair/office/light{ dir = 8 }, -/obj/effect/landmark/start{ - name = "Xenobiologist" - }, /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, +/obj/effect/landmark/start{ + name = "Research Understudy" + }, /turf/simulated/floor/wood, /area/rnd/conference) "ydC" = ( @@ -78412,7 +78430,7 @@ dOi biU qEJ qZO -cRO +anK cRO hkj nAj From 15241149af37af6cd92a696fe1a49d183284e025 Mon Sep 17 00:00:00 2001 From: 1Sparky1 Date: Mon, 6 May 2024 10:41:17 +0100 Subject: [PATCH 15/17] Revert "Fix map changes" This reverts commit db4a10cdbc6ba437d95770a61dc2d63ffaf8a631. --- maps/sccv_horizon/sccv_horizon-2_deck_2.dmm | 40 ++++++--------------- 1 file changed, 11 insertions(+), 29 deletions(-) diff --git a/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm b/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm index f598e27d4b7..697b2084117 100644 --- a/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm +++ b/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm @@ -522,18 +522,6 @@ /obj/effect/shuttle_landmark/horizon/exterior/deck_2/port_fore, /turf/template_noop, /area/template_noop) -"anK" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Xenobiologist" - }, -/turf/simulated/floor/wood, -/area/rnd/conference) "aob" = ( /obj/structure/railing/mapped{ dir = 4 @@ -4735,6 +4723,9 @@ /obj/structure/bed/stool/chair/office/light{ dir = 8 }, +/obj/effect/landmark/start{ + name = "Xenoarchaeologist" + }, /obj/effect/floor_decal/spline/fancy/wood{ dir = 6 }, @@ -4744,9 +4735,6 @@ /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/effect/landmark/start{ - name = "Scientist" - }, /turf/simulated/floor/wood, /area/rnd/conference) "bXR" = ( @@ -6558,12 +6546,12 @@ /obj/structure/bed/stool/chair/office/light{ dir = 4 }, +/obj/effect/landmark/start{ + name = "Scientist" + }, /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 }, -/obj/effect/landmark/start{ - name = "Xenoarchaeologist" - }, /turf/simulated/floor/wood, /area/rnd/conference) "cRP" = ( @@ -36984,7 +36972,7 @@ dir = 4 }, /obj/effect/landmark/start{ - name = "Research Understudy" + name = "Lab Assistant" }, /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 @@ -47387,12 +47375,6 @@ /obj/effect/floor_decal/corner/mauve{ dir = 10 }, -/obj/effect/landmark/start{ - name = "Scientist" - }, -/obj/structure/bed/stool/chair/office/light{ - dir = 1 - }, /turf/simulated/floor/tiled/white, /area/rnd/conference) "vWt" = ( @@ -52334,12 +52316,12 @@ /obj/structure/bed/stool/chair/office/light{ dir = 8 }, +/obj/effect/landmark/start{ + name = "Xenobiologist" + }, /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, -/obj/effect/landmark/start{ - name = "Research Understudy" - }, /turf/simulated/floor/wood, /area/rnd/conference) "ydC" = ( @@ -78430,7 +78412,7 @@ dOi biU qEJ qZO -anK +cRO cRO hkj nAj From b5df0a80210a3f2bc9077807708a6f155199ee7b Mon Sep 17 00:00:00 2001 From: Sparky Date: Mon, 6 May 2024 10:43:10 +0100 Subject: [PATCH 16/17] Update sccv_horizon-2_deck_2.dmm If this doesn't reset it... I don't know what will --- maps/sccv_horizon/sccv_horizon-2_deck_2.dmm | 19146 +++++++++--------- 1 file changed, 9573 insertions(+), 9573 deletions(-) diff --git a/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm b/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm index 697b2084117..e216e2e79d8 100644 --- a/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm +++ b/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm @@ -148,6 +148,29 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) +"abV" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"abZ" = ( +/obj/machinery/door/airlock/glass_research{ + dir = 4; + name = "Hazardous Containment"; + req_access = list(47); + id_tag = "hazardous_access"; + locked = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/hazardous) "acw" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -160,6 +183,12 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/full, /area/engineering/locker_room) +"acy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/hazardous) "acz" = ( /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /obj/machinery/door/blast/regular{ @@ -172,6 +201,20 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/lobby) +"acA" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/button/remote/airlock{ + id = "xeno_bot_hazard"; + name = "Xenobotany Hazardous Specimens"; + pixel_y = 30; + req_access = list(52); + specialfunctions = 4; + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "acH" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 8 @@ -250,32 +293,6 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/horizon/kitchen) -"afP" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) -"afR" = ( -/obj/structure/table/standard, -/turf/simulated/floor/carpet/rubber, -/area/rnd/lab) "agG" = ( /obj/structure/shuttle_part/scc_space_ship{ icon_state = "d2-1-f" @@ -297,6 +314,20 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/bar/backroom) +"ahm" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenological) "ahu" = ( /obj/structure/cable{ icon_state = "1-2" @@ -309,6 +340,22 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/substation/research) +"ahG" = ( +/obj/structure/closet, +/obj/random/loot, +/obj/random/loot, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/maintenance/wing/port) +"ahR" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) "aib" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/item/bedsheet/mime, @@ -329,19 +376,16 @@ }, /turf/simulated/floor/tiled/white, /area/medical/ors) -"aim" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/machinery/shower{ - dir = 8; - pixel_x = 1; - pixel_y = 1 +"ais" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Xenobotany Maintenance"; + req_access = list(52) }, -/obj/machinery/shower{ - dir = 8; - pixel_x = 1; - pixel_y = 1 +/obj/machinery/door/firedoor{ + dir = 4 }, -/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora) "aiP" = ( @@ -362,13 +406,15 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/secure_ammunition_storage) -"ajx" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +"ajl" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/telesci) "ajI" = ( /obj/structure/cable{ icon_state = "1-2" @@ -433,16 +479,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/stairwell/central) -"alp" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) "amd" = ( /obj/structure/platform{ dir = 4 @@ -522,6 +558,21 @@ /obj/effect/shuttle_landmark/horizon/exterior/deck_2/port_fore, /turf/template_noop, /area/template_noop) +"anJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/sign/flag/scc{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) "aob" = ( /obj/structure/railing/mapped{ dir = 4 @@ -529,6 +580,25 @@ /obj/structure/lattice, /turf/simulated/open, /area/maintenance/wing/starboard) +"aov" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) "aoC" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -554,23 +624,6 @@ "aoD" = ( /turf/simulated/wall, /area/rnd/xenobiology) -"aoH" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/maintenance/research_port) "apd" = ( /obj/structure/cable{ icon_state = "11-2" @@ -597,51 +650,6 @@ }, /turf/simulated/floor/carpet/rubber, /area/engineering/engine_monitoring/rust) -"apl" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/floor_decal/corner/pink/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) -"apn" = ( -/obj/machinery/shieldwallgen, -/obj/effect/floor_decal/corner/mauve/full{ - dir = 4 - }, -/obj/structure/cable/green, -/obj/machinery/alarm/south, -/obj/machinery/button/remote/airlock{ - id = "hazardous_access"; - name = "Hazardous Containment"; - req_access = list(55); - specialfunctions = 4; - dir = 4; - pixel_x = 23 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/hazardous) -"apu" = ( -/obj/structure/foamedmetal, -/turf/simulated/floor/plating, -/area/rnd/xenobiology) -"apJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"apO" = ( -/obj/structure/table/standard, -/obj/machinery/alarm/north, -/obj/item/device/multitool, -/turf/simulated/floor/reinforced, -/area/horizon/zat) "aqk" = ( /obj/effect/floor_decal/corner_wide/yellow{ dir = 5 @@ -821,6 +829,15 @@ }, /turf/simulated/floor/tiled/dark, /area/engineering/engine_waste) +"ath" = ( +/obj/structure/morgue{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology) "ati" = ( /obj/machinery/portable_atmospherics/canister/air/airlock, /obj/machinery/atmospherics/portables_connector{ @@ -829,6 +846,17 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, /area/engineering/engine_room) +"atj" = ( +/obj/effect/floor_decal/industrial/outline/engineering, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/cable, +/obj/machinery/power/smes/buildable/superconducting{ + RCon_tag = "Leviathan" + }, +/turf/simulated/floor/plating, +/area/horizon/zat) "atu" = ( /obj/effect/floor_decal/corner_wide/yellow{ dir = 9 @@ -860,6 +888,10 @@ }, /turf/simulated/open, /area/maintenance/wing/starboard) +"atQ" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "auc" = ( /obj/machinery/atmospherics/pipe/simple/visible/green, /turf/simulated/floor/plating, @@ -928,18 +960,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/engineering/engine_monitoring/rust) -"avc" = ( -/obj/machinery/shower{ - dir = 4; - pixel_x = -1; - pixel_y = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light/floor{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) "ave" = ( /obj/machinery/biogenerator/small/north, /turf/simulated/floor/tiled/dark, @@ -1022,22 +1042,12 @@ /obj/effect/floor_decal/corner/green/diagonal, /turf/simulated/floor/tiled/white, /area/horizon/security/brig) -"awh" = ( -/turf/simulated/floor/plating, -/area/maintenance/research_port) "aww" = ( /obj/effect/floor_decal/industrial/warning{ dir = 9 }, /turf/simulated/floor/tiled/dark/full, /area/turbolift/scc_ship/robotics_lift) -"awC" = ( -/obj/structure/table/reinforced/glass, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/rnd/conference) "axa" = ( /obj/effect/floor_decal/industrial/outline/engineering, /obj/structure/closet/wardrobe/atmospherics_yellow, @@ -1046,12 +1056,34 @@ }, /turf/simulated/floor/tiled/dark/full, /area/engineering/atmos/storage) -"axn" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ +"axc" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry) +"axl" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/mauve/full{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/bluegrid/server, -/area/server) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/hazardous) "axB" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -1109,13 +1141,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/storage/secure) -"axY" = ( -/obj/structure/window/reinforced, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) "aya" = ( /obj/effect/floor_decal/corner_wide/paleblue{ dir = 5 @@ -1135,27 +1160,6 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/horizon/hallway/deck_two/fore) -"ayi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/light/small/emergency, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"aym" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/structure/window/reinforced, -/obj/machinery/door/window/eastright, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/horizon/zat) "ayo" = ( /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/ppflowers, @@ -1201,6 +1205,14 @@ /obj/structure/table/rack/retail_shelf, /turf/simulated/floor/tiled, /area/horizon/commissary) +"ayS" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "ayT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -1227,6 +1239,20 @@ }, /turf/simulated/floor/tiled/dark/full, /area/engineering/atmos/storage) +"azx" = ( +/obj/structure/railing/mapped, +/obj/effect/floor_decal/corner/pink/diagonal, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) "azB" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 10 @@ -1238,17 +1264,37 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aAb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"azO" = ( +/obj/structure/table/wood, +/obj/machinery/chemical_dispenser/coffeemaster/full{ + dir = 0; + pixel_y = 12 }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 4 +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/rainbow{ + pixel_x = 11; + pixel_y = -2 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/plating, -/area/maintenance/research_port) +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/sol{ + pixel_x = 6; + pixel_y = -2 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/black{ + pixel_x = 1; + pixel_y = -2 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/zeng{ + pixel_x = -4; + pixel_y = -2 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/nt{ + pixel_x = -9; + pixel_y = -2 + }, +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hor) "aAd" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow, /turf/simulated/floor/plating, @@ -1284,14 +1330,16 @@ "aAx" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/rnd/xenobiology/xenoflora) -"aBg" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/industrial/outline/red, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/research_port) +"aAR" = ( +/obj/machinery/atmospherics/pipe/manifold/visible, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) "aBn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -1316,15 +1364,6 @@ }, /turf/simulated/floor/tiled, /area/maintenance/aux_atmospherics/deck_2/starboard/wing) -"aBA" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) "aBY" = ( /obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/reinforced/airless, @@ -1339,15 +1378,6 @@ }, /turf/simulated/floor/tiled, /area/operations/lobby) -"aCs" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) "aCL" = ( /obj/machinery/power/smes/buildable{ RCon_tag = "INDRA - Containment"; @@ -1365,6 +1395,12 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room/rust) +"aCP" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/rnd/xenobiology/dissection) "aCS" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/mass_driver{ @@ -1486,6 +1522,19 @@ }, /turf/simulated/floor/wood, /area/horizon/library) +"aGx" = ( +/obj/structure/table/standard, +/obj/item/storage/bag/circuits/basic, +/obj/item/device/integrated_electronics/debugger, +/obj/item/device/integrated_electronics/wirer, +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/telesci) "aGz" = ( /obj/effect/floor_decal/corner/brown/diagonal, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -1518,13 +1567,6 @@ }, /turf/simulated/floor/tiled, /area/medical/gen_treatment) -"aHm" = ( -/obj/effect/floor_decal/corner/mauve/full, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) "aHN" = ( /obj/effect/floor_decal/corner/yellow{ dir = 6 @@ -1589,32 +1631,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"aIJ" = ( -/obj/effect/map_effect/door_helper/unres{ - dir = 4 - }, -/obj/machinery/door/airlock/glass_research{ - dir = 4; - id_tag = "xeno_entrance_int_a"; - name = "Xenobiology"; - req_access = list(55); - locked = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) "aIP" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 @@ -1635,50 +1651,10 @@ }, /turf/simulated/floor/wood, /area/chapel/main) -"aJG" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) -"aJH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port) "aJS" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/dark, /area/maintenance/wing/starboard/far) -"aJV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/sign/flag/scc{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) "aKr" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -1745,14 +1721,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/armoury) -"aLJ" = ( -/obj/structure/platform, -/obj/structure/table/standard, -/obj/machinery/photocopier/faxmachine{ - department = "Research Director's Office" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hor) "aMa" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -1805,6 +1773,13 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) +"aMY" = ( +/obj/effect/floor_decal/industrial/hatch/red, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/zat) "aNp" = ( /obj/effect/floor_decal/corner/dark_green/full, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1815,16 +1790,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aNq" = ( -/obj/structure/table/reinforced/glass, -/turf/simulated/floor/carpet/rubber, -/area/rnd/lab) -"aNr" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) "aNB" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 10 @@ -1886,16 +1851,13 @@ /obj/item/device/radio/intercom/west, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"aOI" = ( +"aOS" = ( /obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 + dir = 9 }, -/obj/machinery/disposal/small/north, +/obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/white, -/area/rnd/chemistry) +/area/rnd/xenobiology) "aPe" = ( /obj/machinery/air_sensor{ id_tag = "supermatter_sensor"; @@ -1905,68 +1867,9 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/reinforced/reactor, /area/engineering/engine_room) -"aPu" = ( -/obj/machinery/door/blast/regular/open{ - dir = 2; - fail_secure = 1; - id = "xenobio_d"; - name = "Cell Containment Blast Door" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/disposal/deliveryChute{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/door/window/westleft, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology) -"aPv" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenological) -"aPy" = ( -/obj/machinery/atmospherics/unary/freezer{ - dir = 4; - icon_state = "freezer" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"aPO" = ( -/obj/effect/floor_decal/corner/white{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/disposal/small/south, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) +"aPN" = ( +/turf/simulated/wall/r_wall, +/area/horizon/zat) "aQb" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -2034,13 +1937,6 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/security/brig) -"aRc" = ( -/obj/machinery/chemical_dispenser/full{ - req_access = list(7) - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/chemistry) "aRr" = ( /obj/structure/cable{ icon_state = "4-8" @@ -2131,6 +2027,21 @@ }, /turf/simulated/floor/carpet/rubber, /area/hallway/primary/central_one) +"aSV" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_research{ + dir = 4; + name = "Conference Room"; + req_access = list(47) + }, +/obj/effect/map_effect/door_helper/unres{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/conference) "aTa" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 10 @@ -2138,6 +2049,13 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/operations/lobby) +"aTd" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/obj/machinery/door/blast/shutters/open{ + id = "RnDShutters" + }, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/hallway) "aTm" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/structure/cable/green{ @@ -2152,6 +2070,13 @@ }, /turf/simulated/floor/tiled, /area/medical/first_responder) +"aTp" = ( +/obj/machinery/light/floor{ + dir = 1 + }, +/obj/structure/platform/ledge, +/turf/simulated/floor/carpet/rubber, +/area/rnd/telesci) "aTt" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/machinery/light, @@ -2214,26 +2139,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/hydroponics) -"aUd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/machinery/button/remote/blast_door{ - id = "cannon_external"; - name = "External Blast Doors"; - pixel_x = 7; - pixel_y = -18; - req_one_access = list(19,11,24) - }, -/obj/machinery/light/small, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) "aUh" = ( /obj/machinery/chemical_dispenser/full{ dir = 1 @@ -2273,12 +2178,6 @@ }, /turf/simulated/floor/tiled, /area/operations/lower/machinist) -"aUC" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) "aUG" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -2290,10 +2189,6 @@ }, /turf/simulated/floor/tiled/white, /area/hallway/medical) -"aUQ" = ( -/obj/structure/bed/stool/chair/office/light, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) "aVf" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -2328,6 +2223,12 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/full, /area/horizon/security/brig) +"aWg" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) "aWi" = ( /obj/structure/railing/mapped, /obj/structure/cable{ @@ -2344,6 +2245,13 @@ /obj/structure/closet/secure_closet/engineering_welding, /turf/simulated/floor/tiled, /area/engineering/storage_eva) +"aWs" = ( +/obj/structure/bed/stool/chair/padded/purple, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hor) "aWy" = ( /obj/machinery/door/blast/shutters{ id = "shutters_deck2_workshopdesk"; @@ -2356,6 +2264,25 @@ }, /turf/simulated/floor/tiled, /area/operations/lower/machinist) +"aWA" = ( +/obj/structure/table/reinforced/glass, +/obj/item/paper_bin, +/obj/item/pen{ + pixel_x = -4 + }, +/obj/item/pen/red{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/pen/blue{ + pixel_x = 3; + pixel_y = 7 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/rnd/conference) "aWK" = ( /obj/structure/lattice/catwalk/indoor/grate/damaged, /turf/simulated/floor/plating, @@ -2443,20 +2370,6 @@ /obj/item/device/radio/intercom/east, /turf/simulated/floor/wood, /area/horizon/library) -"aZd" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) "aZo" = ( /obj/machinery/door/airlock/external{ dir = 1; @@ -2485,11 +2398,6 @@ }, /turf/simulated/floor/tiled, /area/operations/office) -"aZF" = ( -/obj/machinery/telepad, -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/reinforced, -/area/rnd/telesci) "aZK" = ( /obj/effect/floor_decal/corner_wide/blue{ dir = 10 @@ -2565,15 +2473,6 @@ /obj/machinery/alarm/east, /turf/simulated/floor/tiled, /area/hallway/primary/central_two) -"bbe" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) "bbl" = ( /obj/machinery/door/airlock/external, /obj/effect/map_effect/marker/airlock{ @@ -2685,19 +2584,6 @@ }, /turf/simulated/floor/tiled, /area/medical/first_responder) -"bdO" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/reagent_dispensers/watertank, -/obj/item/reagent_containers/glass/bucket, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) "beJ" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/floor_decal/industrial/warning{ @@ -2715,6 +2601,10 @@ /obj/structure/grille, /turf/simulated/open/airless, /area/horizon/exterior) +"bff" = ( +/obj/machinery/r_n_d/server/advanced/core, +/turf/simulated/floor/bluegrid/server, +/area/server) "bfB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -2732,30 +2622,38 @@ }, /turf/simulated/floor/lino, /area/horizon/bar) -"bgf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 +"bfF" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 +/obj/effect/landmark/start{ + name = "Scientist" }, -/obj/structure/cable/green{ - icon_state = "1-4" +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/turf/simulated/floor/wood, +/area/rnd/conference) +"bgj" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ + id = "rdoffice" }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/maintenance/wing/port) -"bgn" = ( -/obj/machinery/recharger{ - pixel_y = 6 +/turf/simulated/floor/tiled/dark/full, +/area/crew_quarters/heads/hor) +"bgN" = ( +/obj/machinery/door/airlock/command{ + dir = 1; + id_tag = "researchdoor"; + name = "Research Director's Office"; + req_access = list(30) }, -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenological) +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark/full, +/area/crew_quarters/heads/hor) "bgO" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 8 @@ -2817,6 +2715,19 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) +"bin" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway/secondary) "biE" = ( /obj/machinery/camera/network/engineering{ c_tag = "Engineering - Hallway 2"; @@ -2837,25 +2748,24 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/blue, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"biU" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/machinery/light/floor{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/conference) "biZ" = ( /obj/structure/bed/stool/chair/sofa/right/red{ dir = 4 }, /turf/simulated/floor/carpet/red, /area/horizon/library) -"bjQ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/carpet/rubber, -/area/rnd/lab) +"bjM" = ( +/obj/machinery/atmospherics/valve{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) "bkb" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 8 @@ -2897,6 +2807,29 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/maintenance/aft) +"bkQ" = ( +/obj/structure/bed/stool/chair/office/bridge/generic, +/obj/effect/landmark/start{ + name = "Research Director" + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/north, +/turf/simulated/floor/tiled/white, +/area/rnd/conference) +"blG" = ( +/obj/structure/bookcase, +/obj/item/book/manual/wiki/station_procedure, +/obj/item/book/manual/wiki/security_space_law, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenological) "blJ" = ( /obj/machinery/door/airlock/external{ dir = 1; @@ -2917,21 +2850,37 @@ }, /turf/simulated/floor/plating, /area/security/checkpoint2) -"blR" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/chem_master{ +"bmk" = ( +/obj/structure/platform{ dir = 8 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/chemistry) -"bmj" = ( -/obj/effect/floor_decal/corner/mauve/full{ +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hor) +"bmq" = ( +/obj/machinery/door/airlock/glass_research{ + name = "Research and Development"; + req_access = list(7); dir = 1 }, -/obj/random/pottedplant, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/map_effect/door_helper/unres{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/blast/shutters/open{ + id = "RnDShutters" + }, /turf/simulated/floor/tiled, -/area/rnd/hallway) +/area/rnd/lab) "bmH" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/sign/emergency/exit/ladder, @@ -2967,13 +2916,6 @@ }, /turf/simulated/floor/wood, /area/medical/psych) -"bmX" = ( -/obj/machinery/portable_atmospherics/hydroponics/soil, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/exoplanet/grass, -/area/rnd/xenobiology/xenoflora) "bmY" = ( /obj/structure/table/rack, /obj/item/reagent_containers/spray/pepper{ @@ -3062,6 +3004,33 @@ /obj/item/ammo_display, /turf/simulated/floor/tiled, /area/horizon/security/warden) +"bno" = ( +/obj/machinery/door/airlock/glass_research{ + name = "Xenological Studies"; + req_access = list(7); + dir = 4 + }, +/obj/effect/map_effect/door_helper/unres{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/xenobiology/xenological) "bnN" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -3126,6 +3095,9 @@ /obj/structure/platform/cutout, /turf/simulated/floor/tiled, /area/hallway/engineering) +"bpa" = ( +/turf/simulated/floor/plating, +/area/maintenance/research_port) "bpe" = ( /obj/effect/floor_decal/corner_wide/yellow{ dir = 5 @@ -3142,6 +3114,18 @@ }, /turf/simulated/floor/tiled, /area/hallway/engineering) +"bpk" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "bpC" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3183,35 +3167,23 @@ /obj/structure/closet, /turf/simulated/floor/tiled, /area/maintenance/aux_atmospherics/deck_2/starboard/wing) -"bqH" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/mauve/full{ - dir = 8 - }, -/obj/item/tape_roll{ - pixel_y = 10 +"bqb" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/item/device/paicard, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bqK" = ( -/obj/structure/closet/toolcloset, -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) -"bqV" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 1 +/turf/simulated/floor/carpet/purple, +/area/crew_quarters/heads/hor) +"bqe" = ( +/obj/machinery/light{ + dir = 4 }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/plating, -/area/maintenance/research_port) +/turf/simulated/floor/bluegrid/server, +/area/server) "bqW" = ( /obj/effect/floor_decal/corner_wide/yellow/full{ dir = 8 @@ -3381,6 +3353,18 @@ }, /turf/simulated/floor/wood, /area/chapel/main) +"buQ" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/door/window/eastright, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/zat) "bvf" = ( /obj/structure/cable{ icon_state = "1-2" @@ -3393,9 +3377,31 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/engineering/lobby) -"bvv" = ( -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) +"bwo" = ( +/obj/machinery/door/blast/regular/open{ + dir = 2; + fail_secure = 1; + id = "xenobio_c"; + name = "Cell Containment Blast Door" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/disposal/deliveryChute{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/door/window/westleft, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/xenobiology) "bwC" = ( /obj/structure/cable{ icon_state = "1-2" @@ -3420,13 +3426,18 @@ /obj/structure/railing/mapped, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) -"bxi" = ( -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) "bxp" = ( /obj/structure/lattice/catwalk, /turf/simulated/open/airless, /area/horizon/exterior) +"bxM" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 8 + }, +/obj/machinery/disposal/small/east, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenological) "bxO" = ( /obj/effect/floor_decal/industrial/warning{ dir = 9 @@ -3436,12 +3447,6 @@ "bxW" = ( /turf/simulated/floor/tiled/full, /area/engineering/rust_office) -"bye" = ( -/obj/machinery/chem_master, -/obj/machinery/light, -/obj/effect/floor_decal/corner/mauve/full, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) "byh" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 5 @@ -3472,16 +3477,13 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/hydroponics) -"byt" = ( -/obj/structure/bed/stool/chair/sofa/right/purple{ +"byv" = ( +/obj/effect/floor_decal/corner/mauve/full{ dir = 1 }, -/obj/machinery/camera/network/research{ - c_tag = "Research - Research Director's Office Foyer"; - dir = 8 - }, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/heads/hor) +/obj/random/pottedplant, +/turf/simulated/floor/tiled, +/area/rnd/hallway) "byx" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -3556,13 +3558,9 @@ }, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) -"bzg" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Xenobiology Maintenance"; - req_access = list(55) - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) +"bzh" = ( +/turf/simulated/wall, +/area/maintenance/research_port) "bzn" = ( /obj/effect/floor_decal/corner/grey/full{ dir = 8 @@ -3610,6 +3608,26 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) +"bAo" = ( +/obj/machinery/door/airlock/glass_research{ + dir = 4; + id_tag = "xeno_dissection"; + name = "Dissection"; + req_access = list(55); + locked = 1 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/blast/regular/open{ + dir = 2; + fail_secure = 1; + id = "hazardous_lockdown"; + name = "Hazardous Containment Lockdown" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/dissection) "bAF" = ( /obj/effect/floor_decal/industrial/warning{ dir = 10 @@ -3629,6 +3647,16 @@ }, /turf/simulated/floor/wood, /area/horizon/library) +"bAZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/maintenance/wing/port) "bBh" = ( /obj/effect/floor_decal/corner/brown/full{ dir = 8 @@ -3644,6 +3672,22 @@ /obj/structure/trash_pile, /turf/simulated/floor/plating, /area/maintenance/wing/port) +"bBz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenological) "bBO" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/engineering/aft_airlock) @@ -3797,24 +3841,44 @@ "bDo" = ( /turf/simulated/wall/r_wall, /area/horizon/security/brig) -"bDy" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 +"bDv" = ( +/obj/machinery/chemical_dispenser/coffee/full{ + pixel_y = 14 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup{ + pixel_x = 7 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/structure/table/standard, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenological) +"bDO" = ( +/turf/simulated/floor/carpet/rubber, +/area/horizon/zat) +"bDV" = ( +/obj/structure/window/reinforced{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/window/reinforced{ dir = 4 }, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/machinery/button/remote/airlock{ + dir = 8; + id = "bolts_cannon_external"; + name = "Primary Armament Exterior Bolts"; + pixel_x = 22; + pixel_y = 22; + req_one_access = list(19,43); + specialfunctions = 4 }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/zat) "bFA" = ( /obj/effect/floor_decal/spline/fancy/wood, /obj/item/device/radio/intercom/south, @@ -3824,6 +3888,24 @@ }, /turf/simulated/floor/wood, /area/horizon/library) +"bFC" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenological) "bFN" = ( /obj/machinery/power/apc/west, /obj/structure/cable/green{ @@ -3854,12 +3936,6 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/horizon/security/warden) -"bGd" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) "bGg" = ( /obj/structure/bed/stool/chair/padded/red{ dir = 1 @@ -3885,6 +3961,22 @@ /obj/machinery/meter, /turf/simulated/floor/tiled/dark, /area/maintenance/aux_atmospherics/deck_2/starboard) +"bGp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/maintenance/research_port) "bGH" = ( /turf/simulated/wall, /area/horizon/crew_quarters/washroom/central) @@ -3943,6 +4035,18 @@ /obj/structure/railing/mapped, /turf/simulated/open, /area/operations/office) +"bHL" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Xenobotany Maintenance"; + req_one_access = list(7,52) + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/maintenance/research_port) "bHW" = ( /obj/effect/floor_decal/corner/yellow/full{ dir = 4 @@ -3974,19 +4078,12 @@ }, /turf/simulated/floor/wood, /area/horizon/library) -"bIx" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 +"bIK" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 }, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/dark, /area/rnd/xenobiology/xenoflora) -"bJn" = ( -/obj/effect/floor_decal/corner/mauve/full, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenological) "bJp" = ( /obj/structure/lattice, /obj/structure/platform/ledge, @@ -4019,6 +4116,18 @@ }, /turf/simulated/floor/tiled/dark, /area/maintenance/aux_atmospherics/deck_2/starboard) +"bKe" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) "bKu" = ( /obj/structure/lattice/catwalk/indoor/grate/damaged, /obj/structure/cable{ @@ -4077,12 +4186,6 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"bLv" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) "bLB" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -4103,48 +4206,20 @@ }, /turf/simulated/floor/tiled/dark/full, /area/engineering/smes) -"bMa" = ( -/obj/structure/table/standard, -/obj/machinery/requests_console/east{ - department = "Research and Development"; - name = "RnD Requests Console" - }, -/obj/item/paper_bin, -/obj/item/pen{ - pixel_x = -4 - }, -/obj/item/pen/red{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/item/pen/blue{ - pixel_x = 3; - pixel_y = 7 - }, -/obj/effect/floor_decal/corner/mauve/full{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 +"bLT" = ( +/obj/structure/window/reinforced{ + dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bMK" = ( -/obj/effect/floor_decal/corner/mauve/full{ +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/atmospherics/portables_connector{ dir = 8 }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) -"bMY" = ( -/obj/structure/table/standard, -/obj/item/storage/box/fancy/vials, +/obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/camera/network/research{ - c_tag = "Research - Dissection"; - dir = 1 + c_tag = "Research - XenoBotanical Lab Aft" }, /turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/dissection) +/area/rnd/xenobiology/xenoflora) "bNd" = ( /obj/effect/floor_decal/industrial/warning/full, /obj/machinery/porta_turret, @@ -4158,25 +4233,6 @@ /obj/machinery/atmospherics/unary/cryo_cell, /turf/simulated/floor/tiled, /area/medical/gen_treatment) -"bNI" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"bNN" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/maintenance/wing/port) "bOe" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/effect/floor_decal/corner/dark_blue/full{ @@ -4194,18 +4250,15 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"bOn" = ( -/obj/machinery/door/airlock/glass_research{ - name = "Research and Development"; - req_access = list(7); - dir = 4 +"bOr" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/lab) +/turf/simulated/floor/tiled, +/area/rnd/hallway/secondary) "bOA" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -4301,19 +4354,6 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/operations/lobby) -"bPj" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) -"bPm" = ( -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d3-6" - }, -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology/xenoflora) "bPp" = ( /obj/structure/cable/green{ icon_state = "2-4" @@ -4506,14 +4546,6 @@ "bSK" = ( /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"bSX" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) "bTg" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/industrial/warning{ @@ -4521,6 +4553,29 @@ }, /turf/simulated/floor/tiled/dark/full, /area/engineering/smes/rust) +"bTl" = ( +/obj/machinery/light/small/red{ + dir = 4 + }, +/obj/machinery/door/window/northright, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/zat) +"bTo" = ( +/obj/structure/plasticflaps/mining, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "shutters_deck2_rescon"; + name = "Conveyor Shutter" + }, +/obj/machinery/conveyor{ + id = "rnd"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/lab) "bTy" = ( /obj/effect/floor_decal/corner/dark_blue/full{ dir = 4 @@ -4560,6 +4615,13 @@ }, /turf/simulated/floor/tiled, /area/horizon/hydroponics/garden) +"bTX" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/structure/ship_weapon_dummy, +/turf/simulated/floor/plating, +/area/horizon/zat) "bUd" = ( /obj/structure/foamedmetal, /obj/structure/shuttle_part/scc_space_ship{ @@ -4589,39 +4651,12 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/equipment) -"bUM" = ( -/obj/machinery/door/airlock/research{ - name = "Dissection Observation"; - req_access = list(7) - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology/dissection) "bUN" = ( /obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ id = "polarized_deck2_workshop" }, /turf/simulated/floor/tiled/dark/full, /area/operations/lower/machinist) -"bUW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/camera/network/research{ - dir = 1; - c_tag = "Xenobio - Cell B"; - network = list("Xeno_Bio") - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) "bVc" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -4666,12 +4701,6 @@ /obj/machinery/vending/snack, /turf/simulated/floor/tiled/dark, /area/operations/lobby) -"bVz" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/conference) "bWv" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -4703,6 +4732,12 @@ }, /turf/simulated/floor/tiled/dark/full, /area/engineering/smes/rust) +"bWT" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/dissection) "bXB" = ( /obj/structure/cable/green{ icon_state = "1-8" @@ -4719,24 +4754,6 @@ }, /turf/simulated/floor/tiled, /area/operations/lobby) -"bXI" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Xenoarchaeologist" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/rnd/conference) "bXR" = ( /obj/effect/floor_decal/corner/dark_green/full, /obj/effect/floor_decal/spline/plain{ @@ -4747,32 +4764,13 @@ }, /turf/simulated/floor/tiled, /area/horizon/hydroponics) -"bYd" = ( -/obj/structure/table/rack, -/obj/item/device/gps/science{ - pixel_x = 4; - pixel_y = 11 - }, -/obj/item/device/gps/science{ - pixel_x = 4; - pixel_y = 7 - }, -/obj/item/device/gps/science{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/device/gps/science{ - pixel_y = -1; - pixel_x = 4 - }, -/obj/machinery/alarm/north, -/obj/item/device/multitool{ - pixel_x = -8; - pixel_y = 10 +"bXX" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/mauve{ + dir = 10 }, -/obj/item/screwdriver, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/telesci) +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/hazardous) "bYf" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -4802,6 +4800,15 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/medical/ors) +"bYS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) "bYT" = ( /obj/effect/floor_decal/corner_wide/blue{ dir = 1 @@ -4852,30 +4859,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/bar/backroom) -"bYZ" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/disposal/deliveryChute{ - dir = 4 - }, -/obj/machinery/door/window/eastleft, -/obj/machinery/door/blast/regular/open{ - fail_secure = 1; - id = "xenobio_a"; - name = "Cell Containment Blast Door" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology) "bZj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -4893,10 +4876,6 @@ /obj/machinery/suit_cycler/engineering/prepared/atmos, /turf/simulated/floor/tiled/dark/full, /area/engineering/atmos/storage) -"bZv" = ( -/obj/item/modular_computer/console/preset/command, -/turf/simulated/floor/reinforced, -/area/horizon/zat) "bZz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -4921,28 +4900,13 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/armoury) -"bZP" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/mauve/full{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "2-4" +"bZU" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 }, +/obj/machinery/alarm/west, /turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/hazardous) +/area/rnd/conference) "caj" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/table/rack, @@ -4955,6 +4919,25 @@ }, /turf/simulated/floor/tiled, /area/maintenance/aux_atmospherics/deck_2/starboard/wing) +"can" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/conference) "cav" = ( /obj/structure/grille, /obj/machinery/door/firedoor, @@ -4982,21 +4965,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/engineering/engine_room/rust) -"cbb" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/bed/stool/chair/sofa/left/purple{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/rnd/hallway/secondary) "cbK" = ( /turf/template_noop, /area/horizon/exterior) @@ -5039,6 +5007,23 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) +"cda" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) "cdq" = ( /obj/effect/floor_decal/industrial/outline/engineering, /obj/structure/fireaxecabinet/east, @@ -5073,8 +5058,16 @@ /turf/simulated/floor/plating, /area/engineering/engine_room) "cer" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/heads/hor) +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/r_n_d/circuit_imprinter, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/carpet/rubber, +/area/rnd/lab) "cev" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -5094,10 +5087,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/kitchen) -"cfh" = ( -/obj/effect/floor_decal/corner/mauve/full, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) "cfw" = ( /obj/structure/table/standard, /obj/structure/window/reinforced, @@ -5137,6 +5126,13 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/engineering/engine_waste) +"cgp" = ( +/obj/effect/floor_decal/corner/pink/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) "cgI" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 @@ -5202,13 +5198,6 @@ }, /turf/simulated/floor/tiled/full, /area/medical/icu) -"chX" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/obj/machinery/door/blast/shutters/open{ - id = "RnDShutters" - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/hallway) "cil" = ( /obj/machinery/light{ dir = 1 @@ -5235,6 +5224,22 @@ }, /turf/simulated/floor/wood, /area/operations/office) +"ciU" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) +"cjg" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenological) "cjC" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -5320,15 +5325,6 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/full, /area/medical/reception) -"cll" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 1; - req_one_access = list(12,26,29,31,48,67) - }, -/turf/simulated/floor/tiled/full, -/area/maintenance/wing/starboard) "clz" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_medical{ @@ -5356,20 +5352,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/engineering/engine_room) -"cmG" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/light/floor{ - dir = 8 - }, -/obj/machinery/firealarm/west, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) "cne" = ( /obj/item/material/ashtray/bronze{ pixel_x = -5; @@ -5441,35 +5423,23 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/horizon/library) -"cox" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen/prechilled, -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/carpet/rubber, -/area/server) "coX" = ( /obj/structure/bed/stool/bar/padded/red, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/wood, /area/maintenance/wing/starboard) -"cpl" = ( -/turf/simulated/wall/r_wall, -/area/horizon/grauwolf) -"cpw" = ( -/obj/structure/railing/mapped{ - dir = 4 +"cpi" = ( +/obj/machinery/constructable_frame{ + dir = 8 }, -/obj/effect/floor_decal/corner/pink/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/camera/motion{ - c_tag = "ZAT Fore Starboard"; - dir = 4; - network = list("Command","Security") +/obj/machinery/light{ + dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/horizon/zat) +/area/rnd/lab) +"cpl" = ( +/turf/simulated/wall/r_wall, +/area/horizon/grauwolf) "cpW" = ( /obj/structure/railing/mapped{ dir = 1 @@ -5486,19 +5456,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) -"cqj" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology/xenoflora) -"cqJ" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/obj/machinery/light/floor{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) "cqS" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -5530,18 +5487,10 @@ }, /turf/simulated/floor/wood, /area/horizon/bar) -"crr" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/light/floor{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) +"cro" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "crt" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -5565,6 +5514,16 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/research) +"cry" = ( +/obj/structure/table/standard, +/obj/machinery/requests_console/west{ + department = "Xenobiology Lab"; + name = "Xenobiology Requests Console" + }, +/obj/effect/floor_decal/corner/mauve/full, +/obj/item/glass_jar, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/foyer) "crP" = ( /obj/effect/floor_decal/corner/yellow/full{ dir = 1 @@ -5588,21 +5547,27 @@ }, /turf/simulated/floor/tiled/white, /area/hallway/medical) -"csy" = ( -/obj/machinery/seed_storage/xenobotany, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) +"csL" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "xenobio_b"; + name = "Cell Containment Blast Doors"; + pixel_x = -21; + req_access = list(47) + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology) "ctg" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, /area/maintenance/wing/starboard) -"ctO" = ( -/obj/structure/closet, -/obj/random/contraband, -/obj/random/contraband, -/turf/simulated/floor/plating, -/area/maintenance/wing/port) "cua" = ( /obj/structure/table/standard, /obj/item/storage/firstaid/o2{ @@ -5660,6 +5625,13 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) +"cuW" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light/floor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) "cvb" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/light/small/emergency{ @@ -5677,17 +5649,6 @@ }, /turf/simulated/floor/carpet/rubber, /area/engineering/engine_monitoring/rust) -"cwr" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/platform, -/obj/machinery/computer/operating{ - name = "Xenobiology Operating Computer"; - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/dissection) "cww" = ( /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ dir = 8; @@ -5732,19 +5693,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/hydroponics) -"cxa" = ( -/obj/machinery/power/apc/east, -/obj/structure/cable/green, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/disposal/small/west, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/dissection) "cxc" = ( /obj/effect/floor_decal/corner/dark_green/full{ dir = 1 @@ -5766,41 +5714,28 @@ }, /turf/simulated/floor/tiled/dark/full, /area/turbolift/scc_ship/morgue_lift) -"cxF" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"cxS" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"cxY" = ( -/obj/machinery/door/firedoor{ - dir = 4 +"cyn" = ( +/obj/machinery/door/airlock/glass_research{ + dir = 1; + name = "Telescience"; + req_access = list(7) }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/command{ - dir = 4; - id_tag = "researchdoor"; - name = "Research Director's Office"; - req_access = list(30) +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular/open{ + dir = 8; + fail_secure = 1; + id = "telesci_lockdown"; + name = "Hazardous Containment Lockdown" }, -/obj/structure/cable/green{ - icon_state = "4-8" +/turf/simulated/floor/tiled/dark/full, +/area/rnd/telesci) +"cyG" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hor) +/obj/machinery/light/floor, +/turf/simulated/floor/tiled/white, +/area/rnd/conference) "czb" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -5808,6 +5743,13 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) +"czr" = ( +/obj/structure/platform_stairs/full/east_west_cap{ + dir = 8 + }, +/obj/structure/platform/cutout, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) "czx" = ( /obj/machinery/light{ dir = 4 @@ -5844,33 +5786,6 @@ }, /turf/simulated/floor/wood, /area/horizon/bar) -"czY" = ( -/obj/structure/railing/mapped, -/obj/machinery/camera/network/research{ - c_tag = "Research - Research & Development Circuitry"; - pixel_y = 9; - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/lab) -"czZ" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/spray/chemsprayer/xenobiology, -/obj/item/reagent_containers/spray/chemsprayer/xenobiology, -/obj/item/melee/baton/slime{ - pixel_x = 3; - pixel_y = -1 - }, -/obj/item/melee/baton/slime{ - pixel_x = 3; - pixel_y = -1 - }, -/obj/machinery/light, -/obj/effect/floor_decal/corner/mauve/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) "cAb" = ( /obj/structure/cable{ icon_state = "1-2" @@ -5886,27 +5801,17 @@ }, /turf/simulated/floor/carpet/rubber, /area/operations/lower/machinist) -"cAq" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/machinery/conveyor_switch/oneway{ - desc = "A conveyor control switch. It appears to only go in one direction. Controls the components conveyor belt."; - id = "rnd"; - pixel_x = -13; - pixel_y = 21 - }, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/lab) "cAt" = ( /obj/structure/bed/stool/bar/padded/red{ dir = 4 }, /turf/simulated/floor/lino, /area/horizon/bar) +"cAx" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/maintenance/research_port) "cBq" = ( /obj/effect/floor_decal/industrial/warning{ dir = 5 @@ -5940,17 +5845,6 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/xenobiology/xenoflora) -"cCP" = ( -/obj/structure/table/standard, -/obj/machinery/computer/security/telescreen{ - name = "Access Monitor"; - network = list("Xeno_Bio") - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/foyer) "cDx" = ( /obj/machinery/appliance/cooker/stove, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -6008,18 +5902,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/kitchen) -"cEH" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) "cFX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 @@ -6051,6 +5933,14 @@ /obj/effect/floor_decal/corner/beige/full, /turf/simulated/floor/tiled/dark, /area/medical/gen_treatment) +"cGM" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Research and Development Maintenance"; + req_access = list(7) + }, +/turf/simulated/floor/plating, +/area/rnd/chemistry) "cHC" = ( /obj/structure/bed/stool/chair/sofa/right/orange, /turf/simulated/floor/carpet/red, @@ -6153,6 +6043,24 @@ /obj/machinery/newscaster/south, /turf/simulated/floor/tiled, /area/horizon/custodial/auxiliary) +"cJU" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/spray/chemsprayer/xenobiology, +/obj/item/reagent_containers/spray/chemsprayer/xenobiology, +/obj/item/melee/baton/slime{ + pixel_x = 3; + pixel_y = -1 + }, +/obj/item/melee/baton/slime{ + pixel_x = 3; + pixel_y = -1 + }, +/obj/machinery/light, +/obj/effect/floor_decal/corner/mauve/full{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology) "cKa" = ( /obj/machinery/atmospherics/pipe/simple/visible/black, /obj/machinery/atmospherics/pipe/simple/visible/cyan{ @@ -6199,16 +6107,6 @@ /obj/structure/lattice/catwalk/indoor, /turf/simulated/floor/plating, /area/engineering/smes/rust) -"cKC" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/small/east, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) "cKJ" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/plating, @@ -6348,14 +6246,15 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_two/fore/port) -"cOa" = ( -/obj/structure/window/reinforced{ - dir = 4 +"cNU" = ( +/obj/machinery/alarm/west, +/obj/effect/floor_decal/corner/red/diagonal, +/obj/structure/closet/walllocker/firecloset{ + pixel_x = -32 }, -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled, +/area/maintenance/wing/port) "cOj" = ( /obj/machinery/door/blast/regular{ dir = 2; @@ -6389,6 +6288,29 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/full, /area/hallway/primary/central_two) +"cOp" = ( +/turf/simulated/floor/wood, +/area/rnd/hallway/secondary) +"cOs" = ( +/obj/machinery/door/airlock/glass_research{ + dir = 4; + name = "Research Directors Lobby" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/crew_quarters/heads/hor) "cOC" = ( /obj/structure/bed/stool/chair{ dir = 4 @@ -6470,6 +6392,14 @@ }, /turf/simulated/floor/tiled, /area/engineering/lobby) +"cQB" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/firealarm/south, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "cQE" = ( /obj/effect/floor_decal/spline/plain{ dir = 8 @@ -6477,27 +6407,9 @@ /obj/structure/railing/mapped, /turf/simulated/floor/tiled/dark, /area/hallway/primary/central_one) -"cQQ" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/disposal/small/east, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/rnd/hallway) "cQS" = ( /turf/simulated/wall/r_wall, /area/engineering/aft_airlock) -"cRo" = ( -/obj/structure/window/shuttle/scc_space_ship/cardinal, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/horizon/zat) "cRr" = ( /obj/structure/railing/mapped, /obj/structure/cable/green{ @@ -6511,6 +6423,22 @@ /obj/effect/floor_decal/industrial/warning/full, /turf/simulated/floor/plating, /area/maintenance/security_starboard) +"cRs" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/command{ + dir = 4; + id_tag = "researchdoor"; + name = "Research Director's Office"; + req_access = list(30) + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hor) "cRu" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/engineering{ @@ -6524,36 +6452,12 @@ "cRE" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/grauwolf) -"cRG" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - name = "Xenobotany Maintenance"; - req_access = list(52) - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) "cRN" = ( /obj/effect/floor_decal/corner_wide/orange{ dir = 5 }, /turf/simulated/floor/tiled/white, /area/medical/pharmacy) -"cRO" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Scientist" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/rnd/conference) "cRP" = ( /obj/structure/bed/stool/chair{ dir = 8 @@ -6613,24 +6517,16 @@ /obj/effect/map_effect/marker_helper/airlock/interior, /turf/simulated/floor, /area/maintenance/wing/port/far) +"cSS" = ( +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d3-6" + }, +/turf/simulated/wall/r_wall, +/area/rnd/xenobiology/xenoflora) "cTn" = ( /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, /area/hallway/primary/central_one) -"cUd" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/rnd/hallway) "cUi" = ( /obj/item/modular_computer/console/preset/engineering{ dir = 1 @@ -6641,26 +6537,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/engineering/lobby) -"cUm" = ( -/obj/machinery/door/airlock/glass_research{ - dir = 1; - name = "Telescience"; - req_access = list(7) - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular/open{ - dir = 8; - fail_secure = 1; - id = "telesci_lockdown"; - name = "Hazardous Containment Lockdown" - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/telesci) -"cUw" = ( -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) "cUA" = ( /obj/effect/floor_decal/corner/dark_green/full{ dir = 8 @@ -6706,14 +6582,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/ors) -"cVi" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/cell_charger, -/obj/structure/table/standard, -/turf/simulated/floor/reinforced, -/area/horizon/zat) "cVs" = ( /obj/structure/bed/stool/chair/folding{ dir = 8 @@ -6783,6 +6651,23 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/full, /area/horizon/crew_quarters/lounge/bar) +"cXh" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/maintenance/research_port) "cXk" = ( /obj/effect/floor_decal/corner/yellow{ dir = 10 @@ -6798,55 +6683,13 @@ }, /turf/simulated/floor/tiled, /area/engineering/rust_office) -"cXp" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/full, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) -"cXB" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "xenobio_b"; - name = "Cell Containment Blast Doors"; - pixel_x = -21; - req_access = list(47) - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"cXO" = ( -/obj/machinery/door/blast/regular/open{ - dir = 2; - fail_secure = 1; - id = "xenobio_c"; - name = "Cell Containment Blast Door" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/disposal/deliveryChute{ +"cXq" = ( +/obj/machinery/light/small/emergency{ dir = 8 }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/door/window/westleft, -/obj/machinery/door/firedoor{ - dir = 4 - }, +/obj/effect/floor_decal/industrial/hatch/red, /turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology) +/area/horizon/zat) "cXU" = ( /obj/structure/cable{ icon_state = "4-8" @@ -6889,10 +6732,6 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, /area/engineering/engine_waste) -"cZg" = ( -/obj/machinery/alarm/east, -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) "cZj" = ( /obj/machinery/camera/network/medbay{ c_tag = "Medical - Hallway 1"; @@ -6944,6 +6783,22 @@ }, /turf/simulated/open, /area/operations/office) +"daM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/rnd/hallway) "dbd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -6953,40 +6808,12 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/horizon/security/hallway) -"dbz" = ( +"dbn" = ( +/obj/structure/window/shuttle/scc_space_ship/cardinal, /obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/hazardous) -"dbC" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/disposal/small/south, -/obj/structure/disposalpipe/trunk, -/obj/structure/sign/vacuum{ - icon_state = "deathsposal"; - pixel_y = 35 - }, -/obj/machinery/light/floor{ - dir = 1 - }, -/turf/simulated/floor/tiled, +/obj/structure/grille, +/turf/simulated/floor/tiled/dark/full, /area/rnd/xenobiology/xenoflora) -"dcw" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/turf/simulated/floor/tiled, -/area/maintenance/wing/port) "dcF" = ( /obj/machinery/light{ dir = 4 @@ -7085,22 +6912,6 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) -"dfl" = ( -/obj/structure/table/standard, -/obj/item/stack/material/phoron{ - amount = 15 - }, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/obj/machinery/power/apc/west, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) "dfO" = ( /obj/structure/sink{ pixel_y = 1; @@ -7109,6 +6920,16 @@ }, /turf/simulated/floor/tiled/white, /area/operations/lower/machinist/surgicalbay) +"dfP" = ( +/obj/structure/closet/secure_closet/scientist, +/obj/item/storage/box/masks, +/obj/item/storage/box/gloves, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry) "dfR" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/corner_wide/green{ @@ -7116,11 +6937,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) -"dgf" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) "dgw" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 @@ -7231,16 +7047,6 @@ }, /turf/simulated/floor/tiled/full, /area/engineering/engine_airlock) -"djz" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/table/wood, -/obj/item/flora/pottedplant_small{ - pixel_x = -16 - }, -/turf/simulated/floor/wood, -/area/rnd/hallway/secondary) "djP" = ( /obj/structure/cable/green{ icon_state = "0-8" @@ -7249,16 +7055,6 @@ /obj/machinery/atmospherics/pipe/manifold/hidden, /turf/simulated/floor/plating, /area/medical/cryo) -"dkb" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 4 - }, -/obj/structure/platform{ - dir = 1 - }, -/obj/machinery/light/floor, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) "dkh" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table/steel, @@ -7305,11 +7101,6 @@ /obj/machinery/alarm/west, /turf/simulated/floor/tiled/dark, /area/maintenance/wing/port/far) -"dku" = ( -/obj/structure/window/shuttle/scc_space_ship/cardinal, -/obj/structure/grille, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology/xenoflora) "dkz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -7319,6 +7110,30 @@ }, /turf/simulated/floor/tiled/white, /area/hallway/medical) +"dkC" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/button/remote/airlock{ + dir = 1; + id = "bolts_cannon_internal"; + name = "Primary Armament Interior Bolts"; + pixel_x = 22; + pixel_y = -20; + req_one_access = list(19,43); + specialfunctions = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/zat) "dkR" = ( /obj/structure/railing/mapped{ dir = 8 @@ -7329,25 +7144,6 @@ /obj/structure/lattice/catwalk, /turf/simulated/open/airless, /area/horizon/exterior) -"dlF" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) "dlG" = ( /obj/structure/railing/mapped{ dir = 1 @@ -7385,13 +7181,13 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"dml" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 +"dlT" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/effect/landmark{ + name = "Revenant" }, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) +/turf/simulated/floor/plating, +/area/maintenance/research_port) "dmD" = ( /obj/machinery/light{ dir = 4 @@ -7404,14 +7200,12 @@ /turf/simulated/floor/tiled, /area/security/checkpoint2) "dmF" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/mauve/diagonal, +/turf/simulated/floor/tiled/white, +/area/rnd/lab) "dmK" = ( /obj/structure/shuttle_part/scc_space_ship{ icon_state = "d3-3" @@ -7469,18 +7263,6 @@ }, /turf/simulated/floor/tiled/dark, /area/maintenance/wing/starboard/far) -"dox" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) "doE" = ( /obj/effect/floor_decal/industrial/warning, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -7488,15 +7270,6 @@ }, /turf/simulated/floor/tiled/full, /area/engineering/storage_hard) -"doF" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/hazardous) "doG" = ( /obj/effect/map_effect/window_spawner/full/borosilicate/reinforced, /obj/machinery/door/blast/regular/open{ @@ -7522,6 +7295,12 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) +"dpE" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenological) "dpG" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 10 @@ -7562,6 +7341,16 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/office) +"drw" = ( +/obj/machinery/light/floor, +/turf/simulated/floor/carpet/rubber, +/area/rnd/telesci) +"drB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/carpet/rubber, +/area/rnd/lab) "drT" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -7593,6 +7382,11 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) +"dsw" = ( +/obj/structure/table/rack, +/obj/random/contraband, +/turf/simulated/floor/plating, +/area/maintenance/wing/port/far) "dto" = ( /obj/structure/cable{ icon_state = "1-2" @@ -7656,6 +7450,16 @@ }, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) +"dvf" = ( +/obj/structure/platform_deco{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hor) "dvs" = ( /obj/structure/cable{ icon_state = "4-8" @@ -7729,15 +7533,6 @@ /obj/item/storage/box/fancy/donut, /turf/simulated/floor/tiled/dark, /area/security/checkpoint2) -"dwB" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) "dwK" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -7780,6 +7575,17 @@ }, /turf/simulated/floor/tiled/white, /area/medical/exam) +"dxm" = ( +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d3-5" + }, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/maintenance/research_port) +"dxH" = ( +/obj/machinery/weapons_analyzer, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/lab) "dyg" = ( /obj/structure/cable{ icon_state = "4-8" @@ -7793,6 +7599,17 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/maintenance/wing/starboard/far) +"dyP" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/corner/pink/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) "dyU" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ @@ -7830,10 +7647,6 @@ }, /turf/simulated/floor/tiled, /area/operations/lobby) -"dzv" = ( -/obj/machinery/autolathe, -/turf/simulated/floor/carpet/rubber, -/area/rnd/lab) "dzI" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 @@ -7846,6 +7659,14 @@ }, /turf/space/dynamic, /area/template_noop) +"dAu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/carpet/rubber, +/area/rnd/lab) "dAy" = ( /obj/effect/shuttle_landmark/horizon/exterior/deck_2/starboard_fore, /turf/template_noop, @@ -7881,20 +7702,6 @@ }, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) -"dBl" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"dBz" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/plating, -/area/rnd/xenobiology) "dBB" = ( /obj/effect/floor_decal/corner/brown{ dir = 6 @@ -7909,26 +7716,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/wall/r_wall, /area/horizon/security/brig) -"dBV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - dir = 4 - }, -/obj/machinery/access_button{ - dir = 1; - pixel_x = 23; - pixel_y = -19 - }, -/obj/effect/map_effect/marker/airlock{ - frequency = 3002; - master_tag = "airlock_horizon_deck_2_levi"; - name = "airlock_horizon_deck_2_levi" - }, -/obj/effect/map_effect/marker_helper/airlock/interior, -/turf/simulated/floor/plating, -/area/horizon/zat) "dBX" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -8027,6 +7814,15 @@ }, /turf/simulated/floor/tiled, /area/operations/lobby) +"dDt" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/porta_turret/sniper, +/obj/machinery/light/small/emergency, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/zat) "dDS" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 5 @@ -8036,46 +7832,21 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/grauwolf) -"dEz" = ( -/turf/simulated/wall, -/area/maintenance/wing/starboard/far) -"dEF" = ( -/obj/machinery/camera/network/research{ - c_tag = "Research - Xenobiology Fore"; - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/structure/table/standard, -/obj/item/device/slime_scanner{ - pixel_x = -11; - pixel_y = 4 - }, -/obj/item/device/slime_scanner{ - pixel_x = -11; - pixel_y = 4 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_y = 8 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_y = 8 - }, -/obj/item/storage/box/syringes{ - pixel_x = 5; - pixel_y = 1 +"dEb" = ( +/obj/structure/railing/mapped{ + dir = 8 }, -/obj/item/storage/box/syringes{ - pixel_x = 5; - pixel_y = 1 +/obj/machinery/computer/rdconsole/core{ + dir = 4 }, -/obj/machinery/firealarm/south, -/obj/machinery/vending/wallmed1{ - pixel_y = -32 +/obj/machinery/light/floor{ + dir = 8 }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) +/turf/simulated/floor/carpet/rubber, +/area/rnd/lab) +"dEz" = ( +/turf/simulated/wall, +/area/maintenance/wing/starboard/far) "dFi" = ( /obj/effect/floor_decal/industrial/warning/cee{ dir = 8 @@ -8109,27 +7880,18 @@ }, /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/maintenance/wing/starboard) -"dGD" = ( -/obj/structure/cable/green{ - 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/mauve{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/floor{ - dir = 1 +"dGd" = ( +/obj/machinery/smartfridge/secure/medbay{ + pixel_y = 1; + req_one_access = list(7) }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/chemistry) +"dGj" = ( +/turf/simulated/wall/r_wall, +/area/rnd/xenobiology/xenological) "dGX" = ( /obj/effect/floor_decal/corner_wide/yellow{ dir = 5 @@ -8141,12 +7903,17 @@ /obj/structure/platform, /turf/simulated/floor/tiled, /area/hallway/engineering) -"dHE" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/structure/cable/green, -/obj/machinery/power/apc/south, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) +"dHt" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/closet/secure_closet/xenobotany, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "dHG" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -8162,20 +7929,26 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/full, /area/engineering/storage_hard) -"dHJ" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 +"dHO" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/door/blast/regular/open{ + fail_secure = 1; + id = "xenobio_a"; + name = "Cell Containment Blast Door" }, -/obj/machinery/button/remote/airlock{ - id = "xeno_bot_hazard"; - name = "Xenobotany Hazardous Specimens"; - pixel_y = 30; - req_access = list(52); - specialfunctions = 4; - dir = 1 +/obj/machinery/door/window/holowindoor{ + dir = 8; + req_access = list(55) }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) +/obj/machinery/door/window/holowindoor{ + dir = 4; + req_access = list(55) + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/xenobiology) "dHV" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -8206,10 +7979,6 @@ }, /turf/simulated/floor/tiled, /area/engineering/rust_office) -"dIh" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) "dIk" = ( /obj/effect/floor_decal/corner/dark_green/full{ dir = 8 @@ -8219,15 +7988,6 @@ /obj/effect/floor_decal/industrial/loading/yellow, /turf/simulated/floor/tiled, /area/horizon/stairwell/central) -"dIE" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/machinery/hologram/holopad/long_range, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/rnd/conference) "dIZ" = ( /turf/simulated/wall, /area/medical/ors) @@ -8239,6 +7999,19 @@ }, /turf/simulated/floor/tiled/dark/full, /area/operations/lower/machinist) +"dJx" = ( +/obj/machinery/power/apc/east, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/camera/network/research{ + c_tag = "Xenology Studies"; + dir = 8; + network = list("Research","Xeno_Bio") + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenological) "dJE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -8291,6 +8064,16 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/full, /area/horizon/security/hallway) +"dKf" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/machinery/camera/network/second_deck{ + c_tag = "Second Deck - Hallway 1"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/central_one) "dKi" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 @@ -8324,14 +8107,6 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"dKZ" = ( -/obj/structure/bed/stool/chair/office/dark, -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) "dLe" = ( /obj/effect/floor_decal/corner/dark_blue/full{ dir = 8 @@ -8379,6 +8154,12 @@ /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, /area/operations/break_room) +"dLN" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) "dLO" = ( /obj/machinery/door/window/westright, /obj/structure/platform_stairs/full/east_west_cap, @@ -8454,12 +8235,6 @@ }, /turf/simulated/floor/tiled, /area/maintenance/wing/starboard/far) -"dNn" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) "dNz" = ( /obj/structure/platform/ledge, /obj/structure/sign/poster{ @@ -8482,6 +8257,10 @@ "dOi" = ( /turf/simulated/wall/r_wall, /area/rnd/conference) +"dOP" = ( +/obj/structure/table/standard, +/turf/simulated/floor/carpet/rubber, +/area/rnd/lab) "dPi" = ( /obj/effect/floor_decal/corner_wide/green/full{ dir = 1 @@ -8531,17 +8310,6 @@ }, /turf/simulated/floor/lino, /area/chapel/main) -"dQo" = ( -/obj/machinery/firealarm/north, -/obj/effect/floor_decal/corner/mauve/full{ - dir = 1 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = 23 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/conference) "dQR" = ( /obj/structure/bed/stool/chair{ dir = 4 @@ -8576,6 +8344,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) +"dRh" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/maintenance/aft) "dRk" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/corner/dark_green{ @@ -8583,14 +8356,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_two) -"dRo" = ( -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, -/obj/machinery/door/blast/shutters/open{ - id = "exploratory_chem_shutters"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/chemistry) "dRJ" = ( /obj/structure/platform, /turf/simulated/floor/plating, @@ -8634,19 +8399,22 @@ }, /turf/simulated/floor/tiled/dark, /area/engineering/smes) -"dSc" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) +"dSD" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) "dSH" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/dark, /area/maintenance/wing/port/far) +"dSI" = ( +/turf/simulated/open, +/area/maintenance/research_port) +"dSJ" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "dSU" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/maintenance/substation/engineering) @@ -8673,14 +8441,12 @@ /obj/structure/railing/mapped, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"dUA" = ( -/obj/structure/window/borosilicate{ - dir = 4 +"dUR" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = -32 }, -/obj/structure/closet/hazmat/research, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) "dVc" = ( /obj/structure/window/shuttle/scc_space_ship, /obj/structure/grille, @@ -8734,6 +8500,25 @@ }, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) +"dVy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/research_port) "dVE" = ( /obj/structure/railing/mapped{ dir = 8 @@ -8835,36 +8620,10 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/full, /area/horizon/security/hallway) -"dXA" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 13 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/firealarm/east, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/dissection) "dXD" = ( /obj/effect/shuttle_landmark/horizon/exterior/deck_2/port_aft, /turf/template_noop, /area/template_noop) -"dYf" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/light/floor{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) "dYg" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4 @@ -8891,10 +8650,41 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/hallway/engineering) +"dYo" = ( +/obj/machinery/ship_weapon/leviathan{ + pixel_x = -64; + pixel_y = -928; + weapon_id = "Leviathan" + }, +/obj/structure/ship_weapon_dummy, +/turf/simulated/floor/plating, +/area/horizon/zat) "dYr" = ( /obj/structure/table/steel, /turf/simulated/floor/plating, /area/maintenance/wing/port) +"dYz" = ( +/obj/effect/floor_decal/corner/black{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) "dYR" = ( /obj/machinery/door/airlock{ dir = 1; @@ -8906,16 +8696,6 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/security/brig) -"dYS" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/table/wood, -/turf/simulated/floor/wood, -/area/rnd/hallway/secondary) "dZG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -8928,6 +8708,16 @@ }, /turf/simulated/floor/tiled, /area/operations/lobby) +"dZI" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) "dZL" = ( /obj/structure/window/reinforced{ dir = 8 @@ -8960,9 +8750,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/engineering/engine_room) -"eat" = ( -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) "eau" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 @@ -8972,17 +8759,21 @@ }, /turf/simulated/floor/tiled, /area/operations/lobby) -"ebd" = ( -/obj/structure/closet/secure_closet/guncabinet/sci, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/rnd/lab) "ebk" = ( /obj/effect/floor_decal/corner/black{ dir = 5 }, /turf/simulated/floor/tiled/full, /area/hallway/primary/central_one) +"ebm" = ( +/obj/structure/extinguisher_cabinet/east{ + layer = 3.3 + }, +/obj/structure/table/standard, +/obj/item/device/flashlight/lamp, +/obj/machinery/firealarm/north, +/turf/simulated/floor/reinforced, +/area/horizon/zat) "ebq" = ( /obj/structure/foamedmetal, /obj/structure/shuttle_part/scc_space_ship{ @@ -8990,27 +8781,6 @@ }, /turf/simulated/floor/plating, /area/horizon/commissary) -"ebE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"ebM" = ( -/obj/structure/table/standard, -/obj/item/storage/box/fancy/vials, -/obj/item/reagent_containers/dropper/electronic_pipette, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/chemistry) "ebR" = ( /obj/machinery/camera/network/second_deck{ c_tag = "Second Deck - Starboard Dock Port"; @@ -9071,6 +8841,22 @@ "ecA" = ( /turf/simulated/open/airless, /area/horizon/exterior) +"ecS" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = 22; + pixel_y = 12 + }, +/turf/simulated/floor/carpet/rubber, +/area/rnd/xenobiology/dissection) "ecV" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 @@ -9116,17 +8902,6 @@ }, /turf/simulated/floor/tiled, /area/operations/mail_room) -"eeG" = ( -/obj/effect/floor_decal/corner/pink/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) "eeQ" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/crew_quarters/lounge/bar) @@ -9140,16 +8915,6 @@ }, /turf/simulated/floor/reinforced, /area/horizon/grauwolf) -"efp" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) "efy" = ( /obj/effect/floor_decal/spline/fancy/wood, /obj/machinery/hologram/holopad, @@ -9186,19 +8951,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/storage/primary) -"egb" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/maintenance/wing/port) "egf" = ( /obj/structure/ladder/up{ pixel_y = 13 @@ -9239,28 +8991,25 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/maintenance/wing/port/far) -"egB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"egF" = ( +/mob/living/carbon/slime, /obj/effect/floor_decal/industrial/warning{ - dir = 10 + dir = 1 }, /turf/simulated/floor/reinforced, /area/rnd/xenobiology) -"egI" = ( -/obj/structure/lattice/catwalk/indoor/grate, -/obj/effect/landmark{ - name = "Revenant" - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) "egY" = ( /obj/structure/ladder{ pixel_y = 8 }, /turf/simulated/open, /area/maintenance/wing/starboard) +"ehp" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/railing/mapped, +/turf/simulated/floor/grass, +/area/rnd/hallway/secondary) "ehS" = ( /obj/machinery/door/airlock{ dir = 4; @@ -9321,19 +9070,6 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/dark/full, /area/operations/lower/machinist/surgicalbay) -"ejD" = ( -/obj/structure/plasticflaps/mining, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "shutters_deck2_rescon"; - name = "Conveyor Shutter" - }, -/obj/machinery/conveyor{ - id = "rnd"; - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/lab) "eks" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ @@ -9360,6 +9096,13 @@ }, /turf/simulated/floor/wood, /area/horizon/bar) +"ekM" = ( +/obj/structure/platform/ledge{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/visible, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "ekS" = ( /obj/machinery/door/firedoor, /obj/effect/decal/cleanable/cobweb, @@ -9388,8 +9131,19 @@ /obj/structure/stairs/north, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) -"els" = ( -/turf/simulated/wall, +"elm" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, /area/maintenance/research_port) "elz" = ( /obj/structure/cable{ @@ -9420,12 +9174,13 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/crew_quarters/lounge/bar) -"emG" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 +"emN" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 }, /turf/simulated/floor/tiled, -/area/rnd/hallway) +/area/maintenance/wing/port) "emT" = ( /obj/machinery/light/small/emergency{ dir = 8 @@ -9438,39 +9193,6 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/maintenance/wing/port/far) -"end" = ( -/obj/machinery/camera/network/research{ - c_tag = "Research - Research & Development"; - pixel_y = 9; - dir = 8 - }, -/obj/structure/table/standard, -/obj/machinery/button/remote/blast_door{ - desc = "It controls the research shutters."; - id = "RnDShutters"; - name = "Research Shutters"; - dir = 6; - pixel_y = -1; - pixel_x = -7 - }, -/obj/machinery/button/remote/blast_door{ - desc = "It controls the research shutters."; - id = "shutters_deck2_rescon"; - name = "Research Conveyor Shutter"; - dir = 6; - pixel_x = -7; - pixel_y = 10 - }, -/obj/machinery/button/remote/blast_door{ - desc = "It controls the research shutters."; - id = "RnDDesk"; - name = "Research Desk Shutters"; - pixel_x = 6; - dir = 6; - pixel_y = -1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/lab) "ens" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -9478,6 +9200,26 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/full, /area/operations/qm) +"env" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/door/blast/regular/open{ + fail_secure = 1; + id = "xenobio_b"; + name = "Cell Containment Blast Door" + }, +/obj/machinery/door/window/holowindoor{ + dir = 8; + req_access = list(55) + }, +/obj/machinery/door/window/holowindoor{ + dir = 4; + req_access = list(55) + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/xenobiology) "enw" = ( /obj/structure/disposalpipe/sortjunction/flipped{ name = "Library Office"; @@ -9510,6 +9252,12 @@ }, /turf/simulated/floor/lino, /area/horizon/bar) +"enV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) "eoh" = ( /obj/structure/cable/orange{ icon_state = "4-8" @@ -9568,28 +9316,6 @@ }, /turf/simulated/floor/tiled, /area/operations/break_room) -"epS" = ( -/obj/machinery/button/remote/blast_door{ - id = "cannon_view"; - name = "Viewing Blast Doors"; - pixel_x = 7; - pixel_y = -23; - req_one_access = list(19,11,24) - }, -/obj/structure/table/standard, -/obj/item/device/binoculars, -/obj/item/device/binoculars/high_power{ - pixel_y = 8 - }, -/obj/machinery/light/small, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/horizon/zat) "epZ" = ( /obj/structure/table/wood, /obj/machinery/requests_console/east{ @@ -9624,26 +9350,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/pharmacy) -"eqb" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/door/blast/regular/open{ - fail_secure = 1; - id = "xenobio_b"; - name = "Cell Containment Blast Door" - }, -/obj/machinery/door/window/holowindoor{ - dir = 8; - req_access = list(55) - }, -/obj/machinery/door/window/holowindoor{ - dir = 4; - req_access = list(55) - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology) "eqe" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -9725,38 +9431,15 @@ "erh" = ( /turf/simulated/floor/tiled/dark, /area/engineering/engine_waste) -"ery" = ( -/obj/effect/floor_decal/corner/lime/full{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"erF" = ( -/obj/machinery/ship_weapon/leviathan{ - pixel_x = -64; - pixel_y = -928; - weapon_id = "Leviathan" - }, +"ern" = ( +/obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/ship_weapon_dummy, -/turf/simulated/floor/plating, +/turf/simulated/floor/reinforced, /area/horizon/zat) "erY" = ( /obj/random/junk, /turf/simulated/floor/tiled/dark/full, /area/maintenance/wing/port) -"esk" = ( -/obj/structure/closet, -/obj/random/loot, -/obj/random/loot, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/wing/port) "esy" = ( /obj/structure/bed/stool/padded/red, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -9789,19 +9472,6 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/dark/full, /area/engineering/smes/rust) -"etb" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) "etv" = ( /obj/effect/floor_decal/corner/brown{ dir = 5 @@ -9836,13 +9506,6 @@ }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"eut" = ( -/obj/machinery/door/window/eastleft, -/obj/structure/platform/ledge, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/telesci) "euT" = ( /obj/machinery/chemical_dispenser, /obj/effect/floor_decal/industrial/outline/yellow, @@ -9914,6 +9577,10 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) +"ewx" = ( +/obj/item/modular_computer/console/preset/command, +/turf/simulated/floor/reinforced, +/area/horizon/zat) "ewD" = ( /obj/machinery/alarm/east, /obj/effect/floor_decal/spline/plain{ @@ -9921,16 +9588,15 @@ }, /turf/simulated/floor/carpet/rubber, /area/engineering/engine_monitoring) -"ewG" = ( -/obj/machinery/light, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/table/rack, -/obj/item/storage/box/monkeycubes, -/obj/item/storage/box/monkeycubes, -/obj/item/storage/box/monkeycubes, -/obj/item/storage/box/monkeycubes, +"ewO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, /turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) +/area/rnd/xenobiology/hazardous) "exn" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -9983,6 +9649,12 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/full, /area/hallway/primary/central_two) +"exz" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/rubber, +/area/server) "exC" = ( /obj/structure/lattice/catwalk/indoor/grate, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -10000,16 +9672,6 @@ }, /turf/simulated/floor/lino, /area/horizon/bar) -"eyh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/maintenance/research_port) "eyk" = ( /obj/effect/floor_decal/corner_wide/yellow{ dir = 5 @@ -10033,48 +9695,26 @@ }, /turf/simulated/floor/wood, /area/chapel/office) -"eyB" = ( -/obj/structure/window/reinforced{ +"eyI" = ( +/obj/structure/coatrack, +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/machinery/light{ dir = 8 }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/button/remote/airlock{ - dir = 8; - id = "bolts_cannon_external"; - name = "Primary Armament Exterior Bolts"; - pixel_x = 22; - pixel_y = 22; - req_one_access = list(19,43); - specialfunctions = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/horizon/zat) -"ezI" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenological) +"eyY" = ( +/obj/structure/bed/stool/chair/office/light{ dir = 4 }, -/obj/effect/floor_decal/corner/mauve{ - dir = 5 +/obj/effect/landmark/start{ + name = "Lab Assistant" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) +/turf/simulated/floor/wood, +/area/rnd/conference) "eAl" = ( /obj/machinery/camera/network/service{ c_tag = "Service - Deck 2 - Dining Hall 1"; @@ -10116,6 +9756,20 @@ /obj/machinery/portable_atmospherics/hydroponics/soil, /turf/simulated/floor/grass, /area/horizon/hydroponics/garden) +"eBj" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/light/floor{ + dir = 8 + }, +/obj/machinery/firealarm/west, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/rnd/lab) "eBr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -10143,6 +9797,13 @@ /obj/effect/floor_decal/spline/fancy/wood/corner, /turf/simulated/floor/wood, /area/horizon/crew_quarters/lounge/bar) +"eBN" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/sink{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/xenobiology) "eBZ" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -10290,20 +9951,6 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/wing_port) -"eEN" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/mauve{ - dir = 1 - }, -/obj/machinery/recharger{ - pixel_x = -7; - pixel_y = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) "eFo" = ( /obj/structure/lattice/catwalk/indoor/grate, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -10314,16 +9961,6 @@ }, /turf/simulated/floor/plating, /area/maintenance/wing/starboard/far) -"eFq" = ( -/obj/structure/platform_deco{ - dir = 1 - }, -/obj/machinery/atmospherics/binary/pump{ - dir = 4; - name = "Trays to Scrubbers" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) "eFS" = ( /obj/structure/lattice/catwalk/indoor/grate, /obj/structure/cable{ @@ -10355,15 +9992,22 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/brig) -"eGr" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 +"eGl" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 1; + req_one_access = list(12,26,29,31,48,67) }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/disposal/small/west, -/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled/full, +/area/maintenance/wing/starboard) +"eGs" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/full, /turf/simulated/floor/tiled/white, -/area/rnd/conference) +/area/rnd/chemistry) "eGx" = ( /obj/effect/floor_decal/corner/purple/diagonal, /obj/structure/sign/drop{ @@ -10385,9 +10029,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/custodial/disposals) -"eGJ" = ( -/turf/simulated/open, -/area/maintenance/research_port) "eGS" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, @@ -10419,6 +10060,34 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/reinforced, /area/rnd/xenobiology) +"eHl" = ( +/obj/structure/table/standard, +/obj/item/storage/box/fancy/vials{ + pixel_x = -4; + pixel_y = 10 + }, +/obj/item/storage/box/syringes, +/obj/item/storage/box/beakers{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/effect/floor_decal/corner/mauve/full{ + dir = 8 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - XenoBotanical Lab"; + dir = 4 + }, +/obj/machinery/requests_console/north{ + department = "Xenobotany"; + departmentType = 2; + dir = 8; + name = "Xenobotany Requests Console"; + pixel_x = -19; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "eHG" = ( /turf/simulated/floor/tiled/full, /area/hallway/primary/central_one) @@ -10473,15 +10142,6 @@ }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"eJd" = ( -/obj/machinery/alarm/west, -/obj/effect/floor_decal/corner/red/diagonal, -/obj/structure/closet/walllocker/firecloset{ - pixel_x = -32 - }, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled, -/area/maintenance/wing/port) "eJl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -10515,6 +10175,9 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) +"eKe" = ( +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/dissection) "eKj" = ( /obj/machinery/door/airlock/external, /obj/effect/map_effect/marker/airlock{ @@ -10525,6 +10188,27 @@ /obj/effect/map_effect/marker_helper/airlock/exterior, /turf/simulated/floor/plating, /area/engineering/engine_room) +"eKH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/hazardous) +"eKP" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/server) "eMf" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 10 @@ -10618,13 +10302,6 @@ /obj/effect/map_effect/marker_helper/airlock/interior, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) -"eOZ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/structure/ship_weapon_dummy, -/turf/simulated/floor/plating, -/area/horizon/zat) "ePb" = ( /turf/simulated/wall/r_wall, /area/horizon/security/holding_cell_b) @@ -10710,6 +10387,14 @@ /obj/item/storage/box/fancy/crayons/chalkbox, /turf/simulated/floor/tiled, /area/engineering/lobby) +"eQv" = ( +/obj/machinery/door/blast/regular{ + dir = 2; + id = "cannon_external"; + name = "Primary Armament Shielding" + }, +/turf/simulated/floor/plating, +/area/horizon/zat) "eQx" = ( /obj/structure/railing/mapped{ dir = 4 @@ -10744,15 +10429,12 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"eQV" = ( -/obj/structure/platform{ +"eRp" = ( +/obj/effect/floor_decal/corner/mauve/full{ dir = 8 }, -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, /turf/simulated/floor/tiled/white, -/area/rnd/lab) +/area/rnd/chemistry) "eRC" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 1 @@ -10760,12 +10442,6 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) -"eRM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) "eRT" = ( /obj/structure/grille/diagonal{ dir = 1 @@ -10788,13 +10464,15 @@ }, /turf/simulated/floor/lino, /area/horizon/bar) -"eSl" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +"eSn" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/structure/closet/walllocker/emerglocker/west, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/hazardous) +/turf/simulated/floor/tiled, +/area/maintenance/wing/port) "eSU" = ( /obj/structure/platform{ dir = 8 @@ -10806,28 +10484,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/operations/lower/machinist) -"eSX" = ( -/obj/machinery/disposal/deliveryChute, -/obj/machinery/door/window/eastleft{ - dir = 2 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/regular/open{ - dir = 8; - fail_secure = 1; - id = "xenobio_e"; - name = "Cell Containment Blast Door" - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology) "eTf" = ( /obj/structure/ladder/up{ pixel_y = 13 @@ -10835,21 +10491,6 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_two/fore/starboard) -"eTr" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/machinery/light/floor, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/hazardous) -"eTD" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - icon_state = "map_vent_out"; - use_power = 1; - dir = 1 - }, -/turf/simulated/floor/bluegrid/server, -/area/server) "eUa" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -10880,6 +10521,36 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/storage/primary) +"eUi" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"eUj" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/bed/stool/chair/sofa/right/red{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/rnd/hallway) +"eUp" = ( +/obj/random/junk, +/obj/machinery/light/small/emergency, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/research_port) +"eUs" = ( +/obj/structure/ship_weapon_dummy, +/turf/simulated/floor/plating, +/area/horizon/zat) "eUB" = ( /obj/machinery/flasher{ id = "permflash" @@ -10898,6 +10569,19 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/operations/lower/machinist/surgicalbay) +"eUT" = ( +/obj/structure/table/standard, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/capacitor, +/obj/item/stack/cable_coil, +/obj/item/clothing/glasses/science{ + pixel_y = 10 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/lab) "eUX" = ( /obj/structure/cable{ icon_state = "4-8" @@ -10976,6 +10660,21 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/kitchen) +"eWb" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Lab Assistant" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/rnd/conference) "eWf" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/effect/floor_decal/industrial/warning{ @@ -10997,16 +10696,34 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/security/checkpoint2) -"eWt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +"eWv" = ( +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, +/obj/machinery/door/blast/shutters/open{ + id = "exploratory_chem_shutters" + }, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/chemistry) +"eWz" = ( /obj/structure/disposalpipe/segment, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/machinery/chem_master{ + dir = 8 }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/chemistry) +"eWP" = ( +/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/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, -/area/rnd/hallway/secondary) +/area/maintenance/research_port) "eWX" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 5 @@ -11078,15 +10795,6 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/storage/primary) -"eYR" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/light/floor{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) "eZc" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, @@ -11121,6 +10829,14 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/maintenance/wing/port/far) +"eZp" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/lab) "eZG" = ( /obj/effect/floor_decal/corner/dark_green/full{ dir = 4 @@ -11171,6 +10887,14 @@ }, /turf/simulated/floor/tiled, /area/horizon/custodial/auxiliary) +"fan" = ( +/obj/structure/platform, +/obj/structure/table/standard, +/obj/item/device/flashlight/lamp{ + pixel_y = -7 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/lab) "fas" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/atmospherics/binary/pump/high_power{ @@ -11263,6 +10987,15 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/office) +"fcV" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/machinery/light/floor{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/conference) "fdh" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -11404,6 +11137,13 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_two/fore/starboard) +"fer" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 8 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled, +/area/rnd/hallway/secondary) "feu" = ( /obj/machinery/door/airlock/service{ dir = 1; @@ -11426,6 +11166,16 @@ }, /turf/simulated/floor/reinforced, /area/rnd/xenobiology) +"feE" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 7 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/rnd/hallway) "feM" = ( /obj/machinery/door/blast/regular{ dir = 4; @@ -11456,26 +11206,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"feU" = ( -/obj/machinery/door/airlock/glass_research{ - dir = 4; - name = "Research Directors Lobby" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/crew_quarters/heads/hor) "ffe" = ( /obj/structure/bed/stool/chair{ dir = 1 @@ -11500,6 +11230,15 @@ }, /turf/simulated/floor, /area/maintenance/wing/port/far) +"ffP" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/structure/disposaloutlet, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) "ffT" = ( /obj/effect/floor_decal/corner/dark_green, /obj/effect/floor_decal/corner/brown{ @@ -11540,6 +11279,19 @@ /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/carpet/rubber, /area/engineering/engine_monitoring/rust) +"fht" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) +"fhw" = ( +/obj/machinery/camera/motion{ + c_tag = "ZAT Aft Port"; + dir = 8; + network = list("Command","Security") + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) "fhD" = ( /obj/machinery/door/airlock/multi_tile/glass{ dir = 2; @@ -11550,16 +11302,13 @@ }, /turf/simulated/floor/tiled/full, /area/operations/lobby) -"fie" = ( -/obj/structure/coatrack{ - pixel_x = 14 - }, -/obj/machinery/photocopier, -/obj/machinery/camera/network/research{ - c_tag = "Research - Research Director's Office" +"fhG" = ( +/obj/machinery/optable, +/obj/machinery/light{ + dir = 8 }, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/heads/hor) +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/dissection) "fin" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -11572,20 +11321,13 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"fjb" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +"fjc" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/obj/machinery/door/blast/shutters/open{ + id = "RnDShutters"; + dir = 4 }, -/turf/simulated/floor/tiled/white, +/turf/simulated/floor/tiled/dark/full, /area/rnd/lab) "fjg" = ( /obj/effect/floor_decal/corner/brown/full, @@ -11627,12 +11369,6 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/hallway/primary/central_two) -"fjS" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/bluegrid/server, -/area/server) "fjX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, @@ -11659,6 +11395,33 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/bar) +"fkF" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_research{ + dir = 4; + name = "Conference Room"; + req_access = list(47) + }, +/obj/effect/map_effect/door_helper/unres{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/conference) "fkZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 @@ -11723,6 +11486,9 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) +"fmk" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/zat) "fmz" = ( /obj/structure/railing/mapped{ dir = 8 @@ -11732,20 +11498,22 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/stairwell/bridge) -"fmB" = ( -/obj/machinery/chem_master{ - dir = 8 +"fmV" = ( +/obj/structure/table/standard, +/obj/item/stack/material/phoron{ + amount = 15 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/chemistry) -"fmM" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/effect/floor_decal/corner/mauve{ + dir = 9 }, -/obj/structure/ship_weapon_dummy, -/turf/simulated/floor/plating, -/area/horizon/zat) +/obj/machinery/power/apc/west, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/lab) "fnd" = ( /obj/structure/shuttle/engine/heater{ dir = 1 @@ -11754,19 +11522,14 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/maintenance/wing/port/far) -"fni" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +"fnh" = ( +/obj/structure/bed/stool/chair/office/dark, +/obj/effect/floor_decal/corner/mauve/diagonal, /obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/light/floor{ - dir = 4 + icon_state = "2-8" }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) +/turf/simulated/floor/tiled/white, +/area/rnd/lab) "fnn" = ( /turf/simulated/wall, /area/engineering/atmos/storage) @@ -11797,29 +11560,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/hydroponics) -"foa" = ( -/obj/structure/table/standard, -/obj/item/autopsy_scanner{ - pixel_x = -11 - }, -/obj/item/device/mass_spectrometer{ - pixel_x = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/dissection) -"fog" = ( -/obj/machinery/door/airlock/glass_research{ - dir = 4; - name = "Storage and Incineration" - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) "fol" = ( /turf/simulated/wall, /area/chapel/office) @@ -11840,16 +11580,25 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"fpv" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 +"foU" = ( +/obj/item/modular_computer/console/preset/engineering, +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/simulated/floor/reinforced, +/area/horizon/zat) +"fpb" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) "fpQ" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -11891,6 +11640,25 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/primary/central_two) +"fqF" = ( +/obj/effect/floor_decal/corner/black{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) "fqL" = ( /obj/structure/cable{ icon_state = "4-8" @@ -11937,11 +11705,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"fqT" = ( -/obj/structure/table/standard, -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/chemistry) "frl" = ( /obj/effect/floor_decal/industrial/warning{ dir = 10 @@ -11976,25 +11739,6 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/full, /area/hallway/engineering/rust) -"fsC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) "fsL" = ( /obj/machinery/door/airlock/maintenance{ dir = 1; @@ -12022,6 +11766,16 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_two/fore/starboard) +"fti" = ( +/obj/structure/platform_deco{ + dir = 1 + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 4; + name = "Trays to Scrubbers" + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "ftj" = ( /obj/structure/cable{ icon_state = "1-2" @@ -12032,35 +11786,6 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/hallway/engineering/rust) -"ftr" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) -"ftw" = ( -/obj/effect/floor_decal/corner/black{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) "ftz" = ( /obj/machinery/camera/network/prison{ c_tag = "Security - Cell A"; @@ -12103,16 +11828,6 @@ }, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) -"ftV" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 1 - }, -/obj/machinery/power/apc/east, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/foyer) "fud" = ( /obj/effect/floor_decal/corner_wide/yellow{ dir = 9 @@ -12144,12 +11859,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"fuW" = ( -/obj/structure/table/rack, -/obj/item/trap/animal/medium, -/obj/item/trap/animal/medium, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology/foyer) "fuX" = ( /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/ywflowers, @@ -12229,10 +11938,6 @@ "fxK" = ( /turf/simulated/floor/carpet/rubber, /area/operations/lower/machinist) -"fye" = ( -/obj/machinery/light, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/hazardous) "fyi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -12264,10 +11969,17 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/armoury) -"fyS" = ( -/obj/machinery/r_n_d/server/advanced/core, -/turf/simulated/floor/bluegrid/server, -/area/server) +"fyU" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = -19; + pixel_y = 3; + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hor) "fyV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -12325,16 +12037,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/engineering) -"fAt" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) "fAC" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -12356,16 +12058,13 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/office) -"fAD" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 7 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/rnd/hallway) +"fAE" = ( +/obj/structure/table/rack, +/obj/item/storage/toolbox/electrical, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/ladder_mobile, +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) "fAK" = ( /obj/machinery/button/remote/airlock{ dir = 4; @@ -12420,13 +12119,6 @@ }, /turf/simulated/floor/tiled/full, /area/engineering/locker_room) -"fCo" = ( -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/red, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/zat) "fCE" = ( /obj/effect/floor_decal/spline/fancy/wood, /obj/structure/disposalpipe/segment{ @@ -12477,6 +12169,15 @@ }, /turf/simulated/open/airless, /area/horizon/exterior) +"fDA" = ( +/obj/structure/bed/stool/chair/padded/purple{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hor) "fDE" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -12523,12 +12224,43 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled/dark, /area/horizon/hydroponics/garden) +"fEO" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Xenobiologist" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/rnd/conference) "fEQ" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 9 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) +"fFx" = ( +/obj/structure/table/rack, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/maintenance/wing/port/far) +"fGi" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/mauve{ + dir = 1 + }, +/obj/machinery/recharger{ + pixel_x = -7; + pixel_y = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/lab) "fGs" = ( /obj/structure/table/rack, /obj/effect/floor_decal/industrial/outline/grey, @@ -12579,12 +12311,6 @@ }, /turf/simulated/open, /area/horizon/maintenance/deck_two/fore/port) -"fHl" = ( -/obj/structure/table/standard, -/obj/item/storage/slimes, -/obj/machinery/recharger, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) "fHo" = ( /obj/effect/floor_decal/corner/dark_green/full, /obj/machinery/vending/cola, @@ -12605,6 +12331,12 @@ }, /turf/simulated/floor/tiled/white, /area/medical/ors) +"fHr" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) "fHt" = ( /obj/machinery/light/small/emergency{ dir = 1 @@ -12628,9 +12360,24 @@ /obj/structure/railing/mapped, /turf/simulated/floor/tiled/dark, /area/horizon/grauwolf) +"fIa" = ( +/turf/simulated/wall, +/area/rnd/telesci) "fIi" = ( /turf/simulated/floor/tiled/white, /area/operations/lower/machinist/surgicalbay) +"fIC" = ( +/obj/machinery/computer/telescience{ + starting_crystals = 4 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/telesci) "fIE" = ( /obj/structure/railing/mapped{ dir = 4 @@ -12668,22 +12415,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"fJo" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenological) -"fJq" = ( -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/railing/mapped, -/turf/simulated/floor/grass, -/area/rnd/hallway/secondary) "fJv" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/engineering/engine_room/rust) @@ -12736,6 +12467,24 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/deck_two/fore) +"fKk" = ( +/obj/structure/cable/green{ + 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/mauve{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) "fKn" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -12770,23 +12519,14 @@ }, /turf/simulated/floor/tiled, /area/engineering/lobby) -"fLd" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 +"fLi" = ( +/obj/structure/window/reinforced{ + dir = 8 }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "fLm" = ( /obj/structure/cable/green{ icon_state = "0-8" @@ -12906,24 +12646,12 @@ /obj/random/soap, /turf/simulated/floor/tiled/freezer, /area/horizon/security/brig) -"fNW" = ( -/obj/structure/window/shuttle/scc_space_ship/cardinal, -/obj/structure/grille, -/turf/simulated/floor/tiled/dark/full, -/area/crew_quarters/heads/hor) "fOj" = ( /obj/structure/ladder{ pixel_y = 10 }, /turf/simulated/open, /area/horizon/maintenance/deck_two/fore/starboard) -"fOk" = ( -/obj/effect/floor_decal/corner/mauve/full, -/obj/machinery/light/floor{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) "fOn" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/corner/dark_blue{ @@ -12936,12 +12664,6 @@ /obj/effect/floor_decal/corner_wide/lime/diagonal, /turf/simulated/floor/tiled/white, /area/medical/reception) -"fOw" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/heads/hor) "fOI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -12960,6 +12682,23 @@ }, /turf/simulated/floor/lino, /area/horizon/crew_quarters/lounge/bar) +"fPb" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "xenobio_d"; + name = "Cell Containment Blast Doors"; + pixel_x = 21; + req_access = list(47) + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology) "fPk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -12973,15 +12712,6 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/tiled/white, /area/operations/break_room) -"fPN" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hor) "fQa" = ( /obj/machinery/atmospherics/pipe/manifold/visible/cyan{ dir = 8 @@ -13007,6 +12737,17 @@ /obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, /area/engineering/engine_room) +"fQM" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "fQS" = ( /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood, @@ -13064,20 +12805,40 @@ /obj/effect/floor_decal/corner_wide/white, /turf/simulated/floor/tiled/dark/full, /area/hallway/primary/central_one) -"fSq" = ( +"fSj" = ( +/obj/effect/floor_decal/corner/pink/diagonal, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) +"fSm" = ( /obj/effect/floor_decal/corner/mauve{ dir = 5 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenological) +/area/rnd/chemistry) +"fSw" = ( +/obj/effect/floor_decal/corner/mauve/full, +/obj/machinery/camera/network/research{ + c_tag = "Research - Corridor Camera 4"; + dir = 4 + }, +/obj/machinery/light/floor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway/secondary) "fSx" = ( /obj/structure/table/standard, /obj/machinery/photocopier/faxmachine{ @@ -13109,6 +12870,34 @@ "fSK" = ( /turf/simulated/floor/carpet, /area/hallway/primary/central_two) +"fTc" = ( +/obj/machinery/disposal/deliveryChute, +/obj/machinery/door/window/eastleft{ + dir = 2 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular/open{ + dir = 8; + fail_secure = 1; + id = "xenobio_e"; + name = "Cell Containment Blast Door" + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/xenobiology) +"fTd" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/floor/bluegrid/server, +/area/server) "fTW" = ( /obj/structure/bed/stool/chair/sofa/pew/right{ dir = 8 @@ -13118,6 +12907,23 @@ }, /turf/simulated/floor/wood, /area/chapel/main) +"fUc" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/maintenance/aft) "fUj" = ( /obj/structure/grille, /obj/structure/window/shuttle/scc_space_ship, @@ -13129,26 +12935,6 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/horizon/bar) -"fUm" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"fUt" = ( -/obj/machinery/alarm/east, -/obj/effect/floor_decal/spline/fancy/wood/cee{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hor) "fVk" = ( /obj/machinery/seed_extractor, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -13169,6 +12955,21 @@ }, /turf/simulated/floor/tiled, /area/horizon/commissary) +"fVz" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) +"fVL" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/maintenance/research_port) "fVX" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -13225,6 +13026,18 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/rnd/hallway) +"fYq" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "fYC" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -13238,6 +13051,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/full, /area/horizon/stairwell/central) +"fYN" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/carpet/purple, +/area/crew_quarters/heads/hor) "fYW" = ( /obj/machinery/flasher{ id = "permflash"; @@ -13249,6 +13068,16 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/security/brig) +"fZk" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hor) "fZz" = ( /obj/structure/cable{ icon_state = "0-2" @@ -13259,6 +13088,17 @@ }, /turf/simulated/floor/tiled/dark, /area/maintenance/aux_atmospherics/deck_2/starboard) +"fZA" = ( +/obj/effect/floor_decal/corner/pink/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) "fZB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -13303,6 +13143,26 @@ }, /turf/simulated/floor/tiled/dark, /area/engineering/smes/rust) +"fZU" = ( +/obj/effect/floor_decal/corner/white{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/disposal/small/south, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "fZV" = ( /obj/structure/cable{ icon_state = "1-2" @@ -13330,6 +13190,15 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/operations/mail_room) +"gax" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/machinery/light/floor, +/obj/machinery/disposal/small/north, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/lab) "gaA" = ( /obj/structure/closet/secure_closet/guncabinet{ name = "Ammunition (SMGs and Pistols)" @@ -13383,14 +13252,6 @@ }, /turf/simulated/floor/tiled, /area/operations/lobby) -"gbv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/carpet/rubber, -/area/rnd/lab) "gbw" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ @@ -13403,6 +13264,13 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/lobby) +"gby" = ( +/obj/machinery/portable_atmospherics/hydroponics/soil, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/exoplanet/grass, +/area/rnd/xenobiology/xenoflora) "gbJ" = ( /obj/machinery/flasher{ id = "permflash" @@ -13428,6 +13296,13 @@ }, /turf/simulated/floor/tiled, /area/operations/break_room) +"gce" = ( +/obj/structure/platform_deco{ + icon_state = "ledge_deco" + }, +/obj/effect/floor_decal/corner/mauve/diagonal, +/turf/simulated/floor/tiled/white, +/area/rnd/lab) "gci" = ( /obj/structure/cable{ icon_state = "4-8" @@ -13443,40 +13318,21 @@ }, /turf/simulated/floor/tiled/full, /area/hallway/engineering/rust) -"gcV" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8; - name = "Distro to Trays"; - use_power = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"gdl" = ( -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"gdo" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 1 - }, -/obj/machinery/button/remote/airlock/screamer{ - channel = "Science"; - dir = 1; - id = "server_door_lock"; - message = "The Server Room Airlock's ID lock toggle has been used."; - name = "Server Room Control"; - pixel_y = 32; - req_access = list(47); - specialfunctions = 2 +"gcS" = ( +/obj/structure/table/standard, +/obj/item/paper_scanner{ + pixel_y = 20 }, -/obj/structure/cable/green{ - icon_state = "2-8" +/obj/item/folder/purple, +/obj/machinery/requests_console/west{ + name = "Circuitry Request Console"; + department = "Circuitry Workshop" }, -/obj/machinery/light/floor{ +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) +/turf/simulated/floor/carpet/rubber, +/area/rnd/lab) "gds" = ( /obj/machinery/light/small/emergency{ dir = 4 @@ -13569,6 +13425,15 @@ }, /turf/simulated/floor/tiled, /area/operations/lobby) +"gfN" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/grass, +/area/rnd/hallway/secondary) "gfX" = ( /obj/structure/table/rack, /obj/machinery/firealarm/west, @@ -13706,10 +13571,41 @@ }, /turf/simulated/floor/tiled/full, /area/hallway/primary/central_two) +"gil" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Server Hall"; + req_access = list(7) + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/rnd/hallway/secondary) "gis" = ( /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/maintenance/security_starboard) +"giv" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/power/apc/east, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway/secondary) "giw" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 5 @@ -13751,13 +13647,6 @@ /obj/structure/railing/mapped, /turf/simulated/open, /area/operations/office) -"giX" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) "gjl" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 @@ -13768,14 +13657,6 @@ /obj/item/device/toner, /turf/simulated/floor/wood, /area/horizon/library) -"gjm" = ( -/obj/structure/closet/radiation, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/carpet/rubber, -/area/horizon/zat) "gju" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 9 @@ -13792,6 +13673,13 @@ }, /turf/simulated/floor/wood, /area/horizon/bar) +"gjU" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/diagonal, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry) "gkh" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -13815,16 +13703,6 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark/full, /area/security/checkpoint2) -"gkK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/obj/machinery/power/apc/west, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/carpet/rubber, -/area/server) "gkM" = ( /obj/effect/floor_decal/spline/plain, /obj/effect/floor_decal/spline/fancy{ @@ -13885,20 +13763,6 @@ /obj/machinery/firealarm/north, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"gmj" = ( -/obj/machinery/button/switch/crematorium{ - _wifi_id = "xenobio_crema"; - dir = 8; - pixel_x = -20; - pixel_y = 34; - req_access = null - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) "gmo" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging, /obj/structure/lattice, @@ -13929,6 +13793,12 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/hydroponics) +"gmE" = ( +/obj/structure/table/standard, +/obj/item/storage/slimes, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology) "gmG" = ( /obj/structure/railing/mapped{ dir = 1 @@ -13971,10 +13841,46 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/office) +"gnA" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/telesci) "gnD" = ( /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, /area/medical/exam) +"goc" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway/secondary) "gos" = ( /obj/effect/floor_decal/corner/dark_green/full{ dir = 4 @@ -13989,22 +13895,51 @@ /obj/item/device/radio/intercom/east, /turf/simulated/floor/tiled, /area/horizon/stairwell/central) -"goW" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"goC" = ( +/obj/machinery/button/remote/blast_door{ + id = "cannon_view"; + name = "Viewing Blast Doors"; + pixel_x = 7; + pixel_y = -23; + req_one_access = list(19,11,24) }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/structure/table/standard, +/obj/item/device/binoculars, +/obj/item/device/binoculars/high_power{ + pixel_y = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/light/small, +/obj/structure/window/reinforced{ + dir = 8 }, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_one_access = list(12,26,29,31,48,67) +/obj/machinery/light{ + dir = 8 }, -/turf/simulated/floor/tiled/full, -/area/maintenance/wing/starboard) +/turf/simulated/floor/reinforced, +/area/horizon/zat) +"goQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/maintenance/wing/port) +"gps" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway/secondary) "gqd" = ( /obj/effect/floor_decal/corner_wide/blue/full, /obj/structure/table/reinforced/steel, @@ -14033,12 +13968,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/storage/secure) -"gqi" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/heads/hor) "gqo" = ( /obj/effect/floor_decal/corner/yellow{ dir = 5 @@ -14066,6 +13995,23 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) +"gqz" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/lab) "gqI" = ( /obj/machinery/vending/hydronutrients, /obj/effect/floor_decal/corner/dark_blue{ @@ -14139,15 +14085,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark/full, /area/horizon/hydroponics) -"gso" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/floor_decal/corner/pink/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) "gst" = ( /obj/structure/cable{ icon_state = "1-2" @@ -14163,6 +14100,14 @@ "gsz" = ( /turf/simulated/wall/r_wall, /area/engineering/engine_waste) +"gsQ" = ( +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, +/obj/machinery/door/blast/shutters/open{ + id = "RnDShutters"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/lab) "gsR" = ( /obj/structure/table/standard, /obj/item/reagent_containers/glass/beaker/large, @@ -14196,10 +14141,6 @@ /obj/structure/window/shuttle/scc_space_ship, /turf/simulated/floor/reinforced, /area/horizon/crew_quarters/lounge/bar) -"gtb" = ( -/obj/structure/bed/stool/chair/office/dark, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) "gtk" = ( /obj/machinery/door/airlock/glass_security{ dir = 1; @@ -14235,15 +14176,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/stairwell/central) -"gub" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hor) "gud" = ( /obj/effect/landmark/entry_point/fore{ name = "fore, brig communal" @@ -14331,6 +14263,15 @@ }, /turf/simulated/open, /area/operations/office) +"gvE" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/rnd/hallway/secondary) "gvG" = ( /obj/effect/floor_decal/industrial/loading/yellow{ dir = 1 @@ -14346,12 +14287,28 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_room/rust) +"gvY" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/structure/window/reinforced, +/obj/machinery/door/window/eastright, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/horizon/zat) "gwe" = ( /obj/structure/bed/stool/chair{ dir = 4 }, /turf/simulated/floor/tiled, /area/operations/break_room) +"gwm" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) "gwv" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -14398,19 +14355,6 @@ }, /turf/simulated/floor/tiled/dark, /area/engineering/engine_waste) -"gwR" = ( -/obj/structure/table/standard, -/obj/machinery/reagentgrinder{ - pixel_y = 11 - }, -/obj/item/stack/material/phoron{ - amount = 15 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/chemistry) "gwZ" = ( /obj/structure/table/standard, /obj/structure/railing/mapped{ @@ -14419,25 +14363,10 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/maintenance/wing/starboard/far) -"gyb" = ( -/obj/effect/floor_decal/corner/black{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) +"gxa" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/crew_quarters/heads/hor) "gyn" = ( /obj/effect/floor_decal/spline/plain/corner{ dir = 8 @@ -14450,6 +14379,17 @@ }, /turf/simulated/floor/tiled/dark/full, /area/hallway/primary/central_one) +"gyC" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/alarm/east{ + req_one_access = list(24,11,55) + }, +/turf/simulated/floor/plating, +/area/maintenance/research_port) "gyH" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 @@ -14500,6 +14440,10 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) +"gzU" = ( +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/telesci) "gzX" = ( /obj/effect/floor_decal/corner_wide/yellow{ dir = 10 @@ -14509,14 +14453,6 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"gAg" = ( -/obj/machinery/door/window/southleft{ - req_access = list(47); - name = "Secure Storage" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet/rubber, -/area/rnd/lab) "gAs" = ( /obj/machinery/camera/network/reactor{ c_tag = "Engineering - INDRA Monitoring Room"; @@ -14539,15 +14475,6 @@ /obj/machinery/suit_cycler/engineering/prepared/atmos, /turf/simulated/floor/tiled/dark/full, /area/engineering/atmos/storage) -"gAJ" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/light/floor{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) "gAN" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 @@ -14652,6 +14579,15 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/wing_port) +"gBT" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/conference) "gCj" = ( /obj/effect/floor_decal/corner/yellow{ dir = 5 @@ -14760,14 +14696,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"gDZ" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign describing some terrible danger beyond these walls. The particular danger being a weapon of extreme power. The wall is probably for the best."; - icon_state = "shock"; - name = "WARNING: RADIOACTIVE HIGH-YIELD ENERGETIC WEAPONS WITHIN" - }, -/turf/simulated/wall/r_wall, -/area/horizon/zat) "gEa" = ( /obj/structure/cable/green{ icon_state = "2-4" @@ -14796,6 +14724,16 @@ }, /turf/simulated/floor/tiled, /area/horizon/hydroponics) +"gEB" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/maintenance/research_port) "gFc" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, /obj/machinery/light{ @@ -14806,6 +14744,15 @@ }, /turf/simulated/floor/grass, /area/horizon/hydroponics/garden) +"gFs" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/structure/platform_stairs{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/lab) "gFx" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_mining{ @@ -14905,6 +14852,10 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/horizon/security/hallway) +"gHk" = ( +/obj/effect/floor_decal/corner/pink/diagonal, +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) "gHn" = ( /obj/structure/cable/green{ icon_state = "1-8" @@ -14922,18 +14873,6 @@ }, /turf/simulated/floor/wood, /area/operations/qm) -"gHu" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) "gHR" = ( /obj/machinery/light{ dir = 4 @@ -14988,12 +14927,6 @@ /obj/structure/reagent_dispensers/cookingoil, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) -"gJz" = ( -/obj/structure/railing/mapped, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/grass, -/area/rnd/hallway) "gJM" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 9 @@ -15022,20 +14955,6 @@ /obj/machinery/alarm/east, /turf/simulated/floor/tiled/dark, /area/maintenance/wing/starboard/far) -"gKn" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) "gKt" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ @@ -15067,16 +14986,16 @@ /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood, /area/horizon/bar) -"gKD" = ( -/obj/structure/bed/stool/chair/office/light, +"gKG" = ( /obj/effect/floor_decal/corner/mauve/full{ - dir = 4 + dir = 1 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 +/obj/machinery/power/apc/east, +/obj/structure/cable/green{ + icon_state = "0-8" }, /turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenological) +/area/rnd/xenobiology/foyer) "gKT" = ( /obj/structure/cable{ icon_state = "1-2" @@ -15101,14 +15020,15 @@ /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/tiled/dark, /area/maintenance/wing/starboard) -"gLA" = ( -/obj/structure/railing/mapped, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/light/small/emergency{ - dir = 1 +"gLH" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) +/obj/machinery/light/floor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "gLL" = ( /obj/machinery/light/small/emergency{ dir = 4 @@ -15277,6 +15197,19 @@ }, /turf/simulated/floor/tiled/white, /area/hallway/medical) +"gQj" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/disposal/small/east, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/rnd/hallway) "gQD" = ( /obj/machinery/smartfridge/drying_rack, /obj/machinery/door/firedoor, @@ -15416,16 +15349,6 @@ }, /turf/simulated/floor/tiled/dark, /area/engineering/smes) -"gTZ" = ( -/obj/machinery/atmospherics/pipe/manifold/visible, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) "gUn" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp/green{ @@ -15447,6 +15370,16 @@ }, /turf/simulated/floor/carpet/red, /area/horizon/bar) +"gUA" = ( +/obj/machinery/door/firedoor/multi_tile{ + dir = 2 + }, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + name = "Research Hallway" + }, +/turf/simulated/floor/tiled/full, +/area/rnd/hallway) "gUB" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/highsecurity{ @@ -15474,15 +15407,6 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/secure_ammunition_storage) -"gUV" = ( -/obj/machinery/constructable_frame{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/lab) "gVl" = ( /obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, /obj/machinery/door/blast/regular/open{ @@ -15495,6 +15419,23 @@ "gVn" = ( /turf/simulated/wall, /area/horizon/stairwell/central) +"gVq" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "xenobio_a"; + name = "Cell Containment Blast Doors"; + pixel_x = -21; + req_access = list(47) + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology) "gVs" = ( /obj/machinery/status_display/supply_display{ pixel_y = 32 @@ -15516,34 +15457,12 @@ /obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, /area/engineering/engine_monitoring) -"gWp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"gWR" = ( -/turf/simulated/wall/r_wall, -/area/horizon/zat) "gWW" = ( /obj/machinery/light{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/operations/lower/machinist/surgicalbay) -"gWZ" = ( -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/grass, -/area/rnd/hallway/secondary) "gXb" = ( /obj/effect/floor_decal/spline/fancy/wood, /obj/machinery/camera/network/service{ @@ -15553,18 +15472,6 @@ /obj/machinery/newscaster/south, /turf/simulated/floor/wood, /area/horizon/library) -"gXs" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark{ - name = "Revenant" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) "gXu" = ( /obj/machinery/atmospherics/omni/filter{ tag_east = 2; @@ -15577,6 +15484,28 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/engineering/engine_waste) +"gXK" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/machinery/shower{ + dir = 8; + pixel_x = 1; + pixel_y = 1 + }, +/obj/machinery/shower{ + dir = 8; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"gYb" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) "gYc" = ( /obj/effect/decal/cleanable/cobweb2, /obj/effect/floor_decal/corner/red/diagonal, @@ -15593,6 +15522,18 @@ /obj/machinery/newscaster/south, /turf/simulated/floor/tiled/dark/full, /area/horizon/hydroponics) +"gYm" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/structure/platform_deco{ + dir = 8 + }, +/obj/structure/platform_deco{ + icon_state = "ledge_deco" + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway/secondary) "gYP" = ( /obj/structure/cable/green{ icon_state = "2-4" @@ -15609,17 +15550,6 @@ /obj/structure/platform_stairs, /turf/simulated/floor/tiled/dark, /area/maintenance/wing/port/far) -"gZw" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/camera/network/research{ - dir = 4; - c_tag = "Xenobio - Cell E"; - network = list("Xeno_Bio") - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) "gZD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -15629,22 +15559,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/grauwolf) -"gZQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/maintenance/research_port) "hal" = ( /obj/effect/floor_decal/corner_wide/yellow/full, /obj/effect/floor_decal/industrial/warning{ @@ -15652,6 +15566,19 @@ }, /turf/simulated/floor/tiled, /area/hallway/engineering) +"hap" = ( +/obj/machinery/door/window/holowindoor, +/obj/machinery/door/window/holowindoor{ + dir = 1 + }, +/obj/machinery/door/blast/regular/open{ + dir = 8; + fail_secure = 1; + id = "xenobio_e"; + name = "Cell Containment Blast Door" + }, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/xenobiology) "hax" = ( /obj/effect/floor_decal/corner_wide/yellow{ dir = 9 @@ -15686,6 +15613,39 @@ /obj/item/reagent_containers/hypospray/autoinjector/inaprovaline, /turf/simulated/floor/tiled, /area/security/checkpoint2) +"hbj" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"hbt" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/structure/sink{ + pixel_y = 28; + pixel_x = -10 + }, +/obj/machinery/button/remote/blast_door{ + desc = "It controls the research shutters."; + id = "exploratory_chem_shutters"; + name = "Exploratory Chemistry Shutters"; + dir = 1; + pixel_y = 37; + pixel_x = 8 + }, +/obj/machinery/button/remote/blast_door{ + desc = "It controls the research shutters."; + id = "science_chem_desk"; + name = "Exploratory Chemistry Desk"; + pixel_x = 8; + dir = 1; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry) "hbG" = ( /obj/effect/floor_decal/corner_wide/yellow{ dir = 5 @@ -15769,6 +15729,15 @@ /obj/item/storage/box/rxglasses, /turf/simulated/floor/tiled/white, /area/medical/main_storage) +"hep" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry) "het" = ( /obj/effect/floor_decal/corner/brown{ dir = 5 @@ -15799,13 +15768,39 @@ }, /turf/simulated/open, /area/hallway/primary/central_one) -"hfw" = ( -/obj/machinery/door/window/northleft, -/obj/structure/window/reinforced{ +"hfv" = ( +/obj/machinery/camera/network/research{ + c_tag = "Research - Research & Development"; + pixel_y = 9; dir = 8 }, -/turf/simulated/floor/carpet/rubber, -/area/horizon/zat) +/obj/structure/table/standard, +/obj/machinery/button/remote/blast_door{ + desc = "It controls the research shutters."; + id = "RnDShutters"; + name = "Research Shutters"; + dir = 6; + pixel_y = -1; + pixel_x = -7 + }, +/obj/machinery/button/remote/blast_door{ + desc = "It controls the research shutters."; + id = "shutters_deck2_rescon"; + name = "Research Conveyor Shutter"; + dir = 6; + pixel_x = -7; + pixel_y = 10 + }, +/obj/machinery/button/remote/blast_door{ + desc = "It controls the research shutters."; + id = "RnDDesk"; + name = "Research Desk Shutters"; + pixel_x = 6; + dir = 6; + pixel_y = -1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/lab) "hfx" = ( /obj/machinery/button/remote/blast_door{ desc = "A remote control-switch for engine core."; @@ -15846,15 +15841,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_two) -"hfQ" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/effect/floor_decal/corner/white{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) "hfR" = ( /obj/machinery/door/blast/shutters/open{ dir = 2; @@ -15864,21 +15850,15 @@ /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, /area/security/checkpoint2) -"hfU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "4-8" +"hfY" = ( +/obj/structure/disposaloutlet{ + dir = 1; + spread = 90; + spread_point = 2; + pixel_y = -18 }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) +/turf/template_noop, +/area/template_noop) "hgK" = ( /obj/machinery/door/airlock{ dir = 4; @@ -15890,13 +15870,6 @@ }, /turf/simulated/floor/tiled/full, /area/operations/break_room) -"hhh" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/maintenance/research_port) "hhx" = ( /obj/structure/cable/green{ icon_state = "0-2" @@ -15925,12 +15898,6 @@ }, /turf/simulated/floor/tiled/full, /area/engineering/storage_hard) -"hhT" = ( -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d3-5" - }, -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology/xenoflora) "hhY" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -15959,15 +15926,33 @@ /turf/simulated/floor/tiled/dark, /area/horizon/bar) "hiq" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/table/standard, +/obj/item/paper_scanner{ + pixel_x = -7 + }, +/obj/item/paper_bin, +/obj/item/pen/black, +/obj/effect/floor_decal/corner/mauve/full{ + dir = 4 + }, +/obj/machinery/firealarm/east, +/turf/simulated/floor/tiled/white, +/area/rnd/telesci) +"his" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "4-8" }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/maintenance/wing/port) +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology) "hiz" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -16028,43 +16013,17 @@ }, /turf/simulated/floor/tiled/full, /area/hallway/engineering/rust) -"hjP" = ( -/obj/machinery/power/apc/east, +"hjT" = ( /obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/machinery/camera/network/research{ - c_tag = "Xenology Studies"; - dir = 8; - network = list("Research","Xeno_Bio") - }, -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenological) -"hjU" = ( -/obj/item/device/t_scanner{ - pixel_x = -7; - pixel_y = 7 - }, -/obj/structure/table/standard, -/obj/item/device/analyzer, -/obj/machinery/recharger/wallcharger{ - pixel_x = 32 - }, -/turf/simulated/floor/carpet/rubber, -/area/horizon/zat) -"hkj" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Scientist" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 + icon_state = "1-8" }, -/turf/simulated/floor/wood, -/area/rnd/conference) +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/research_port) "hkk" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 6 @@ -16080,6 +16039,12 @@ /obj/machinery/stasis_bed, /turf/simulated/floor/tiled/white, /area/medical/icu) +"hkt" = ( +/obj/structure/extinguisher_cabinet/east{ + layer = 3.3 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) "hkA" = ( /obj/effect/floor_decal/corner/dark_green/full{ dir = 8 @@ -16097,13 +16062,6 @@ }, /turf/simulated/floor/plating, /area/maintenance/wing/port/far) -"hli" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) "hlu" = ( /obj/machinery/papershredder, /obj/structure/railing/mapped{ @@ -16133,16 +16091,6 @@ }, /turf/simulated/floor/tiled/full, /area/operations/break_room) -"hlQ" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) "hmK" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 6 @@ -16196,6 +16144,13 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/maintenance/wing/starboard/far) +"hnH" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/hydroponics/soil, +/turf/simulated/floor/exoplanet/grass, +/area/rnd/xenobiology/xenoflora) "hnN" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance_hatch{ @@ -16226,6 +16181,14 @@ }, /turf/simulated/open/airless, /area/template_noop) +"hoe" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/rubber, +/area/server) "hoi" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/lattice/catwalk/indoor/grate, @@ -16240,13 +16203,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/engineering/lobby) -"hoL" = ( -/obj/machinery/door/window/southleft, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) "hoZ" = ( /obj/machinery/embedded_controller/radio/airlock/docking_port{ frequency = 1380; @@ -16317,6 +16273,18 @@ }, /turf/simulated/floor/carpet/red, /area/horizon/library) +"hpQ" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/eastright, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/horizon/zat) "hpX" = ( /obj/structure/disposalpipe/segment, /obj/machinery/hologram/holopad, @@ -16341,12 +16309,20 @@ }, /turf/simulated/wall/r_wall, /area/horizon/security/brig) -"hqz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 +"hqi" = ( +/obj/structure/bookcase, +/obj/item/book/manual/wiki/ntsl2, +/obj/item/book/manual/wiki/station_procedure, +/obj/item/book/manual/research_and_development, +/obj/item/book/manual/ka_custom, +/obj/item/book/manual/excavation, +/obj/item/book/manual/anomaly_testing, +/obj/item/book/manual/anomaly_spectroscopy, +/obj/machinery/light{ + dir = 4 }, -/turf/simulated/floor/carpet/rubber, -/area/rnd/lab) +/turf/simulated/floor/wood, +/area/rnd/hallway/secondary) "hqC" = ( /obj/structure/table/rack, /obj/random/loot, @@ -16362,13 +16338,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/bar) -"hqV" = ( -/obj/structure/platform_deco{ - icon_state = "ledge_deco" - }, -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) "hrf" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -16417,6 +16386,13 @@ }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) +"hrN" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/structure/ship_weapon_dummy, +/turf/simulated/floor/plating, +/area/horizon/zat) "hrP" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -16476,14 +16452,6 @@ }, /turf/simulated/open/airless, /area/horizon/exterior) -"hsJ" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/structure/table/standard, -/obj/item/flora/pottedplant_small, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) "htd" = ( /obj/machinery/light{ dir = 8 @@ -16509,13 +16477,6 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/medical/psych) -"htB" = ( -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, -/obj/machinery/door/blast/shutters/open{ - id = "RnDShutters" - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/conference) "hui" = ( /obj/effect/floor_decal/corner_wide/yellow/full, /turf/simulated/floor/tiled, @@ -16523,6 +16484,10 @@ "huP" = ( /turf/simulated/floor/tiled, /area/horizon/security/brig) +"hva" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/bluegrid/server, +/area/server) "hvf" = ( /obj/machinery/camera/network/reactor{ c_tag = "Engineering - INDRA Room 3" @@ -16554,12 +16519,6 @@ }, /turf/simulated/floor/tiled, /area/operations/office) -"hvE" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) "hvH" = ( /obj/effect/floor_decal/corner/brown{ dir = 9 @@ -16575,16 +16534,6 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_two/fore/starboard) -"hvO" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/power/apc/south, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) "hvU" = ( /obj/machinery/atmospherics/pipe/zpipe/down/black{ dir = 1 @@ -16635,29 +16584,21 @@ }, /turf/simulated/floor/tiled/full, /area/engineering/storage_hard) -"hxv" = ( +"hyg" = ( +/obj/effect/floor_decal/corner/pink/diagonal, /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 + icon_state = "1-2" }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/light/small/emergency{ - dir = 1 +/obj/structure/window/reinforced{ + dir = 8 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port) -"hxW" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 +/obj/machinery/light{ + dir = 8 }, -/obj/machinery/light/floor, -/turf/simulated/floor/tiled, -/area/rnd/hallway) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) "hym" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -16669,6 +16610,14 @@ }, /turf/simulated/floor/tiled, /area/operations/office) +"hyr" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "hzC" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -16684,18 +16633,25 @@ }, /turf/simulated/floor/wood, /area/horizon/security/head_of_security) -"hzJ" = ( -/obj/machinery/computer/telescience{ - starting_crystals = 4 - }, +"hzF" = ( /obj/effect/floor_decal/corner/mauve{ - dir = 10 + dir = 6 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 +/obj/effect/floor_decal/corner/mauve{ + dir = 6 }, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, -/area/rnd/telesci) +/area/rnd/conference) +"hzU" = ( +/obj/machinery/door/window/southright{ + req_access = list(47); + name = "Secure Storage" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/rubber, +/area/rnd/lab) "hzY" = ( /obj/structure/disposalpipe/trunk{ dir = 4 @@ -16796,6 +16752,9 @@ }, /turf/simulated/floor/tiled/full, /area/hallway/primary/central_two) +"hBM" = ( +/turf/simulated/floor/carpet/rubber, +/area/rnd/xenobiology/dissection) "hBN" = ( /obj/structure/lattice/catwalk/indoor, /turf/simulated/floor/reinforced/airless, @@ -16903,10 +16862,6 @@ }, /turf/simulated/floor/tiled, /area/operations/lower/machinist) -"hDC" = ( -/obj/structure/bed/stool/chair/office/dark, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/heads/hor) "hDE" = ( /obj/effect/floor_decal/industrial/warning{ dir = 5 @@ -16933,6 +16888,28 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/full, /area/hallway/primary/central_two) +"hEx" = ( +/obj/machinery/disposal/deliveryChute, +/obj/machinery/door/window/eastleft{ + dir = 2 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular/open{ + fail_secure = 1; + id = "xenobio_f"; + name = "Cell Containment Blast Door"; + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/xenobiology) "hEz" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 10 @@ -17049,6 +17026,10 @@ /obj/structure/railing/mapped, /turf/simulated/open, /area/operations/office) +"hGx" = ( +/obj/structure/bed/stool/chair/office/dark, +/turf/simulated/floor/tiled/white, +/area/rnd/telesci) "hGC" = ( /obj/effect/floor_decal/corner/dark_green/full{ dir = 8 @@ -17072,6 +17053,14 @@ }, /turf/simulated/open, /area/operations/office) +"hGJ" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + icon_state = "map_vent_out"; + use_power = 1; + dir = 1 + }, +/turf/simulated/floor/bluegrid/server, +/area/server) "hGK" = ( /obj/machinery/atmospherics/portables_connector{ dir = 8 @@ -17080,15 +17069,6 @@ /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/tiled/full, /area/maintenance/wing/starboard) -"hGN" = ( -/obj/item/paper_bin, -/obj/item/pen/black, -/obj/structure/table/standard, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenological) "hGX" = ( /obj/machinery/atmospherics/pipe/tank/air{ dir = 4 @@ -17096,13 +17076,6 @@ /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/tiled/dark, /area/maintenance/aux_atmospherics/deck_2/starboard) -"hHv" = ( -/obj/machinery/light/floor{ - dir = 1 - }, -/obj/structure/platform/ledge, -/turf/simulated/floor/carpet/rubber, -/area/rnd/telesci) "hHB" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -17135,6 +17108,18 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/horizon/security/hallway) +"hHM" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 8 + }, +/obj/machinery/vending/coffee, +/obj/machinery/camera/network/research{ + c_tag = "Research - Conference Room"; + pixel_y = 9; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/conference) "hHV" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -17145,10 +17130,25 @@ /obj/machinery/newscaster/south, /turf/simulated/floor/tiled, /area/engineering/storage_eva) -"hIi" = ( -/obj/structure/bed/stool/bar/padded, -/turf/simulated/floor/carpet/rubber, -/area/rnd/lab) +"hIj" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway/secondary) "hIq" = ( /obj/structure/platform_stairs/full/east_west_cap, /turf/simulated/floor/tiled/dark, @@ -17184,15 +17184,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/armoury) -"hIL" = ( -/obj/structure/bed/stool/chair/padded/purple{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hor) "hJb" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -17212,30 +17203,6 @@ }, /turf/simulated/floor/tiled, /area/storage/primary) -"hJM" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/closet/crate, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"hJY" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/maintenance{ - dir = 1; - name = "Aft Research Hallway Maintenance"; - req_one_access = list(12,47) - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark/full, -/area/maintenance/wing/port) "hKh" = ( /obj/structure/lattice, /obj/structure/railing/mapped, @@ -17244,6 +17211,21 @@ }, /turf/simulated/open, /area/operations/office) +"hKB" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/structure/table/standard, +/obj/item/flora/pottedplant_small, +/turf/simulated/floor/tiled/white, +/area/rnd/lab) +"hLg" = ( +/obj/item/trap/animal, +/obj/structure/table/rack, +/obj/item/trap/animal, +/obj/item/trap/animal, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/xenobiology/foyer) "hLh" = ( /obj/structure/closet/secure_closet/guncabinet{ name = "Weaponry (Shotguns)" @@ -17256,25 +17238,6 @@ /obj/effect/floor_decal/industrial/outline/security, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/armoury) -"hLt" = ( -/obj/machinery/door/airlock/glass_research{ - dir = 4; - name = "Hazardous Containment"; - req_access = list(47); - id_tag = "hazardous_access"; - locked = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/hazardous) "hLJ" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/effect/floor_decal/spline/plain/corner{ @@ -17330,6 +17293,15 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) +"hMp" = ( +/obj/machinery/door/airlock/glass_research{ + dir = 1; + name = "Containment"; + req_access = list(55) + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/hazardous) "hMt" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -17345,15 +17317,6 @@ "hMX" = ( /turf/simulated/floor/tiled/full, /area/horizon/hallway/deck_two/fore) -"hNj" = ( -/obj/structure/extinguisher_cabinet/east{ - layer = 3.3 - }, -/obj/structure/table/standard, -/obj/item/device/flashlight/lamp, -/obj/machinery/firealarm/north, -/turf/simulated/floor/reinforced, -/area/horizon/zat) "hNC" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -17369,23 +17332,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"hOS" = ( -/obj/structure/table/standard, -/obj/item/storage/box/fancy/tray{ - name = "dissection tray" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/dissection) "hOU" = ( /turf/simulated/wall, /area/medical/psych) -"hPo" = ( -/obj/effect/floor_decal/corner/mauve, -/obj/structure/platform_deco{ - icon_state = "ledge_deco" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) "hPx" = ( /obj/structure/bed/stool/chair{ dir = 8 @@ -17426,10 +17375,6 @@ /obj/effect/floor_decal/sign/gtr, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) -"hQj" = ( -/obj/structure/ship_weapon_dummy, -/turf/simulated/floor/plating, -/area/horizon/zat) "hQE" = ( /obj/structure/railing/mapped{ dir = 4 @@ -17446,18 +17391,26 @@ }, /turf/simulated/floor/wood, /area/horizon/crew_quarters/lounge/bar) -"hRl" = ( -/obj/structure/extinguisher_cabinet/east{ - layer = 3.3 +"hRK" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/corner/pink/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/camera/motion{ + c_tag = "ZAT Fore Starboard"; + dir = 4; + network = list("Command","Security") }, /turf/simulated/floor/tiled/dark, /area/horizon/zat) -"hSb" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 +"hRY" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) "hSp" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/honey_extractor{ @@ -17478,6 +17431,11 @@ }, /turf/simulated/floor/tiled, /area/hallway/engineering/rust) +"hSG" = ( +/obj/structure/railing/mapped, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/maintenance/research_port) "hST" = ( /obj/structure/table/wood, /obj/item/storage/box/beanbags, @@ -17492,19 +17450,16 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/tiled/dark, /area/horizon/bar/backroom) +"hSU" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/carpet/rubber, +/area/rnd/lab) "hTt" = ( /obj/effect/floor_decal/corner/dark_green/full{ dir = 4 }, /turf/simulated/floor/tiled, /area/horizon/hydroponics/garden) -"hTE" = ( -/obj/machinery/disposal/small/west, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/lab) "hTT" = ( /obj/machinery/hologram/holopad, /obj/structure/disposalpipe/junction{ @@ -17525,11 +17480,6 @@ /obj/structure/trash_pile, /turf/simulated/floor/plating, /area/maintenance/wing/port/far) -"hUc" = ( -/obj/machinery/porta_turret/sniper, -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/plating, -/area/horizon/zat) "hUe" = ( /obj/structure/bed/stool/chair/padded/black{ dir = 1 @@ -17575,33 +17525,12 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_two/fore/starboard) -"hUU" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/glass_research{ - dir = 4; - name = "Conference Room"; - req_access = list(47) - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"hUO" = ( /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, -/area/rnd/conference) +/area/horizon/zat) "hUW" = ( /obj/machinery/door/airlock/glass_service{ dir = 4; @@ -17623,6 +17552,21 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/kitchen) +"hVh" = ( +/obj/structure/table/standard, +/obj/machinery/requests_console/east{ + name = "Research Director RC"; + department = "Research Director's Desk"; + announcementConsole = 1 + }, +/obj/machinery/button/switch/windowtint{ + pixel_x = -6; + dir = 5; + pixel_y = 7; + id = "rdoffice" + }, +/turf/simulated/floor/carpet/purple, +/area/crew_quarters/heads/hor) "hVj" = ( /obj/effect/landmark{ name = "carpspawn" @@ -17659,21 +17603,6 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"hXn" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/button/remote/airlock{ - id = "hazardous_access"; - name = "Hazardous Containment"; - req_access = list(55); - specialfunctions = 4; - dir = 8; - pixel_x = -23 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/foyer) "hXN" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, @@ -17694,6 +17623,10 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/grauwolf) +"hYk" = ( +/obj/structure/bed/stool/chair/office/dark, +/turf/simulated/floor/carpet/purple, +/area/crew_quarters/heads/hor) "hYo" = ( /obj/structure/table/stone/marble, /obj/item/reagent_containers/food/condiment/sugar{ @@ -17717,18 +17650,10 @@ }, /turf/simulated/floor/wood, /area/horizon/library) -"hYF" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/camera/network/research{ - c_tag = "Research - Xenobio Fore"; - network = list("Research","Xeno_Bio") - }, -/obj/machinery/smartfridge/secure/extract{ - density = 0; - pixel_y = 17 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) +"hZW" = ( +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/hazardous) "iap" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -17805,18 +17730,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/commissary) -"ibS" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/rnd/hallway) "ica" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 9 @@ -17860,13 +17773,6 @@ }, /turf/simulated/floor/reinforced, /area/horizon/grauwolf) -"idx" = ( -/obj/structure/bed/stool/chair/padded/purple, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hor) "idy" = ( /obj/structure/railing/mapped{ dir = 1 @@ -18036,13 +17942,9 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/security/checkpoint2) -"ieZ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light/floor{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) +"ifm" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/crew_quarters/heads/hor) "ifK" = ( /obj/effect/floor_decal/industrial/warning{ dir = 5 @@ -18115,10 +18017,6 @@ /obj/structure/railing/mapped, /turf/simulated/floor/tiled, /area/operations/lower/machinist/surgicalbay) -"iiR" = ( -/obj/machinery/door/window/eastright, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/telesci) "ijb" = ( /obj/structure/table/wood, /obj/item/reagent_containers/food/drinks/cans/root_beer{ @@ -18178,6 +18076,16 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/warden) +"ijv" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/light/floor, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/hazardous) "ijD" = ( /obj/machinery/button/remote/blast_door{ id = "seconddeckdockint"; @@ -18258,15 +18166,6 @@ /obj/structure/reagent_dispensers/extinguisher, /turf/simulated/floor/tiled/dark/full, /area/engineering/storage_hard) -"ikt" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/structure/closet/walllocker/emerglocker/west, -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/maintenance/wing/port) "iku" = ( /obj/effect/floor_decal/corner/brown/diagonal, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -18331,20 +18230,22 @@ temperature = 253.15 }, /area/horizon/kitchen/freezer) +"ilo" = ( +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, +/obj/machinery/door/blast/regular/open{ + dir = 8; + fail_secure = 1; + id = "hazardous_lockdown"; + name = "Hazardous Containment Lockdown" + }, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/xenobiology/hazardous) "ily" = ( /obj/machinery/atmospherics/pipe/manifold4w/visible/black, /obj/machinery/meter, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/engineering/engine_waste) -"ilE" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Server Hall"; - req_access = list(7) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) "ilT" = ( /obj/machinery/disposal/small/north, /obj/structure/disposalpipe/trunk{ @@ -18355,14 +18256,6 @@ }, /turf/simulated/floor/tiled, /area/engineering/lobby) -"ilY" = ( -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, -/obj/machinery/door/blast/shutters/open{ - id = "RnDShutters"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/lab) "imc" = ( /obj/structure/bed/roller, /obj/effect/floor_decal/industrial/warning/corner{ @@ -18421,9 +18314,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/lobby) -"inl" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/server) "ins" = ( /obj/effect/floor_decal/corner/yellow{ dir = 9 @@ -18451,16 +18341,6 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hallway/engineering/rust) -"inT" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/hazardous) "ioe" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -18485,6 +18365,22 @@ /obj/item/modular_computer/console/preset/engineering, /turf/simulated/floor/tiled/dark/full, /area/engineering/engine_monitoring) +"ioQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/maintenance/wing/port) "ioS" = ( /obj/effect/floor_decal/corner/yellow{ dir = 6 @@ -18522,6 +18418,15 @@ /obj/structure/table/rack/retail_shelf, /turf/simulated/floor/tiled, /area/horizon/commissary) +"ipy" = ( +/obj/structure/platform/ledge{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/heater{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "ipD" = ( /obj/machinery/firealarm/west, /obj/structure/window/reinforced{ @@ -18575,11 +18480,6 @@ /obj/machinery/power/apc/south, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"iqZ" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/atmospherics/portables_connector, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) "irt" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -18651,26 +18551,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"itd" = ( -/obj/machinery/door/airlock/glass_research{ - dir = 4; - id_tag = "xeno_dissection"; - name = "Dissection"; - req_access = list(55); - locked = 1 - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/door/blast/regular/open{ - dir = 2; - fail_secure = 1; - id = "hazardous_lockdown"; - name = "Hazardous Containment Lockdown" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/dissection) "itj" = ( /obj/structure/shuttle/engine/heater{ dir = 1 @@ -18679,6 +18559,11 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/maintenance/wing/starboard/far) +"itS" = ( +/obj/machinery/porta_turret/sniper, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/horizon/zat) "itW" = ( /obj/structure/railing/mapped{ dir = 8 @@ -18689,6 +18574,12 @@ "itX" = ( /turf/simulated/floor/wood, /area/chapel/main) +"iuA" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/telesci) "iuP" = ( /turf/simulated/wall, /area/operations/mail_room) @@ -18723,13 +18614,6 @@ }, /turf/simulated/floor/tiled/full, /area/maintenance/substation/engineering) -"ivP" = ( -/obj/structure/reagent_dispensers/extinguisher, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) "iwd" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/yellow{ @@ -18786,13 +18670,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/engineering/smes/rust) -"iwy" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/structure/ship_weapon_dummy, -/turf/simulated/floor/plating, -/area/horizon/zat) "iwC" = ( /obj/effect/floor_decal/corner/purple/full{ dir = 8 @@ -18820,6 +18697,18 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/horizon/custodial/auxiliary) +"iwW" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Xenobotany Maintenance"; + req_access = list(52) + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/xenobiology/xenoflora) "iwX" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -18861,6 +18750,16 @@ }, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) +"iyA" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/grass, +/area/rnd/hallway/secondary) "iyE" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 @@ -18957,6 +18856,29 @@ }, /turf/simulated/floor/tiled/dark, /area/engineering/engine_waste) +"iBG" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/light/floor{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway/secondary) +"iCo" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/horizon/zat) "iCx" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -18987,6 +18909,23 @@ /obj/machinery/light, /turf/simulated/floor/carpet/rubber, /area/operations/lower/machinist) +"iCT" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "xenobio_c"; + name = "Cell Containment Blast Doors"; + pixel_x = 21; + req_access = list(47) + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology) "iDj" = ( /obj/machinery/alarm/north, /obj/effect/floor_decal/corner/brown{ @@ -19024,13 +18963,6 @@ }, /turf/simulated/floor/plating, /area/maintenance/wing/port) -"iDQ" = ( -/obj/item/paper_bin, -/obj/item/pen/black, -/obj/structure/table/standard, -/obj/machinery/firealarm/east, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenological) "iEd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -19060,15 +18992,6 @@ /obj/effect/floor_decal/corner_wide/yellow/full, /turf/simulated/floor/tiled, /area/hallway/engineering) -"iEk" = ( -/obj/effect/floor_decal/corner/white{ - dir = 5 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) "iEu" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 4 @@ -19078,27 +19001,48 @@ /obj/structure/window/shuttle/scc_space_ship, /turf/simulated/floor/plating, /area/engineering/engine_room) +"iEB" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hor) "iEM" = ( /obj/machinery/computer/slot_machine, /obj/machinery/light, /turf/simulated/floor/lino, /area/horizon/bar) -"iFa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +"iEN" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 }, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/machinery/button/remote/airlock{ + id = "xeno_entrance_int_b"; + name = "Xenobiology External Access Bolts"; + req_access = list(55); + specialfunctions = 4; + dir = 8; + pixel_x = -23 }, -/obj/structure/disposalpipe/junction{ +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology) +"iFa" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/floor_decal/corner/mauve/full, +/obj/machinery/button/remote/airlock{ + id = "xeno_entrance_int_a"; + name = "Xenobiology External Access Bolts"; + pixel_y = 3; + req_access = list(55); + specialfunctions = 4; dir = 8; - icon_state = "pipe-j2" + pixel_x = -22 }, /turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenological) +/area/rnd/xenobiology) "iFw" = ( /obj/item/device/radio/intercom/east, /obj/effect/floor_decal/corner/black{ @@ -19160,33 +19104,6 @@ /obj/structure/stairs/north, /turf/simulated/floor/tiled/dark, /area/horizon/stairwell/bridge) -"iGK" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) -"iGR" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/eastright, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/horizon/zat) "iGU" = ( /obj/effect/floor_decal/corner/brown{ dir = 5 @@ -19207,16 +19124,6 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled/full, /area/hallway/engineering) -"iHc" = ( -/obj/structure/platform/ledge{ - dir = 4 - }, -/obj/machinery/seed_extractor, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) "iHo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -19273,21 +19180,6 @@ /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, /area/medical/gen_treatment) -"iIh" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/horizon/zat) "iIn" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -19353,22 +19245,19 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) +"iJq" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/machinery/chem_master, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "iJv" = ( /obj/structure/platform{ dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/wing/port/far) -"iJB" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) "iJQ" = ( /obj/effect/floor_decal/corner_wide/yellow/full{ dir = 1 @@ -19481,14 +19370,21 @@ /obj/structure/platform, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) -"iMy" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) "iMG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/engineering/storage_eva) +"iNl" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/research_port) +"iNo" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/carpet/rubber, +/area/rnd/lab) "iNu" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -19518,6 +19414,18 @@ /obj/item/device/camera, /turf/simulated/floor/tiled, /area/storage/primary) +"iNO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/camera/network/research{ + dir = 1; + c_tag = "Xenobio - Cell B"; + network = list("Xeno_Bio") + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) "iNS" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/brown/full{ @@ -19551,12 +19459,6 @@ /obj/effect/floor_decal/corner/dark_blue/diagonal, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"iOB" = ( -/obj/effect/landmark/entry_point/port{ - name = "port, leviathan" - }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/horizon/zat) "iOD" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -19610,36 +19512,6 @@ }, /turf/simulated/floor/wood, /area/horizon/crew_quarters/lounge/bar) -"iPk" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/horizon/zat) -"iPx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/rnd/lab) -"iPG" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/machinery/power/apc/east, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"iPL" = ( -/obj/machinery/computer/rdservercontrol, -/turf/simulated/floor/carpet/rubber, -/area/server) "iPP" = ( /obj/random/junk, /turf/simulated/floor/plating, @@ -19676,25 +19548,43 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/armoury) +"iRb" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/light/floor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway/secondary) "iRj" = ( /turf/simulated/wall/r_wall, /area/horizon/kitchen/freezer) +"iRl" = ( +/obj/machinery/door/window/holowindoor{ + dir = 1 + }, +/turf/simulated/floor/exoplanet/grass, +/area/rnd/xenobiology/xenoflora) "iRm" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"iRB" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 5 +"iRq" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 4 }, -/obj/structure/extinguisher_cabinet/north, -/obj/machinery/light/floor{ +/obj/structure/platform{ dir = 1 }, -/turf/simulated/floor/tiled/white, -/area/rnd/conference) +/obj/machinery/light/floor, +/turf/simulated/floor/tiled, +/area/rnd/hallway/secondary) "iRM" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 6 @@ -19715,30 +19605,24 @@ }, /turf/simulated/floor/tiled/white, /area/medical/icu) -"iRU" = ( -/obj/structure/window/reinforced, -/obj/structure/cable/green{ - icon_state = "0-8" +"iSf" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 }, -/obj/effect/floor_decal/industrial/hatch/red, -/obj/machinery/power/apc/critical/east, -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) -"iRY" = ( -/obj/structure/table/wood, -/obj/random/pottedplant_small{ - pixel_x = 3; - pixel_y = -2 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/item/flame/candle{ - pixel_x = 10; - pixel_y = 2 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hor) +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway/secondary) "iSi" = ( /obj/structure/reagent_dispensers/watertank, /obj/effect/floor_decal/industrial/warning{ @@ -19746,18 +19630,24 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_two/fore/starboard) -"iSx" = ( -/turf/simulated/wall/r_wall, -/area/horizon/custodial/disposals) -"iSC" = ( -/obj/structure/bed/stool/chair/office/bridge/generic{ +"iSn" = ( +/obj/structure/table/standard, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 6 + }, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/matter_bin, +/obj/machinery/light{ dir = 8 }, -/obj/machinery/zat_lever{ - pixel_x = 28 +/obj/effect/floor_decal/corner/mauve{ + dir = 10 }, -/turf/simulated/floor/reinforced, -/area/horizon/zat) +/turf/simulated/floor/tiled/white, +/area/rnd/lab) +"iSx" = ( +/turf/simulated/wall/r_wall, +/area/horizon/custodial/disposals) "iSD" = ( /obj/structure/grille, /obj/structure/cable/green, @@ -19773,6 +19663,12 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/horizon/security/hallway) +"iSG" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/structure/cable/green, +/obj/machinery/power/apc/south, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry) "iTm" = ( /obj/structure/bed/stool/chair/office/dark, /obj/effect/landmark/start{ @@ -19783,6 +19679,16 @@ }, /turf/simulated/floor/tiled, /area/storage/primary) +"iUg" = ( +/obj/structure/table/rack, +/obj/structure/window/borosilicate, +/obj/machinery/camera/network/research{ + c_tag = "Research - Research & Development Aft"; + pixel_y = 9; + dir = 8 + }, +/turf/simulated/floor/carpet/rubber, +/area/rnd/lab) "iUr" = ( /obj/structure/closet/crate, /obj/random/loot, @@ -19803,9 +19709,18 @@ "iVp" = ( /turf/simulated/open, /area/turbolift/primary/deck_2) -"iVD" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 +"iVJ" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/light/floor{ + dir = 4 }, /turf/simulated/floor/tiled, /area/rnd/hallway/secondary) @@ -19934,6 +19849,52 @@ }, /turf/simulated/floor/tiled, /area/engineering/locker_room) +"iXc" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/foyer) +"iXw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/foyer) +"iXI" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/platform, +/obj/machinery/computer/operating{ + name = "Xenobiology Operating Computer"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/dissection) +"iYf" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/structure/table/standard, +/obj/machinery/power/apc/north, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/button/remote/blast_door{ + dir = 10; + id = "hazardous_lockdown"; + name = "Area lockdown"; + req_access = list(47); + pixel_y = 5 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/hazardous) "iYn" = ( /obj/effect/floor_decal/industrial/warning, /obj/effect/floor_decal/spline/plain, @@ -19942,33 +19903,39 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) +"iYo" = ( +/obj/machinery/door/window/eastright, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/telesci) "iYu" = ( /obj/effect/floor_decal/spline/fancy/wood/corner{ dir = 4 }, /turf/simulated/floor/wood, /area/horizon/crew_quarters/lounge/bar) +"iYw" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/pottedplant/mysterious, +/turf/simulated/floor/grass, +/area/rnd/hallway/secondary) "iYH" = ( /obj/structure/railing/mapped, /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) -"iYY" = ( -/obj/structure/table/standard, -/obj/item/storage/box/syringes{ - pixel_y = 2; - pixel_x = -8 - }, -/obj/item/storage/box/beakers{ - pixel_x = 5; - pixel_y = 5 +"iYV" = ( +/obj/effect/floor_decal/corner/pink/diagonal, +/obj/machinery/light{ + dir = 8 }, -/obj/machinery/atmospherics/unary/vent_pump/on{ +/obj/structure/window/reinforced{ dir = 8 }, -/obj/structure/extinguisher_cabinet/east, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/chemistry) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) "iZg" = ( /obj/structure/cable{ icon_state = "1-2" @@ -20004,12 +19971,6 @@ /obj/structure/ship_weapon_dummy, /turf/simulated/open/airless, /area/template_noop) -"jaA" = ( -/obj/effect/floor_decal/corner/pink/diagonal, -/obj/machinery/light, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) "jaD" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -20075,6 +20036,17 @@ }, /turf/simulated/floor/tiled, /area/engineering/lobby) +"jbZ" = ( +/obj/effect/floor_decal/corner/pink/diagonal, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) "jcc" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -20116,13 +20088,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"jcQ" = ( -/obj/structure/table/standard, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenological) "jdo" = ( /obj/structure/railing/mapped{ dir = 8 @@ -20140,27 +20105,19 @@ /obj/machinery/alarm/west, /turf/simulated/floor/tiled, /area/operations/lower/machinist) -"jdI" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/door/blast/regular/open{ - dir = 2; - fail_secure = 1; - id = "xenobio_d"; - name = "Cell Containment Blast Door" - }, -/obj/machinery/door/window/holowindoor{ - dir = 8; - req_access = list(55) - }, -/obj/machinery/door/window/holowindoor{ - dir = 4; - req_access = list(55) - }, -/obj/machinery/door/firedoor{ - dir = 4 +"jeb" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/spline/plain{ + dir = 5 }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology) +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/r_n_d/protolathe, +/turf/simulated/floor/carpet/rubber, +/area/rnd/lab) +"jeo" = ( +/obj/machinery/portable_atmospherics/hydroponics/soil, +/turf/simulated/floor/exoplanet/grass, +/area/rnd/xenobiology/xenoflora) "jeP" = ( /obj/effect/floor_decal/corner_wide/green{ dir = 6 @@ -20208,16 +20165,6 @@ }, /turf/simulated/floor/tiled/full, /area/engineering/engine_waste) -"jfr" = ( -/obj/structure/table/standard, -/obj/item/folder/envelope/zat, -/obj/machinery/camera/motion{ - c_tag = "ZAT Fore Port"; - dir = 8; - network = list("Command","Security") - }, -/turf/simulated/floor/reinforced, -/area/horizon/zat) "jfu" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 5 @@ -20235,34 +20182,6 @@ /obj/item/stack/medical/bruise_pack, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"jfG" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/structure/sign/science{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/light/floor{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) "jfH" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/maintenance/security_starboard) @@ -20270,6 +20189,17 @@ /obj/structure/trash_pile, /turf/simulated/floor/plating, /area/maintenance/wing/port/far) +"jgj" = ( +/obj/effect/floor_decal/industrial/hatch/red, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/camera/motion{ + c_tag = "ZAT Access Fore"; + network = list("Command","Security") + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/zat) "jgm" = ( /obj/machinery/door/window/eastright, /obj/structure/platform_stairs/full/east_west_cap, @@ -20297,6 +20227,15 @@ }, /turf/simulated/floor/tiled/dark, /area/engineering/engine_waste) +"jhi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology) "jhL" = ( /obj/machinery/sleeper, /obj/machinery/camera/network/medbay{ @@ -20307,13 +20246,6 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/gen_treatment) -"jhN" = ( -/obj/structure/platform_stairs, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/rnd/lab) "jhZ" = ( /obj/machinery/firealarm/east, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -20340,18 +20272,6 @@ /obj/effect/floor_decal/corner/mauve/diagonal, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"jiZ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) "jjr" = ( /obj/effect/floor_decal/corner/dark_green/full{ dir = 1 @@ -20430,6 +20350,21 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark/full, /area/maintenance/wing/port) +"jko" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/machinery/conveyor_switch/oneway{ + desc = "A conveyor control switch. It appears to only go in one direction. Controls the components conveyor belt."; + id = "rnd"; + pixel_x = -13; + pixel_y = 21 + }, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/lab) "jkB" = ( /obj/effect/landmark{ name = "Revenant" @@ -20444,6 +20379,15 @@ }, /turf/simulated/floor/tiled/dark, /area/maintenance/wing/port/far) +"jkO" = ( +/obj/machinery/requests_console/east{ + department = "Research - Xenological Studies"; + name = "Xenological Studies Request Console" + }, +/obj/structure/closet/crate, +/obj/structure/table/standard, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenological) "jlp" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/machinery/light{ @@ -20520,15 +20464,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"jmO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) "jmW" = ( /obj/structure/table/reinforced, /obj/machinery/door/blast/shutters/open{ @@ -20543,25 +20478,6 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/dark/full, /area/engineering/lobby) -"jnf" = ( -/obj/machinery/door/airlock/glass_research{ - dir = 1; - name = "Xenobotany Lab"; - req_access = list(52) - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology/xenoflora) "jno" = ( /obj/effect/floor_decal/corner/dark_blue/full{ dir = 4 @@ -20575,6 +20491,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/horizon/security/holding_cell_a) +"jnF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet/rubber, +/area/rnd/lab) "jnO" = ( /obj/effect/floor_decal/corner_wide/green{ dir = 6 @@ -20640,17 +20564,6 @@ }, /turf/simulated/floor/plating, /area/maintenance/wing/starboard/far) -"jpe" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/r_n_d/circuit_imprinter, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/carpet/rubber, -/area/rnd/lab) "jpf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/spline/fancy/wood{ @@ -20684,12 +20597,6 @@ }, /turf/simulated/floor/wood, /area/chapel/office) -"jpi" = ( -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d3-5" - }, -/turf/simulated/wall/r_wall, -/area/maintenance/wing/port/far) "jpB" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/effect/floor_decal/corner/dark_blue{ @@ -20707,28 +20614,12 @@ }, /turf/simulated/floor/tiled/dark, /area/maintenance/wing/starboard/far) -"jpO" = ( -/mob/living/carbon/slime, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) "jpR" = ( /obj/structure/bed/stool/chair/padded/black{ dir = 8 }, /turf/simulated/floor/carpet, /area/horizon/security/head_of_security) -"jqh" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) "jqw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -20744,31 +20635,19 @@ }, /turf/simulated/floor/tiled/white, /area/medical/exam) -"jqz" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped, -/obj/structure/bed/stool/chair/sofa/right/purple{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/rnd/hallway/secondary) -"jqG" = ( +"jqD" = ( /obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 + icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 + dir = 5 }, -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/lattice/catwalk/indoor/grate/damaged, +/turf/simulated/floor/plating, +/area/maintenance/research_port) "jqQ" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 5 @@ -20797,6 +20676,18 @@ }, /turf/simulated/floor/tiled/dark/full, /area/engineering/engine_room/rust) +"jri" = ( +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/obj/structure/grille, +/turf/simulated/floor/tiled/dark/full, +/area/crew_quarters/heads/hor) +"jrr" = ( +/obj/machinery/atmospherics/unary/freezer{ + dir = 4; + icon_state = "freezer" + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "jrz" = ( /obj/effect/floor_decal/corner/dark_blue/full, /obj/machinery/alarm/west, @@ -20825,13 +20716,6 @@ }, /turf/simulated/open, /area/hallway/primary/central_one) -"jrV" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) "jsq" = ( /obj/machinery/atmospherics/pipe/manifold/visible/green{ dir = 8 @@ -20843,6 +20727,18 @@ /obj/structure/railing/mapped, /turf/simulated/open, /area/hallway/engineering) +"jsI" = ( +/obj/structure/closet/secure_closet/guncabinet/sci, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/rnd/lab) +"jsR" = ( +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/red, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/zat) "jsS" = ( /obj/machinery/recharger{ pixel_y = 1 @@ -20942,21 +20838,6 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/wing/starboard/far) -"jup" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) "juH" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -21022,31 +20903,29 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled/white, /area/medical/pharmacy) -"jwQ" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ +"jwl" = ( +/obj/machinery/button/switch/crematorium{ + _wifi_id = "xenobio_crema"; dir = 8; - icon_state = "pipe-c" + pixel_x = -20; + pixel_y = 34; + req_access = null }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +/obj/effect/floor_decal/corner/mauve{ + dir = 9 }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"jxt" = ( -/obj/machinery/light{ - dir = 4 +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"jxs" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-33" }, -/obj/effect/floor_decal/industrial/warning{ +/obj/effect/floor_decal/spline/fancy/wood{ dir = 6 }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) +/turf/simulated/floor/wood, +/area/rnd/hallway/secondary) "jyd" = ( /obj/machinery/atmospherics/portables_connector{ dir = 8 @@ -21054,20 +20933,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, /area/engineering/engine_room) -"jzf" = ( -/obj/structure/table/standard, -/obj/item/gun/projectile/shotgun/foldable/cameragun, -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/foyer) "jzq" = ( /obj/structure/table/standard, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -21166,6 +21031,12 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) +"jBq" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/structure/reagent_dispensers/extinguisher, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled, +/area/maintenance/wing/port) "jBu" = ( /obj/machinery/light{ dir = 8 @@ -21193,6 +21064,24 @@ }, /turf/simulated/floor/tiled/white, /area/medical/main_storage) +"jCe" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/disposal/small/south, +/obj/structure/disposalpipe/trunk, +/obj/structure/sign/vacuum{ + icon_state = "deathsposal"; + pixel_y = 35 + }, +/obj/machinery/light/floor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) "jCt" = ( /obj/structure/table/stone/marble, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -21220,10 +21109,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/custodial/auxiliary) -"jCO" = ( -/obj/machinery/computer/message_monitor, -/turf/simulated/floor/carpet/rubber, -/area/server) "jCY" = ( /obj/structure/lattice, /turf/simulated/open/airless, @@ -21287,6 +21172,16 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) +"jDU" = ( +/obj/structure/platform, +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = -7 + }, +/obj/machinery/papershredder{ + pixel_x = 7 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/lab) "jDZ" = ( /obj/effect/floor_decal/spline/fancy/wood, /obj/machinery/light, @@ -21307,14 +21202,6 @@ }, /turf/simulated/floor/wood, /area/horizon/crew_quarters/lounge/bar) -"jEi" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/obj/machinery/door/blast/shutters/open{ - id = "RnDShutters"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/lab) "jEq" = ( /obj/effect/floor_decal/corner_wide/green{ dir = 5 @@ -21326,6 +21213,11 @@ /obj/structure/table/wood, /turf/simulated/floor/carpet, /area/chapel/office) +"jEM" = ( +/obj/structure/railing/mapped, +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/tiled/dark, +/area/rnd/lab) "jEO" = ( /obj/machinery/body_scanconsole{ dir = 4 @@ -21335,6 +21227,29 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/gen_treatment) +"jES" = ( +/obj/structure/table/standard, +/obj/item/device/firing_pin/test_range, +/obj/item/clothing/glasses/science{ + pixel_y = 10 + }, +/obj/structure/reagent_dispensers/acid{ + pixel_x = 28 + }, +/obj/item/stack/material/steel/full, +/obj/item/stack/material/glass/full, +/obj/item/reagent_containers/glass/beaker/sulphuric{ + pixel_y = 3 + }, +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/railing/mapped, +/obj/effect/floor_decal/corner/mauve/full{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/lab) "jFc" = ( /obj/structure/curtain/black{ icon_state = "open"; @@ -21356,6 +21271,15 @@ }, /turf/simulated/floor/wood, /area/horizon/bar) +"jFf" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) "jFh" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -21397,6 +21321,17 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/hallway/engineering/rust) +"jFF" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/corner/pink/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) "jFS" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -21406,12 +21341,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/horizon/library) -"jFX" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ - id = "rdoffice" - }, -/turf/simulated/floor/tiled/dark/full, -/area/crew_quarters/heads/hor) "jGa" = ( /obj/structure/railing/mapped, /obj/machinery/firealarm/east, @@ -21422,6 +21351,30 @@ /obj/random/pottedplant, /turf/simulated/floor/lino, /area/horizon/crew_quarters/lounge/bar) +"jGN" = ( +/obj/structure/platform_stairs, +/obj/machinery/door/window/northleft, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/dissection) +"jHb" = ( +/obj/structure/platform, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/item/roller{ + pixel_y = 6 + }, +/obj/item/storage/box/sharps, +/obj/item/storage/box/sharps, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/dissection) "jHd" = ( /obj/structure/ship_weapon_dummy, /turf/template_noop, @@ -21475,6 +21428,15 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, /area/maintenance/wing/port/far) +"jIL" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/full{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/lab) "jIU" = ( /obj/machinery/alarm/south, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -21516,18 +21478,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, /area/engineering/smes) -"jJP" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/floor_decal/corner/pink/diagonal, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) "jJU" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 @@ -21591,15 +21541,16 @@ /obj/item/device/radio/intercom/north, /turf/simulated/floor/tiled, /area/security/checkpoint2) -"jLN" = ( -/obj/structure/platform{ - dir = 1 +"jLS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 }, -/obj/machinery/camera/network/research{ - c_tag = "Research - Corridor Camera 3" +/obj/machinery/power/apc/west, +/obj/structure/cable/green{ + icon_state = "0-4" }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) +/turf/simulated/floor/carpet/rubber, +/area/server) "jMi" = ( /obj/machinery/power/apc/low/west, /obj/structure/cable/green{ @@ -21782,15 +21733,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"jPT" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/structure/platform{ +"jPX" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/atmospherics/portables_connector{ dir = 1 }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "jQg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/spline/fancy/wood{ @@ -21869,27 +21818,36 @@ /obj/structure/table/rack/retail_shelf, /turf/simulated/floor/tiled, /area/horizon/commissary) -"jSW" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 5 +"jSY" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/obj/structure/cable/green{ - icon_state = "1-4" +/turf/simulated/floor/tiled/white, +/area/rnd/lab) +"jTi" = ( +/obj/structure/closet/radiation, +/obj/structure/window/reinforced{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 +/obj/structure/window/reinforced, +/turf/simulated/floor/carpet/rubber, +/area/horizon/zat) +"jTA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +/obj/structure/plasticflaps/airtight, +/obj/machinery/door/window/westleft{ + name = "Server Room" }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) -"jTp" = ( -/obj/structure/railing/mapped, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/maintenance/research_port) +/obj/machinery/door/window/eastleft{ + name = "Server Room" + }, +/turf/simulated/floor/bluegrid/server, +/area/server) "jTH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment{ @@ -21914,18 +21872,6 @@ }, /turf/simulated/floor/wood, /area/horizon/library) -"jTW" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 4 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/machinery/light/floor{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) "jUc" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -21978,13 +21924,6 @@ /obj/structure/window/shuttle/scc_space_ship, /turf/simulated/floor/plating, /area/horizon/security/brig) -"jUA" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) "jUB" = ( /obj/item/device/radio/intercom/east{ pixel_y = 1 @@ -22036,12 +21975,6 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/maintenance/wing/port/far) -"jVg" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/horizon/zat) "jVn" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -22138,26 +22071,21 @@ "jWV" = ( /turf/simulated/wall, /area/security/checkpoint2) -"jXg" = ( -/obj/effect/floor_decal/industrial/outline/engineering, -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Leviathan Substation" - }, -/turf/simulated/floor/plating, -/area/horizon/zat) "jXv" = ( /obj/effect/floor_decal/corner/brown{ dir = 5 }, /turf/simulated/floor/tiled, /area/operations/break_room) -"jYa" = ( -/obj/effect/floor_decal/industrial/hatch/red, -/obj/structure/window/reinforced{ - dir = 8 +"jXV" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/zat) +/obj/machinery/light/floor{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "jYg" = ( /obj/machinery/light{ dir = 8 @@ -22185,22 +22113,6 @@ /obj/structure/extinguisher_cabinet/south, /turf/simulated/floor/tiled, /area/operations/lobby) -"jZW" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2; - name = "Research Hallway" - }, -/obj/machinery/door/firedoor/multi_tile{ - dir = 2 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_one) "kat" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -22269,6 +22181,17 @@ }, /turf/simulated/floor/tiled, /area/operations/lobby) +"kbz" = ( +/obj/machinery/door/window/northleft, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/zat) +"kbF" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) "kbL" = ( /obj/structure/cable{ icon_state = "4-8" @@ -22345,38 +22268,10 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"kdk" = ( -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d3-6" - }, -/obj/structure/girder, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/maintenance/research_port) -"kdp" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/rnd/hallway) "kdr" = ( /obj/machinery/atmospherics/pipe/manifold/visible/green, /turf/simulated/floor/plating, /area/engineering/engine_room) -"kdC" = ( -/obj/structure/bed/stool/chair/office/bridge/generic, -/obj/effect/landmark/start{ - name = "Research Director" - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/power/apc/north, -/turf/simulated/floor/tiled/white, -/area/rnd/conference) "kdK" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -22409,61 +22304,6 @@ /obj/structure/window/shuttle/scc_space_ship/cardinal, /turf/simulated/floor/plating, /area/horizon/stairwell/bridge) -"keL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/foyer) -"keT" = ( -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, -/obj/machinery/door/blast/regular/open{ - dir = 8; - fail_secure = 1; - id = "hazardous_lockdown"; - name = "Hazardous Containment Lockdown" - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology/hazardous) -"keW" = ( -/obj/effect/floor_decal/corner/black{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"kfh" = ( -/obj/machinery/door/airlock/highsecurity{ - desc = "A gigantic bunker lock. Warning signs on the exterior dictate the internal contents as high-value, and highly dangerous property. It stresses the absolute importance of only command-level entry."; - dir = 1; - icon_state = "door_locked"; - id_tag = "bolts_cannon_entrance"; - locked = 1; - name = "Primary Armament"; - req_one_access = list(19,43) - }, -/obj/effect/floor_decal/industrial/hatch/red, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) "kfv" = ( /obj/machinery/button/remote/blast_door{ dir = 1; @@ -22542,10 +22382,6 @@ /obj/effect/floor_decal/corner/dark_green/full, /turf/simulated/floor/tiled, /area/horizon/hallway/deck_two/fore) -"kgr" = ( -/obj/structure/bed/stool/chair/office/dark, -/turf/simulated/floor/carpet/rubber, -/area/rnd/lab) "kgH" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/effect/floor_decal/spline/plain, @@ -22578,6 +22414,11 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/bar) +"kgT" = ( +/obj/machinery/hologram/holopad/long_range, +/obj/effect/floor_decal/corner/mauve/diagonal, +/turf/simulated/floor/tiled/white, +/area/rnd/lab) "khi" = ( /obj/effect/floor_decal/corner/dark_blue/full{ dir = 8 @@ -22606,10 +22447,6 @@ /obj/structure/extinguisher_cabinet/south, /turf/simulated/floor/tiled, /area/horizon/stairwell/central) -"kic" = ( -/obj/machinery/chem_heater, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/chemistry) "kie" = ( /obj/machinery/atmospherics/valve/digital/open{ name = "Starboard Main Supply Valve" @@ -22667,19 +22504,24 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/bar/backroom) -"kjJ" = ( -/obj/structure/bookcase, -/obj/item/book/manual/wiki/station_procedure, -/obj/item/book/manual/wiki/security_space_law, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenological) "kkb" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/operations/lobby) +"kkq" = ( +/obj/machinery/turretid/lethal{ + ailock = 1; + check_synth = 1; + name = "\improper Situational Control Armaments Turret Control"; + pixel_y = 32; + req_access = null; + req_one_access = list(19,43) + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) "kkW" = ( /obj/effect/floor_decal/corner/dark_blue/full, /obj/effect/floor_decal/industrial/outline/security, @@ -22721,22 +22563,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"klC" = ( -/obj/structure/platform, -/obj/structure/filingcabinet/filingcabinet{ - pixel_x = -7 - }, -/obj/machinery/papershredder{ - pixel_x = 7 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/lab) -"klR" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) "kmc" = ( /turf/simulated/wall, /area/operations/qm) @@ -22759,47 +22585,28 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/hallway/deck_two/fore) -"kmP" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 4; - name = "Research and Development"; - sortType = "Research and Development" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"knr" = ( -/obj/structure/coatrack, -/obj/effect/floor_decal/corner/mauve/diagonal, +"knA" = ( +/obj/structure/closet/crate, +/obj/item/device/assembly/timer, +/obj/item/device/assembly/timer, +/obj/item/device/assembly/timer, +/obj/item/device/assembly/timer, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/gun/launcher/syringe, +/obj/item/storage/box/syringegun, /obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenological) -"knt" = ( -/obj/machinery/door/airlock/command{ - dir = 1; - id_tag = "researchdoor"; - name = "Research Director's Office"; - req_access = list(30) + dir = 4 }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark/full, -/area/crew_quarters/heads/hor) +/area/rnd/chemistry) "knH" = ( /obj/structure/dispenser/oxygen, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -22822,6 +22629,24 @@ }, /turf/simulated/floor/wood, /area/operations/lower/machinist/surgicalbay) +"koq" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway/secondary) "kpd" = ( /obj/machinery/power/breakerbox/activated{ RCon_tag = "Port Wing Substation" @@ -22831,6 +22656,20 @@ "kpC" = ( /turf/simulated/wall/r_wall, /area/maintenance/aft) +"kpN" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/structure/ship_weapon_dummy, +/turf/simulated/floor/plating, +/area/horizon/zat) +"kpR" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "kqi" = ( /obj/structure/table/standard, /obj/item/paper_bin, @@ -22838,13 +22677,6 @@ /obj/structure/railing/mapped, /turf/simulated/floor/tiled/white, /area/hallway/medical) -"kqy" = ( -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, -/obj/machinery/door/blast/shutters/open{ - id = "exploratory_chem_shutters" - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/chemistry) "kqz" = ( /obj/machinery/alarm/west, /obj/machinery/light{ @@ -22867,30 +22699,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/lobby) -"kqT" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/structure/sink{ - pixel_y = 28; - pixel_x = -10 - }, -/obj/machinery/button/remote/blast_door{ - desc = "It controls the research shutters."; - id = "exploratory_chem_shutters"; - name = "Exploratory Chemistry Shutters"; - dir = 1; - pixel_y = 37; - pixel_x = 8 - }, -/obj/machinery/button/remote/blast_door{ - desc = "It controls the research shutters."; - id = "science_chem_desk"; - name = "Exploratory Chemistry Desk"; - pixel_x = 8; - dir = 1; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) "kra" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 5 @@ -22899,21 +22707,16 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/full, /area/hallway/primary/central_two) -"krj" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ +"krk" = ( +/obj/machinery/alarm/east, +/obj/effect/floor_decal/spline/fancy/wood/cee{ dir = 4 }, -/obj/machinery/door/airlock/glass_research{ - dir = 4; - name = "Conference Room"; - req_access = list(47) - }, -/obj/effect/map_effect/door_helper/unres{ +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/rnd/conference) +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hor) "krl" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/corner/brown/full{ @@ -22932,6 +22735,18 @@ /obj/effect/floor_decal/corner/yellow/diagonal, /turf/simulated/floor/tiled, /area/hallway/engineering/rust) +"ksk" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) "ksC" = ( /obj/machinery/door/blast/shutters{ dir = 4; @@ -22953,6 +22768,16 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/hallway/primary/central_two) +"ksX" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/hazardous) "kta" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 6 @@ -22963,35 +22788,12 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/full, /area/horizon/security/equipment) -"ktj" = ( -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, -/obj/structure/platform, -/obj/machinery/door/blast/regular/open{ - dir = 8; - fail_secure = 1; - id = "telesci_lockdown"; - name = "Hazardous Containment Lockdown" - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/telesci) "ktw" = ( /obj/machinery/door/airlock/maintenance_hatch{ dir = 1 }, /turf/simulated/floor/plating, /area/maintenance/wing/starboard/far) -"ktA" = ( -/obj/structure/table/standard, -/obj/machinery/computer/security/telescreen{ - name = "Access Monitor"; - network = list("Xeno_Bio"); - req_access = list(55) - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) "ktC" = ( /obj/machinery/mech_recharger, /obj/effect/floor_decal/industrial/outline/yellow, @@ -23021,16 +22823,6 @@ }, /turf/simulated/floor/tiled/white, /area/hallway/medical) -"kud" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/machinery/disposal/small/west, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/rnd/hallway/secondary) "kug" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 @@ -23065,18 +22857,6 @@ /obj/effect/floor_decal/industrial/hatch/grey, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"kuX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) "kvd" = ( /obj/machinery/door/firedoor, /obj/structure/grille/diagonal{ @@ -23086,11 +22866,12 @@ /turf/simulated/floor/reinforced, /area/horizon/crew_quarters/lounge/bar) "kvh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/light/small/emergency{ + dir = 1 + }, /turf/simulated/floor/plating, -/area/hallway/primary/central_one) +/area/maintenance/wing/port/far) "kvs" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -23129,19 +22910,32 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/hallway/deck_two/fore) -"kwP" = ( +"kvZ" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"kwC" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/corner/pink/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) +"kwS" = ( /obj/structure/table/standard, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/micro_laser, -/obj/item/stock_parts/micro_laser, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/capacitor, -/obj/item/stack/cable_coil, -/obj/item/clothing/glasses/science{ - pixel_y = 10 +/obj/item/gun/projectile/shotgun/foldable/cameragun, +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 }, /turf/simulated/floor/tiled/white, -/area/rnd/lab) +/area/rnd/xenobiology/foyer) "kwW" = ( /obj/effect/floor_decal/corner/yellow{ dir = 6 @@ -23165,6 +22959,20 @@ }, /turf/simulated/floor/tiled, /area/engineering/storage_eva) +"kxt" = ( +/obj/machinery/door/airlock/glass_command{ + dir = 1; + id_tag = "server_door_lock"; + name = "Server Room"; + req_access = list(30) + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/server) "kxz" = ( /obj/effect/floor_decal/corner_wide/lime/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -23172,19 +22980,9 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"kxD" = ( -/obj/machinery/light/floor, -/turf/simulated/floor/carpet/rubber, -/area/rnd/telesci) "kxP" = ( /turf/simulated/wall/r_wall, /area/engineering/storage_eva) -"kye" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) "kyA" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/wood, @@ -23195,6 +22993,15 @@ }, /turf/simulated/open, /area/horizon/stairwell/central) +"kyR" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/railing/mapped, +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/machinery/light/floor, +/turf/simulated/floor/tiled/white, +/area/rnd/lab) "kyV" = ( /obj/machinery/requests_console/north{ department = "Atmospherics"; @@ -23251,33 +23058,6 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/crew_quarters/heads/chief) -"kzB" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/button/remote/airlock{ - id = "xeno_entrance_int_a"; - name = "Xenobiology External Access Bolts"; - pixel_y = -28; - req_access = list(55); - specialfunctions = 4; - dir = 4; - pixel_x = 22 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/foyer) -"kzC" = ( -/turf/simulated/wall/r_wall, -/area/rnd/telesci) "kAn" = ( /obj/structure/disposalpipe/junction, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -23360,37 +23140,29 @@ /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/aft) -"kCG" = ( -/obj/structure/platform_deco{ - icon_state = "ledge_deco" - }, -/obj/structure/platform_deco{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hor) "kCV" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/operations/break_room) -"kDc" = ( -/obj/item/storage/box/mousetraps, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/closet/crate, -/obj/item/storage/box/mousetraps, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) "kDg" = ( /obj/structure/ladder{ pixel_y = 8 }, /turf/simulated/open, /area/maintenance/wing/port/far) +"kDx" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_containers/glass/bucket, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "kDC" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/maintenance/wing/starboard/far) @@ -23411,6 +23183,12 @@ }, /turf/simulated/floor/tiled/dark, /area/engineering/aft_airlock) +"kEf" = ( +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"kEh" = ( +/turf/simulated/wall/r_wall, +/area/rnd/telesci) "kEK" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -23426,18 +23204,13 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/hallway/deck_two/fore) -"kES" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/door/window/eastright, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light/small{ - dir = 8 +"kEL" = ( +/obj/machinery/recharger{ + pixel_y = 6 }, -/turf/simulated/floor/plating, -/area/horizon/zat) +/obj/structure/table/standard, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenological) "kEY" = ( /obj/effect/floor_decal/corner/brown{ dir = 10 @@ -23458,16 +23231,6 @@ }, /turf/simulated/floor/wood, /area/horizon/security/head_of_security) -"kFc" = ( -/obj/structure/table/standard, -/obj/item/device/integrated_electronics/wirer, -/obj/item/device/integrated_electronics/debugger, -/obj/item/storage/bag/circuits/basic, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/carpet/rubber, -/area/rnd/lab) "kFe" = ( /obj/effect/floor_decal/corner_wide/yellow{ dir = 1 @@ -23481,16 +23244,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/engineering) -"kFm" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenological) "kFD" = ( /obj/structure/bed/stool/chair/office/light{ dir = 8 @@ -23527,6 +23280,9 @@ }, /turf/simulated/floor/carpet/rubber, /area/engineering/engine_room/rust) +"kGX" = ( +/turf/simulated/wall/r_wall, +/area/rnd/xenobiology/dissection) "kHb" = ( /obj/structure/bed/stool/chair/plastic{ dir = 4 @@ -23602,37 +23358,15 @@ "kIp" = ( /turf/simulated/floor/tiled, /area/operations/break_room) -"kJd" = ( -/obj/structure/table/wood, -/obj/machinery/chemical_dispenser/coffeemaster/full{ - dir = 0; - pixel_y = 12 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/rainbow{ - pixel_x = 11; - pixel_y = -2 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/sol{ - pixel_x = 6; - pixel_y = -2 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/black{ - pixel_x = 1; - pixel_y = -2 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/zeng{ - pixel_x = -4; - pixel_y = -2 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/nt{ - pixel_x = -9; - pixel_y = -2 - }, -/obj/effect/floor_decal/spline/fancy/wood/cee{ - dir = 1 +"kIW" = ( +/obj/structure/table/standard, +/obj/item/device/hand_labeler, +/obj/item/tape_roll{ + pixel_x = -14; + pixel_y = 10 }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hor) +/turf/simulated/floor/carpet/rubber, +/area/rnd/lab) "kJw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -23735,14 +23469,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/engineering/storage_eva) -"kKW" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 8 - }, -/obj/machinery/disposal/small/east, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenological) "kLc" = ( /obj/effect/floor_decal/corner_wide/lime{ dir = 6 @@ -23763,25 +23489,6 @@ /obj/structure/closet/emcloset, /turf/simulated/floor/tiled, /area/operations/lobby) -"kLB" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) "kLN" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -23808,6 +23515,23 @@ }, /turf/simulated/floor/tiled, /area/engineering/rust_office) +"kNe" = ( +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, +/obj/machinery/door/blast/regular/open{ + dir = 8; + fail_secure = 1; + id = "telesci_lockdown"; + name = "Hazardous Containment Lockdown" + }, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/telesci) +"kNr" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Xenobiology Maintenance"; + req_access = list(55) + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology) "kNH" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 4 @@ -23867,17 +23591,6 @@ }, /turf/simulated/floor/wood, /area/chapel/office) -"kPf" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_x = -19; - pixel_y = 3; - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hor) "kPj" = ( /obj/structure/shuttle_part/scc_space_ship{ icon_state = "d3-5-f" @@ -23896,9 +23609,6 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"kPs" = ( -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology/hazardous) "kPz" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/closet/chefcloset, @@ -23914,6 +23624,22 @@ /obj/effect/floor_decal/spline/fancy/wood/cee, /turf/simulated/floor/wood, /area/operations/lower/machinist/surgicalbay) +"kPS" = ( +/mob/living/simple_animal/hostile/commanded/baby_harvester, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/southleft{ + name = "Ives Cage" + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hor) "kQz" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -23965,15 +23691,6 @@ }, /turf/simulated/floor/reinforced/reactor, /area/engineering/engine_room) -"kRd" = ( -/obj/structure/bed/stool/chair/office/dark, -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"kRp" = ( -/obj/effect/floor_decal/corner/mauve/full, -/turf/simulated/floor/tiled/white, -/area/rnd/conference) "kRr" = ( /obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, /obj/machinery/door/blast/regular{ @@ -23988,6 +23705,15 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/brig) +"kRz" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry) "kRB" = ( /obj/structure/bed/stool/chair/padded/red{ dir = 8 @@ -24027,27 +23753,6 @@ }, /turf/simulated/floor/tiled, /area/operations/office) -"kSa" = ( -/obj/structure/table/rack, -/obj/item/storage/toolbox/electrical, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/ladder_mobile, -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) -"kSb" = ( -/obj/structure/table/standard, -/obj/item/device/analyzer/plant_analyzer, -/obj/item/reagent_containers/spray/plantbgone, -/obj/item/material/minihoe, -/obj/item/material/hatchet, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"kSw" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) "kSM" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -24055,22 +23760,6 @@ /obj/machinery/newscaster/east, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"kSP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/maintenance/research_port) "kUc" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner_wide/green/full, @@ -24137,11 +23826,20 @@ /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/tiled/dark/full, /area/engineering/atmos/storage) -"kVC" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/shuttle/scc_space_ship/cardinal, +"kVk" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/plating, +/area/rnd/xenobiology) +"kVm" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/item/device/radio, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/ears/earmuffs, +/turf/simulated/floor/reinforced, /area/horizon/zat) "kVO" = ( /obj/effect/floor_decal/industrial/warning{ @@ -24149,6 +23847,18 @@ }, /turf/simulated/floor/tiled, /area/maintenance/wing/port/far) +"kVU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology) "kWf" = ( /obj/effect/floor_decal/industrial/warning{ dir = 9 @@ -24171,13 +23881,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/exam) -"kWy" = ( -/obj/machinery/camera/network/research{ - c_tag = "Research - XenoBotanical Lab Fore"; - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) "kWz" = ( /obj/structure/cable/yellow, /obj/structure/cable{ @@ -24206,28 +23909,10 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/armoury) -"kXv" = ( -/obj/machinery/disposal/deliveryChute, -/obj/machinery/door/window/eastleft{ - dir = 2 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular/open{ - fail_secure = 1; - id = "xenobio_f"; - name = "Cell Containment Blast Door"; - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology) +"kXO" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hor) "kXS" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -24296,37 +23981,36 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/wood, /area/chapel/main) -"kZl" = ( -/obj/structure/table/standard, -/obj/item/paper_bin, -/obj/item/pen{ - pixel_x = -4 +"kZr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/item/pen/red{ - pixel_x = -1; - pixel_y = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/item/pen/blue{ - pixel_x = 3; - pixel_y = 7 +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 1 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"kZv" = ( +/obj/machinery/light/small/emergency, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/floor/carpet/rubber, -/area/rnd/lab) -"kZr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 1 +/obj/structure/cable/green{ + icon_state = "4-8" }, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/item/trash/mollusc_shell, /turf/simulated/floor/plating, -/area/engineering/engine_room) +/area/maintenance/research_port) "kZD" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/bed/stool/chair/office/light{ @@ -24346,15 +24030,13 @@ /obj/structure/extinguisher_cabinet/south, /turf/simulated/floor/tiled, /area/rnd/hallway) -"kZO" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 1; - name = "Research and Development Maintenance"; - req_access = list(7) +"kZZ" = ( +/obj/structure/bed/stool/chair/unmovable, +/obj/machinery/light{ + dir = 1 }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark, -/area/rnd/lab) +/turf/simulated/floor/carpet/rubber, +/area/rnd/xenobiology/dissection) "lau" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -24388,21 +24070,6 @@ /obj/machinery/libraryscanner, /turf/simulated/floor/wood, /area/horizon/library) -"lbc" = ( -/obj/structure/table/reinforced/steel, -/obj/machinery/door/window/desk/southright{ - desc = "Research Desk"; - req_access = list(7) - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - id = "science_chem_desk"; - name = "Exploratory Chemistry"; - opacity = 0 - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/chemistry) "lbf" = ( /obj/effect/floor_decal/corner/yellow{ dir = 6 @@ -24421,10 +24088,6 @@ }, /turf/simulated/floor/tiled, /area/maintenance/aux_atmospherics/deck_2/starboard/wing) -"lbr" = ( -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/maintenance/aft) "lbs" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -24484,6 +24147,32 @@ }, /turf/simulated/floor/tiled/white, /area/medical/pharmacy) +"lcc" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 4 + }, +/obj/machinery/light, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/biogenerator{ + icon_state = "biogen-empty" + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) +"lcs" = ( +/obj/machinery/vending/coffee, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/rnd/hallway/secondary) "lcu" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/floor_decal/industrial/warning, @@ -24499,48 +24188,20 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_two) -"lcC" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 8 - }, -/obj/machinery/vending/coffee, -/obj/machinery/camera/network/research{ - c_tag = "Research - Conference Room"; - pixel_y = 9; - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/conference) -"lcF" = ( -/obj/effect/floor_decal/spline/fancy/wood/cee, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hor) -"ldd" = ( -/obj/structure/railing/mapped, -/obj/effect/floor_decal/corner/pink/diagonal, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) "ldk" = ( /obj/machinery/vending/overloaders, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark/full, /area/rnd/hallway) -"ldy" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 +"ldu" = ( +/obj/structure/platform/ledge{ + dir = 4 }, -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled/dark, +/obj/machinery/seed_extractor, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora) "ldT" = ( /obj/effect/floor_decal/corner/brown{ @@ -24620,6 +24281,13 @@ /obj/item/hullbeacon/red, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) +"lhd" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) "lhH" = ( /obj/random/junk, /obj/structure/disposalpipe/segment, @@ -24737,37 +24405,6 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/hallway/primary/central_two) -"ljO" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Xenoarchaeologist" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/rnd/conference) -"lka" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/junction/yjunction, -/turf/simulated/floor/tiled, -/area/rnd/hallway) "lkt" = ( /obj/machinery/newscaster/north, /obj/structure/filingcabinet/filingcabinet{ @@ -24812,13 +24449,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/grauwolf) -"llE" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) "llG" = ( /obj/machinery/maneuvering_engine, /obj/effect/landmark/entry_point/aft{ @@ -24861,6 +24491,15 @@ }, /turf/simulated/floor/tiled/white, /area/medical/ors) +"lmp" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/disposal/small/west, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled/white, +/area/rnd/conference) "lmz" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/effect/floor_decal/spline/plain{ @@ -24872,10 +24511,13 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/kitchen) -"lmU" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/reinforced, -/area/horizon/zat) +"lmZ" = ( +/obj/random/junk, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/research_port) "lng" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -24892,6 +24534,12 @@ }, /turf/simulated/floor/tiled/full, /area/hallway/primary/central_one) +"lno" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/zat) "lnr" = ( /obj/structure/coatrack{ pixel_x = -10; @@ -24918,27 +24566,40 @@ }, /turf/simulated/floor/reinforced, /area/horizon/grauwolf) +"lpu" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway/secondary) "lpB" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) -"lpF" = ( -/mob/living/simple_animal/hostile/commanded/baby_harvester, -/obj/structure/window/reinforced{ - dir = 4 +"lpK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 }, -/obj/structure/window/reinforced{ - dir = 8 +/obj/machinery/button/remote/blast_door{ + id = "cannon_external"; + name = "External Blast Doors"; + pixel_x = 7; + pixel_y = -18; + req_one_access = list(19,11,24) }, +/obj/machinery/light/small, /obj/structure/window/reinforced{ - dir = 1 + dir = 4 }, -/obj/machinery/door/window/southleft{ - name = "Ives Cage" +/obj/machinery/light{ + dir = 4 }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hor) +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) "lqa" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ dir = 8 @@ -24946,6 +24607,13 @@ /obj/structure/lattice, /turf/simulated/open/airless, /area/horizon/exterior) +"lqd" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/wing/port/far) "lqM" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/machinery/camera/network/reactor{ @@ -24987,6 +24655,32 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/wing/port) +"lrS" = ( +/obj/machinery/door/airlock/glass_research{ + dir = 4; + id_tag = "xeno_entrance_int_b"; + name = "Xenobiology"; + req_access = list(55); + locked = 1 + }, +/obj/effect/map_effect/door_helper/unres{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology) "lss" = ( /obj/item/modular_computer/console/preset/supply, /obj/machinery/button/remote/blast_door{ @@ -25007,21 +24701,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/operations/office) -"lts" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/spline/fancy/wood, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hor) "ltG" = ( /obj/machinery/status_display{ pixel_y = -32 @@ -25073,6 +24752,48 @@ /obj/structure/platform_deco/ledge, /turf/simulated/open, /area/operations/office) +"luY" = ( +/obj/machinery/computer/robotics{ + dir = 4 + }, +/turf/simulated/floor/carpet/purple, +/area/crew_quarters/heads/hor) +"lvl" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/machinery/power/apc/high/north, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/table/standard, +/obj/machinery/reagentgrinder{ + pixel_x = 3; + pixel_y = 10 + }, +/obj/item/reagent_containers/chem_disp_cartridge, +/obj/item/reagent_containers/chem_disp_cartridge, +/obj/item/reagent_containers/chem_disp_cartridge, +/obj/item/reagent_containers/chem_disp_cartridge, +/obj/item/reagent_containers/chem_disp_cartridge, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) +"lvq" = ( +/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/structure/lattice/catwalk/indoor/grate, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/wing/port) "lvH" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -25100,17 +24821,19 @@ }, /turf/simulated/floor/carpet, /area/horizon/security/head_of_security) -"lxR" = ( -/obj/machinery/button/remote/airlock{ - id = "xeno_entrance_ext"; - name = "Xenobiology External Access Bolts"; - pixel_y = -21; - req_access = list(55); - specialfunctions = 4 +"lxo" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/obj/machinery/door/blast/shutters/open{ + id = "RnDShutters" }, -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenological) +/turf/simulated/floor/tiled/dark/full, +/area/rnd/lab) +"lxH" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology) "lyv" = ( /obj/structure/shuttle_part/scc_space_ship{ icon_state = "d2-1-f" @@ -25141,18 +24864,6 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/full, /area/medical/reception) -"lzi" = ( -/obj/structure/platform_stairs/full{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) "lzq" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -25310,12 +25021,15 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/chapel/office) -"lCS" = ( -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d3-3" +"lCI" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/template_noop, -/area/template_noop) +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/lab) "lCV" = ( /obj/machinery/atmospherics/pipe/manifold/visible/black{ dir = 8 @@ -25329,6 +25043,19 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) +"lDs" = ( +/obj/machinery/door/airlock/glass_research{ + dir = 4; + name = "Storage and Incineration" + }, +/obj/effect/map_effect/door_helper/unres{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) "lDz" = ( /obj/machinery/kinetic_harvester{ initial_id_tag = "horizon_fusion" @@ -25351,30 +25078,39 @@ /turf/simulated/floor/plating, /area/maintenance/wing/starboard) "lEd" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 4 - }, -/obj/machinery/light, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 +/obj/machinery/shieldwallgen, +/obj/effect/floor_decal/corner/mauve/full, +/obj/machinery/camera/network/research{ + c_tag = "Xenobiology - Hazardous Specimen"; + dir = 1; + network = list("Research","Xeno_Bio") }, -/obj/machinery/biogenerator{ - icon_state = "biogen-empty" +/obj/structure/cable/green{ + icon_state = "0-4" }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/hazardous) "lEe" = ( /obj/structure/closet/crate, /obj/effect/floor_decal/industrial/warning, /obj/random/contraband, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) +"lEv" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) +"lEP" = ( +/obj/structure/platform/ledge, +/turf/simulated/floor/carpet/rubber, +/area/rnd/telesci) "lER" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/corner/yellow{ @@ -25475,29 +25211,34 @@ /obj/structure/platform, /turf/simulated/floor/tiled/dark, /area/maintenance/wing/port/far) +"lGw" = ( +/obj/structure/table/standard, +/obj/machinery/recharger{ + pixel_y = 6; + pixel_x = 8 + }, +/obj/machinery/button/remote/airlock{ + id = "xeno_dissection"; + name = "Dissection access"; + req_access = list(55); + specialfunctions = 4; + dir = 10; + pixel_x = -6; + pixel_y = 1 + }, +/obj/effect/floor_decal/corner/mauve/full{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/firealarm/west, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/hazardous) "lGx" = ( /obj/machinery/power/breakerbox/activated{ RCon_tag = "Engineering Main Substation" }, /turf/simulated/floor/plating, /area/maintenance/substation/engineering) -"lGH" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenological) "lGQ" = ( /obj/structure/cable/green{ icon_state = "2-8" @@ -25514,6 +25255,17 @@ /obj/effect/decal/cleanable/cobweb, /turf/simulated/floor/tiled/dark, /area/maintenance/wing/starboard/far) +"lHs" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/shower{ + pixel_y = 12 + }, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/xenobiology) +"lHx" = ( +/obj/structure/bed/stool/chair/office/dark, +/turf/simulated/floor/carpet/rubber, +/area/rnd/lab) "lHB" = ( /obj/machinery/alarm/north, /obj/effect/floor_decal/spline/fancy/wood{ @@ -25521,6 +25273,25 @@ }, /turf/simulated/floor/wood, /area/chapel/office) +"lHY" = ( +/obj/machinery/door/airlock/highsecurity{ + desc = "A gigantic bunker lock. Warning signs on the exterior dictate the internal contents as high-value, and highly dangerous property. It stresses the absolute importance of only command-level entry."; + dir = 1; + icon_state = "door_locked"; + id_tag = "bolts_cannon_entrance"; + locked = 1; + name = "Primary Armament"; + req_one_access = list(19,43) + }, +/obj/effect/floor_decal/industrial/hatch/red, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) "lIc" = ( /obj/structure/lattice, /obj/structure/platform/ledge{ @@ -25560,19 +25331,25 @@ }, /turf/simulated/floor/tiled, /area/horizon/custodial/auxiliary) -"lJo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 +"lJp" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 }, -/obj/structure/plasticflaps/airtight, -/obj/machinery/door/window/westleft{ - name = "Server Room" +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/obj/machinery/door/window/eastleft{ - name = "Server Room" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, -/turf/simulated/floor/bluegrid/server, -/area/server) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway/secondary) "lJv" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/effect/floor_decal/spline/plain{ @@ -25641,13 +25418,12 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"lKY" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/ship_weapon_dummy, -/turf/simulated/floor/plating, -/area/horizon/zat) +"lKI" = ( +/obj/structure/railing/mapped, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass, +/area/rnd/hallway) "lLl" = ( /obj/machinery/door/firedoor, /obj/machinery/door/window/southright{ @@ -25692,15 +25468,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/secure_ammunition_storage) -"lLS" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 4 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) "lMi" = ( /obj/structure/closet/wardrobe/chaplain_black, /obj/item/storage/box/fancy/crayons, @@ -25777,24 +25544,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) -"lNl" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/effect/floor_decal/corner/white{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/table/standard, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) "lNJ" = ( /obj/effect/floor_decal/corner_wide/yellow{ dir = 5 @@ -25835,13 +25584,6 @@ /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, /area/medical/main_storage) -"lOS" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) "lPd" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 4 @@ -26026,23 +25768,6 @@ /obj/effect/shuttle_landmark/lift/operations_second_deck, /turf/simulated/open, /area/operations/office) -"lSS" = ( -/obj/machinery/alarm/north, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/old, -/turf/simulated/floor/plating, -/area/maintenance/research_port) "lST" = ( /obj/effect/floor_decal/corner_wide/yellow{ dir = 9 @@ -26060,16 +25785,6 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/plating, /area/engineering/engine_room) -"lSX" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/hydroponics/soil, -/turf/simulated/floor/exoplanet/grass, -/area/rnd/xenobiology/xenoflora) "lTb" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -26102,14 +25817,6 @@ }, /turf/simulated/floor/tiled, /area/maintenance/wing/starboard/far) -"lTC" = ( -/obj/random/junk, -/obj/machinery/light/small/emergency, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) "lTQ" = ( /obj/machinery/light, /obj/effect/floor_decal/corner/dark_blue{ @@ -26124,28 +25831,15 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/holding_cell_a) -"lUD" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/porta_turret/sniper, -/obj/machinery/light/small/emergency, -/obj/machinery/alarm/east{ - pixel_y = -28; - req_one_access = list(24,11,55) - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/zat) -"lUI" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/full{ +"lUA" = ( +/obj/item/storage/box/mousetraps, +/obj/machinery/light{ dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) +/obj/structure/closet/crate, +/obj/item/storage/box/mousetraps, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology) "lVd" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 6 @@ -26153,13 +25847,6 @@ /obj/structure/lattice, /turf/simulated/open/airless, /area/horizon/exterior) -"lVf" = ( -/obj/structure/closet/crate, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) "lVg" = ( /obj/structure/shuttle_part/scc_space_ship{ icon_state = "d2-2-f" @@ -26172,33 +25859,6 @@ /obj/machinery/light/small/emergency, /turf/simulated/floor/tiled/dark, /area/maintenance/wing/port/far) -"lVL" = ( -/obj/machinery/door/airlock/glass_research{ - name = "Xenological Studies"; - req_access = list(7); - dir = 4 - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology/xenological) "lWf" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -26275,18 +25935,6 @@ }, /turf/simulated/floor/tiled, /area/engineering/lobby) -"lXG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/camera/network/research{ - dir = 1; - c_tag = "Xenobio - Cell C"; - network = list("Xeno_Bio") - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) "lXO" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 6 @@ -26309,14 +25957,24 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/operations/lower/machinist) -"lYj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +"lYP" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Xenoarchaeologist" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "4-8" }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/foyer) +/turf/simulated/floor/wood, +/area/rnd/conference) "lYV" = ( /obj/structure/table/stone/marble, /obj/machinery/requests_console/south{ @@ -26332,6 +25990,18 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/kitchen) +"lYW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/camera/network/research{ + dir = 1; + c_tag = "Xenobio - Cell A"; + network = list("Xeno_Bio") + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) "lYZ" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/effect/floor_decal/spline/plain{ @@ -26427,21 +26097,21 @@ temperature = 253.15 }, /area/horizon/kitchen/freezer) +"maP" = ( +/obj/structure/morgue/crematorium{ + _wifi_id = "xenobio_crema" + }, +/obj/effect/floor_decal/corner/mauve/full{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) "maV" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark/full, /area/horizon/hydroponics) -"maY" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) "mbi" = ( /obj/effect/floor_decal/corner/dark_blue/full{ dir = 8 @@ -26517,6 +26187,13 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/carpet/rubber, /area/operations/lower/machinist) +"mch" = ( +/obj/effect/floor_decal/industrial/hatch/red, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/zat) "mcC" = ( /obj/structure/lattice/catwalk/indoor/grate, /obj/structure/platform{ @@ -26598,6 +26275,16 @@ /obj/effect/floor_decal/industrial/warning/cee, /turf/simulated/floor/reinforced/airless, /area/engineering/engine_room) +"mel" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/rnd/hallway/secondary) "meG" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -26710,6 +26397,18 @@ }, /turf/simulated/floor/tiled, /area/horizon/stairwell/central) +"mgJ" = ( +/obj/structure/platform_deco{ + icon_state = "ledge_deco" + }, +/obj/structure/platform_deco{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hor) "mgW" = ( /obj/machinery/light{ dir = 4 @@ -26719,11 +26418,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/engineering/engine_room) -"mhg" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/maintenance/research_port) "mhj" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -26809,15 +26503,26 @@ temperature = 253.15 }, /area/horizon/kitchen/freezer) -"mjA" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, +"mjx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/mauve/diagonal, /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "1-2" }, +/obj/structure/disposalpipe/junction, /turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenological) +/area/rnd/lab) +"mjW" = ( +/obj/structure/bed/stool/chair/sofa/right/purple{ + dir = 1 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - Research Director's Office Foyer"; + dir = 8 + }, +/turf/simulated/floor/carpet/purple, +/area/crew_quarters/heads/hor) "mke" = ( /obj/structure/cable/green{ icon_state = "1-8" @@ -26837,9 +26542,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/storage/primary) -"mli" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/horizon/zat) "mlD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -26931,6 +26633,14 @@ }, /turf/simulated/open/airless, /area/template_noop) +"moj" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen/prechilled, +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/carpet/rubber, +/area/server) "mpd" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/effect/floor_decal/industrial/warning{ @@ -27025,13 +26735,6 @@ /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/tiled/dark/full, /area/hallway/engineering) -"mqs" = ( -/obj/structure/trash_pile, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) "mqE" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 8 @@ -27080,23 +26783,10 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/plating, /area/engineering/engine_room) -"msh" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) +"mso" = ( +/obj/machinery/autolathe, +/turf/simulated/floor/carpet/rubber, +/area/rnd/lab) "mst" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -27188,6 +26878,24 @@ }, /turf/simulated/floor/carpet/red, /area/horizon/crew_quarters/lounge/bar) +"mtp" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/foyer) "mtx" = ( /obj/structure/table/wood, /obj/effect/floor_decal/corner/dark_green{ @@ -27210,6 +26918,12 @@ temperature = 253.15 }, /area/horizon/kitchen/freezer) +"mue" = ( +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d3-4" + }, +/turf/simulated/wall/r_wall, +/area/rnd/xenobiology/xenoflora) "muy" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 5 @@ -27255,6 +26969,12 @@ /obj/random/soap, /turf/simulated/floor/tiled/white, /area/operations/break_room) +"muQ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway/secondary) "mvc" = ( /obj/structure/cable{ icon_state = "1-2" @@ -27276,6 +26996,9 @@ }, /turf/simulated/open, /area/maintenance/research_port) +"mvh" = ( +/turf/simulated/floor/tiled/dark, +/area/rnd/lab) "mvi" = ( /obj/structure/table/wood, /obj/item/flame/candle{ @@ -27284,12 +27007,6 @@ }, /turf/simulated/floor/wood, /area/horizon/crew_quarters/lounge/bar) -"mvo" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) "mvZ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 @@ -27302,6 +27019,26 @@ }, /turf/simulated/floor/tiled/full, /area/hallway/primary/central_one) +"mwg" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/camera/network/research{ + dir = 8; + c_tag = "Xenobio - Cell F"; + network = list("Xeno_Bio") + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"mwm" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "mwv" = ( /obj/structure/railing/mapped{ dir = 1 @@ -27336,6 +27073,12 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/security/checkpoint2) +"mxc" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/railing/mapped, +/obj/machinery/light/small/emergency, +/turf/simulated/floor/plating, +/area/maintenance/research_port) "mxf" = ( /obj/effect/floor_decal/industrial/warning, /obj/item/hullbeacon/red, @@ -27489,6 +27232,40 @@ /obj/machinery/portable_atmospherics/powered/scrubber, /turf/simulated/floor/tiled/dark/full, /area/hallway/engineering) +"mAQ" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenological) +"mBb" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/rnd/hallway/secondary) "mBg" = ( /obj/structure/platform/ledge{ dir = 4 @@ -27519,15 +27296,15 @@ /turf/simulated/floor/tiled/white, /area/medical/main_storage) "mCg" = ( -/obj/structure/sink{ - pixel_y = 1; - dir = 8; - pixel_x = -15 - }, /obj/effect/floor_decal/corner/mauve/diagonal, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/rnd/lab) "mCC" = ( /obj/effect/floor_decal/corner_wide/orange{ dir = 10 @@ -27543,6 +27320,22 @@ /obj/effect/floor_decal/corner/dark_green, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) +"mCU" = ( +/obj/effect/landmark/entry_point/port{ + name = "port, leviathan" + }, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/zat) +"mCV" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/flora/pottedplant_small{ + pixel_x = -16 + }, +/turf/simulated/floor/wood, +/area/rnd/hallway/secondary) "mDa" = ( /obj/machinery/door/airlock/service{ dir = 1; @@ -27552,6 +27345,10 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/full, /area/horizon/custodial/auxiliary) +"mDh" = ( +/obj/machinery/computer/ship/navigation, +/turf/simulated/floor/reinforced, +/area/horizon/zat) "mDD" = ( /obj/machinery/door/airlock/glass{ dir = 1; @@ -27586,6 +27383,14 @@ }, /turf/simulated/floor/tiled/full, /area/medical/ors) +"mEc" = ( +/obj/structure/railing/mapped, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/research_port) "mFc" = ( /obj/machinery/power/apc/low/north, /obj/structure/cable{ @@ -27603,6 +27408,27 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/maintenance/wing/starboard/far) +"mFl" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/research_port) "mFJ" = ( /obj/structure/foamedmetal, /obj/structure/shuttle_part/scc_space_ship{ @@ -27652,10 +27478,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/warden) -"mGP" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/bluegrid/server, -/area/server) "mGY" = ( /obj/machinery/atmospherics/binary/pump/high_power{ dir = 1; @@ -27696,14 +27518,53 @@ }, /turf/simulated/floor/wood, /area/horizon/library) -"mHo" = ( -/obj/machinery/computer/ship/navigation, -/turf/simulated/floor/reinforced, -/area/horizon/zat) +"mHj" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology) "mHG" = ( /obj/structure/lattice, /turf/simulated/open, /area/hallway/primary/central_one) +"mHH" = ( +/turf/simulated/wall/r_wall, +/area/crew_quarters/heads/hor) +"mHM" = ( +/obj/structure/closet/secure_closet/RD, +/obj/effect/floor_decal/industrial/outline/research, +/obj/item/aicard, +/obj/item/device/paicard, +/obj/item/storage/box/gloves, +/obj/item/device/megaphone/sci, +/obj/item/device/taperecorder, +/obj/item/clothing/glasses/welding/superior, +/obj/item/rig/hazmat/equipped, +/obj/item/clothing/mask/gas/half, +/obj/item/storage/box/fancy/candle_box, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/power/apc/north, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/firealarm/west, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hor) "mHO" = ( /turf/simulated/floor/tiled/full, /area/horizon/stairwell/central) @@ -27716,21 +27577,28 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/gen_treatment) +"mIi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/hazardous) "mIk" = ( /obj/structure/bed/stool/chair/office/light{ dir = 4 }, /turf/simulated/floor/plating, /area/engineering/rust_office) -"mIB" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/grass, -/area/rnd/hallway/secondary) "mIN" = ( /obj/structure/platform_stairs/full/east_west_cap{ dir = 8 @@ -27757,15 +27625,6 @@ /obj/machinery/power/apc/critical/south, /turf/simulated/floor/tiled, /area/horizon/stairwell/central) -"mJo" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/grass, -/area/rnd/hallway) "mJx" = ( /obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, /obj/structure/cable/green, @@ -27780,14 +27639,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/brig) -"mKm" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/carpet/rubber, -/area/server) "mKw" = ( /obj/structure/cable/green{ icon_state = "2-4" @@ -27838,15 +27689,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/engineering) -"mKS" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) "mLn" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -27863,13 +27705,11 @@ }, /turf/simulated/floor/plating, /area/operations/lobby) -"mLK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/maintenance/research_port) +"mLH" = ( +/obj/structure/railing/mapped, +/obj/effect/floor_decal/corner/pink/diagonal, +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) "mLL" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/spline/fancy/wood{ @@ -27935,6 +27775,13 @@ /obj/structure/lattice, /turf/simulated/open, /area/maintenance/wing/starboard) +"mMh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) "mMi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -28004,15 +27851,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"mNs" = ( -/obj/machinery/smartfridge/secure/medbay{ - pixel_y = 1; - req_one_access = list(7) - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/chemistry) "mNN" = ( /obj/structure/cable{ icon_state = "4-8" @@ -28025,23 +27863,6 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/substation/medical) -"mNY" = ( -/obj/structure/closet/hazmat/research, -/obj/item/clothing/mask/gas/alt, -/obj/item/tank/oxygen, -/obj/effect/floor_decal/corner/mauve/full{ - dir = 4 - }, -/obj/machinery/button/remote/airlock{ - id = "xeno_entrance_int_b"; - name = "Xenobiology External Access Bolts"; - req_access = list(55); - specialfunctions = 4; - dir = 4; - pixel_x = 23 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) "mOp" = ( /obj/structure/bed/stool/chair/office/light{ dir = 8 @@ -28161,6 +27982,25 @@ "mPl" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/kitchen) +"mPn" = ( +/obj/machinery/door/airlock/glass_research{ + dir = 1; + name = "Xenobotany Lab"; + req_access = list(52) + }, +/obj/effect/map_effect/door_helper/unres{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/xenobiology/xenoflora) "mPo" = ( /obj/structure/table/standard, /obj/item/reagent_containers/spray/cleaner{ @@ -28190,19 +28030,21 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"mPD" = ( -/obj/structure/platform/ledge{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/visible, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) "mPE" = ( /obj/structure/railing/mapped{ dir = 8 }, /turf/simulated/open, /area/horizon/hydroponics) +"mQe" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 1; + name = "Research and Development Maintenance"; + req_access = list(7) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/dark, +/area/rnd/lab) "mQi" = ( /obj/effect/floor_decal/industrial/warning{ dir = 10 @@ -28214,27 +28056,34 @@ /obj/machinery/light/small/emergency, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) -"mQB" = ( -/obj/structure/table/standard, -/obj/machinery/requests_console/east{ - name = "Research Director RC"; - department = "Research Director's Desk"; - announcementConsole = 1 - }, -/obj/machinery/button/switch/windowtint{ - pixel_x = -6; - dir = 5; - pixel_y = 7; - id = "rdoffice" - }, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/heads/hor) "mQR" = ( /obj/effect/floor_decal/spline/plain{ dir = 8 }, /turf/simulated/floor/tiled, /area/horizon/hydroponics) +"mQY" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 1 + }, +/obj/machinery/button/remote/airlock/screamer{ + channel = "Science"; + dir = 1; + id = "server_door_lock"; + message = "The Server Room Airlock's ID lock toggle has been used."; + name = "Server Room Control"; + pixel_y = 32; + req_access = list(47); + specialfunctions = 2 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/light/floor{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway/secondary) "mRl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -28295,26 +28144,17 @@ }, /turf/simulated/floor/tiled/full, /area/engineering/lobby) -"mSg" = ( -/obj/structure/filingcabinet{ - pixel_x = -7 - }, -/obj/structure/filingcabinet/chestdrawer{ - pixel_x = 7 - }, -/obj/machinery/light{ - dir = 4 +"mRW" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/foyer) -"mTw" = ( -/obj/machinery/smartfridge, -/obj/structure/platform/ledge{ +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/platform/ledge, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hor) "mUe" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 @@ -28442,15 +28282,6 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/medical) -"mWg" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/structure/table/rack, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/research_port) "mWs" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 9 @@ -28460,13 +28291,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_two) -"mWv" = ( -/obj/machinery/vending/coffee, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/rnd/hallway/secondary) "mWQ" = ( /turf/simulated/wall/r_wall, /area/rnd/lab) @@ -28585,17 +28409,6 @@ }, /turf/simulated/floor/tiled, /area/operations/lobby) -"mYD" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/firealarm/east, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) "mYK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -28614,29 +28427,34 @@ }, /turf/simulated/floor/tiled/full, /area/hallway/primary/central_two) -"mZX" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 +"mYL" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 1 }, -/obj/structure/cable/green{ - icon_state = "1-8" +/obj/machinery/light{ + dir = 4 }, -/obj/machinery/light/floor, /turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/hazardous) -"nag" = ( +/area/rnd/xenobiology) +"mZd" = ( /obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 10 + dir = 8 }, -/obj/structure/table/standard, -/obj/structure/flora/pottedplant{ - pixel_y = 16 +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/dark, /area/rnd/xenobiology/xenoflora) +"nac" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/rnd/lab) "nam" = ( /obj/structure/lattice/catwalk, /obj/structure/cable/green{ @@ -28668,6 +28486,16 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/kitchen) +"naN" = ( +/obj/structure/platform, +/obj/machinery/papershredder{ + pixel_x = 7 + }, +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = -7 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hor) "naQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -28680,9 +28508,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/storage/secure) -"naZ" = ( -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology/dissection) "nbd" = ( /obj/structure/closet/walllocker/medical/secure{ name = "Stabilization Kit"; @@ -28730,6 +28555,23 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) +"nbo" = ( +/obj/structure/closet/hazmat/research, +/obj/item/clothing/mask/gas/alt, +/obj/item/tank/oxygen, +/obj/effect/floor_decal/corner/mauve/full{ + dir = 4 + }, +/obj/machinery/button/remote/airlock{ + id = "xeno_entrance_int_b"; + name = "Xenobiology External Access Bolts"; + req_access = list(55); + specialfunctions = 4; + dir = 4; + pixel_x = 23 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology) "nbJ" = ( /obj/structure/cable{ icon_state = "4-8" @@ -28745,23 +28587,16 @@ }, /turf/simulated/floor/tiled/full, /area/engineering/lobby) -"nck" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/obj/machinery/button/remote/airlock{ - id = "xeno_entrance_int_b"; - name = "Xenobiology External Access Bolts"; - req_access = list(55); - specialfunctions = 4; - dir = 8; - pixel_x = -23 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) "ncx" = ( /turf/simulated/floor/tiled, /area/operations/lower/machinist) +"ncA" = ( +/obj/structure/table/reinforced/glass, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/rnd/conference) "ncN" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -28782,6 +28617,15 @@ /obj/structure/railing/mapped, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) +"ndn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/carpet/rubber, +/area/server) "ndD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/railing/mapped{ @@ -28790,6 +28634,20 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/engineering/engine_room) +"ndW" = ( +/obj/machinery/computer/message_monitor, +/turf/simulated/floor/carpet/rubber, +/area/server) +"neB" = ( +/obj/structure/platform_stairs/full/east_west_cap, +/obj/structure/platform/cutout{ + dir = 8 + }, +/obj/structure/platform{ + dir = 1 + }, +/turf/simulated/floor/carpet/purple, +/area/crew_quarters/heads/hor) "neT" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -28837,12 +28695,25 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/bar) -"nfE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"nfK" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, -/turf/simulated/floor/carpet/rubber, -/area/rnd/lab) +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "nfN" = ( /obj/effect/floor_decal/corner/dark_green/full{ dir = 8 @@ -28861,6 +28732,59 @@ }, /turf/simulated/floor/tiled, /area/horizon/hydroponics/garden) +"nfW" = ( +/obj/machinery/smartfridge, +/obj/structure/platform/ledge{ + dir = 4 + }, +/obj/structure/platform/ledge, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"nga" = ( +/obj/machinery/turretid/lethal{ + ailock = 1; + check_synth = 1; + name = "\improper Situational Control Armaments Turret Control"; + pixel_x = 28; + req_access = null; + req_one_access = list(19,43) + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'WARNING: BEWARE OF HIGH-YIELD DEFENSIVE TURRETS. DO NOT PASS WITHOUT PROPER AUTHORIZATION. EXTREME DANGER WITHIN THIS PERIMETER.'."; + name = "\improper WARNING: PRIMARY ARMAMENT sign"; + pixel_x = -32 + }, +/obj/machinery/button/remote/airlock{ + dir = 8; + id = "bolts_cannon_entrance"; + name = "Entrance Airlock Bolts"; + pixel_x = 22; + pixel_y = 12; + req_one_access = list(19,43); + specialfunctions = 4 + }, +/obj/machinery/button/remote/airlock{ + dir = 8; + id = "bolts_cannon_external"; + name = "Primary Armament Exterior Bolts"; + pixel_x = 22; + pixel_y = -13; + req_one_access = list(19,43); + specialfunctions = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/camera/motion{ + c_tag = "ZAT Access Aft"; + dir = 4; + network = list("Command","Security") + }, +/turf/simulated/floor/plating, +/area/horizon/zat) "nge" = ( /turf/simulated/wall/r_wall, /area/engineering/lobby) @@ -28903,25 +28827,28 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, /area/engineering/engine_room) -"nhD" = ( -/obj/machinery/door/airlock/hatch{ - dir = 1; - icon_state = "door_locked"; - id_tag = "bolts_cannon_internal"; - locked = 1; - name = "Primary Armament Interior"; - req_one_access = list(19,43); - secured_wires = 1 +"ngE" = ( +/obj/structure/sign/directions/prop{ + dir = 4; + pixel_x = 32; + pixel_y = 24 }, -/obj/effect/floor_decal/industrial/hatch/red, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "1-2" +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"ngG" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/horizon/zat) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) "nhF" = ( /obj/structure/bed/stool/chair/padded/black, /obj/effect/floor_decal/spline/fancy/wood{ @@ -28965,29 +28892,15 @@ }, /turf/simulated/floor/tiled, /area/operations/lower/machinist) -"niD" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ +"nir" = ( +/obj/effect/floor_decal/corner/lime/full{ dir = 4 }, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora) -"niJ" = ( -/obj/effect/floor_decal/corner/mauve/full, -/obj/machinery/camera/network/research{ - c_tag = "Research - Corridor Camera 4"; - dir = 4 - }, -/obj/machinery/light/floor{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) "niR" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/table/steel, @@ -29108,12 +29021,6 @@ /obj/effect/floor_decal/corner/yellow/diagonal, /turf/simulated/floor/tiled, /area/hallway/engineering) -"nkZ" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) "nlr" = ( /turf/simulated/wall/r_wall, /area/engineering/storage_hard) @@ -29218,12 +29125,46 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/hallway/deck_two/fore) -"nnL" = ( +"nnk" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 + }, +/obj/machinery/light/floor{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) +"nnm" = ( +/obj/machinery/door/window/southleft, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) +"nnr" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/rnd/hallway) +"nnt" = ( /obj/effect/floor_decal/corner/mauve{ - dir = 5 + dir = 6 + }, +/obj/machinery/power/apc/east, +/obj/structure/cable/green{ + icon_state = "0-8" }, /turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenological) +/area/rnd/xenobiology) "noi" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -29315,28 +29256,6 @@ /obj/structure/railing/mapped, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"npO" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"nqe" = ( -/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/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/maintenance/research_port) "nqm" = ( /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, @@ -29383,10 +29302,6 @@ }, /turf/simulated/floor/wood, /area/operations/qm) -"nrM" = ( -/obj/effect/floor_decal/corner/pink/diagonal, -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) "nsn" = ( /obj/effect/floor_decal/corner/brown{ dir = 10 @@ -29397,24 +29312,20 @@ }, /turf/simulated/floor/tiled, /area/operations/lobby) -"nsu" = ( -/obj/machinery/door/airlock/glass_research{ - dir = 1; - name = "Exploratory Chemistry"; - req_access = list(7) - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/chemistry) "nsx" = ( /obj/structure/girder, /turf/simulated/floor/plating, /area/maintenance/wing/starboard/far) +"ntg" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/small/north, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry) "ntt" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/portable_atmospherics/canister/hydrogen, @@ -29507,12 +29418,6 @@ }, /turf/simulated/floor/reinforced/airless, /area/engineering/engine_room/rust) -"nwO" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/telesci) "nxk" = ( /obj/structure/disposalpipe/trunk{ dir = 8 @@ -29547,22 +29452,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/engineering/engine_room/rust) -"nyi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/hazardous) "nyw" = ( /obj/machinery/power/terminal, /obj/structure/cable{ @@ -29573,13 +29462,6 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/medical) -"nyC" = ( -/obj/machinery/optable, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/dissection) "nyF" = ( /obj/structure/table/standard, /obj/structure/window/reinforced{ @@ -29628,13 +29510,6 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_room/rust) -"nAj" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/machinery/light/floor, -/turf/simulated/floor/tiled/white, -/area/rnd/conference) "nAq" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -29693,12 +29568,6 @@ /obj/machinery/light/small, /turf/simulated/floor/tiled, /area/maintenance/aux_atmospherics/deck_2/starboard/wing) -"nBg" = ( -/obj/structure/window/shuttle/scc_space_ship/cardinal, -/obj/structure/disposalpipe/segment, -/obj/structure/grille, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology/xenoflora) "nBi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -29807,15 +29676,17 @@ }, /turf/simulated/floor/wood, /area/horizon/crew_quarters/lounge/bar) -"nDq" = ( -/obj/machinery/light{ - dir = 8 +"nCZ" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 13 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) +/obj/machinery/firealarm/east, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/dissection) "nDx" = ( /obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, /obj/structure/cable/green{ @@ -29846,15 +29717,6 @@ /obj/machinery/light/small/emergency, /turf/simulated/floor/tiled/dark/full, /area/horizon/secure_ammunition_storage) -"nDS" = ( -/obj/machinery/requests_console/east{ - department = "Research - Xenological Studies"; - name = "Xenological Studies Request Console" - }, -/obj/structure/closet/crate, -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenological) "nEe" = ( /obj/structure/lattice/catwalk, /obj/structure/railing/mapped{ @@ -29887,6 +29749,21 @@ }, /turf/simulated/open, /area/operations/office) +"nFm" = ( +/obj/structure/table/wood, +/obj/random/pottedplant_small{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/item/flame/candle{ + pixel_x = 10; + pixel_y = 2 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hor) "nFs" = ( /obj/structure/window/shuttle/scc_space_ship, /obj/structure/grille, @@ -29926,9 +29803,6 @@ }, /turf/simulated/floor/tiled, /area/operations/lobby) -"nFP" = ( -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology/xenological) "nFQ" = ( /obj/effect/landmark/entry_point/fore{ name = "fore, kitchen freezer" @@ -29964,6 +29838,10 @@ }, /turf/simulated/floor/tiled/dark/full, /area/engineering/smes/rust) +"nGt" = ( +/obj/machinery/chem_heater, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/chemistry) "nGI" = ( /obj/effect/floor_decal/corner/dark_green/full{ dir = 8 @@ -29982,14 +29860,6 @@ }, /turf/simulated/floor/tiled/full, /area/engineering/storage_hard) -"nHb" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/effect/floor_decal/corner/pink/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) "nHY" = ( /obj/effect/floor_decal/corner/yellow/full{ dir = 4 @@ -30064,13 +29934,16 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/secure_ammunition_storage) -"nKk" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 +"nKt" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenological) "nKA" = ( /obj/structure/ladder/up{ pixel_y = 16 @@ -30104,6 +29977,23 @@ }, /turf/simulated/floor/carpet/red, /area/horizon/crew_quarters/lounge/bar) +"nLe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"nLg" = ( +/obj/machinery/porta_turret/stationary{ + req_access = list(19); + req_one_access = null + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/zat) "nLC" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/corner/dark_blue/diagonal, @@ -30161,6 +30051,13 @@ }, /turf/simulated/floor/tiled/full, /area/hallway/engineering/rust) +"nMU" = ( +/obj/machinery/firealarm/north, +/obj/structure/table/rack, +/obj/item/storage/toolbox/mechanical, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) "nMY" = ( /obj/machinery/light{ dir = 8 @@ -30177,12 +30074,6 @@ }, /turf/simulated/open/airless, /area/horizon/exterior) -"nNl" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) "nNv" = ( /obj/effect/floor_decal/corner/yellow{ dir = 6 @@ -30204,31 +30095,27 @@ }, /turf/simulated/floor/wood, /area/horizon/crew_quarters/lounge/bar) -"nNT" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/hazardous) -"nOn" = ( -/obj/machinery/door/window/holowindoor, -/obj/machinery/door/window/holowindoor{ - dir = 1 +"nOi" = ( +/obj/structure/bed/stool/chair/office/bridge/generic{ + dir = 8 }, -/obj/machinery/door/blast/regular/open{ - dir = 8; - fail_secure = 1; - id = "xenobio_e"; - name = "Cell Containment Blast Door" +/obj/machinery/zat_lever{ + pixel_x = 28 }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology) +/turf/simulated/floor/reinforced, +/area/horizon/zat) "nOu" = ( /obj/effect/floor_decal/corner_wide/lime{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/medical/reception) +"nOJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/carpet/rubber, +/area/rnd/lab) "nOS" = ( /obj/structure/railing/mapped{ dir = 4 @@ -30247,10 +30134,20 @@ }, /turf/simulated/floor/tiled/dark/full, /area/engineering/engine_monitoring) -"nPx" = ( -/obj/structure/platform_stairs, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/telesci) +"nPA" = ( +/obj/machinery/disposal/small/north, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hor) "nPG" = ( /obj/structure/lattice/catwalk/indoor, /turf/simulated/open/airless, @@ -30269,16 +30166,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/operations/lower/machinist/surgicalbay) -"nRW" = ( -/obj/structure/platform_stairs/full/east_west_cap, -/obj/structure/platform/cutout{ - dir = 8 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/heads/hor) "nSV" = ( /obj/structure/shuttle_part/scc_space_ship{ icon_state = "d3-4-f" @@ -30335,6 +30222,16 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, /area/operations/office) +"nTF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/maintenance/research_port) "nTS" = ( /turf/simulated/wall/r_wall, /area/hallway/engineering) @@ -30371,14 +30268,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/bar) -"nUk" = ( -/obj/structure/platform, -/obj/structure/table/standard, -/obj/item/device/flashlight/lamp{ - pixel_y = -7 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/lab) "nUN" = ( /turf/simulated/wall/r_wall, /area/hallway/primary/central_one) @@ -30426,15 +30315,6 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"nWf" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/structure/platform_stairs{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) "nWu" = ( /obj/effect/floor_decal/corner_wide/paleblue{ dir = 9 @@ -30470,12 +30350,30 @@ }, /turf/simulated/floor/tiled/white, /area/hallway/medical) -"nYL" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"nXQ" = ( +/obj/structure/table/standard, +/obj/item/pen, +/obj/item/paper_scanner{ + pixel_x = -6; + pixel_y = 4 }, -/turf/simulated/floor/carpet/rubber, -/area/server) +/obj/item/circuitboard/aicore{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/machinery/light/floor{ + dir = 1 + }, +/turf/simulated/floor/carpet/purple, +/area/crew_quarters/heads/hor) +"nYZ" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign describing some terrible danger beyond these walls. The particular danger being a weapon of extreme power. The wall is probably for the best."; + icon_state = "shock"; + name = "WARNING: RADIOACTIVE HIGH-YIELD ENERGETIC WEAPONS WITHIN" + }, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/zat) "nZf" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 5 @@ -30583,6 +30481,40 @@ }, /turf/simulated/floor/tiled, /area/operations/office) +"oaQ" = ( +/obj/effect/floor_decal/corner/white{ + dir = 5 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) +"oaT" = ( +/obj/machinery/door/blast/regular/open{ + dir = 2; + fail_secure = 1; + id = "xenobio_d"; + name = "Cell Containment Blast Door" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/disposal/deliveryChute{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/door/window/westleft, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/xenobiology) "oaX" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 @@ -30626,6 +30558,10 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/bar) +"oby" = ( +/obj/machinery/light, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/hazardous) "obJ" = ( /obj/effect/floor_decal/industrial/warning/full, /obj/machinery/porta_turret, @@ -30649,6 +30585,34 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled, /area/operations/lobby) +"obZ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/structure/sign/science{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/light/floor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) "oca" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -30656,6 +30620,19 @@ /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/carpet/rubber, /area/engineering/engine_monitoring) +"ocm" = ( +/obj/machinery/power/apc/east, +/obj/structure/cable/green, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/disposal/small/west, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/dissection) "odq" = ( /obj/effect/floor_decal/corner/brown/full{ dir = 4 @@ -30687,10 +30664,6 @@ /obj/item/storage/box/sharps, /turf/simulated/floor/tiled/white, /area/medical/ors) -"oex" = ( -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) "oeI" = ( /obj/structure/table/standard, /obj/structure/window/reinforced, @@ -30713,6 +30686,16 @@ }, /turf/simulated/floor/tiled/dark, /area/maintenance/wing/starboard) +"ofb" = ( +/obj/structure/table/standard, +/obj/item/folder/envelope/zat, +/obj/machinery/camera/motion{ + c_tag = "ZAT Fore Port"; + dir = 8; + network = list("Command","Security") + }, +/turf/simulated/floor/reinforced, +/area/horizon/zat) "off" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp{ @@ -30721,12 +30704,6 @@ }, /turf/simulated/floor/carpet, /area/chapel/office) -"oft" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) "ofR" = ( /obj/structure/lattice/catwalk/indoor/grate, /obj/random/junk, @@ -30737,6 +30714,21 @@ dir = 8 }, /area/maintenance/wing/starboard) +"oge" = ( +/obj/structure/table/reinforced/steel, +/obj/machinery/door/window/desk/southright{ + desc = "Research Desk"; + req_access = list(7) + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + id = "science_chem_desk"; + name = "Exploratory Chemistry"; + opacity = 0 + }, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/chemistry) "ogf" = ( /obj/machinery/door/firedoor, /obj/machinery/door/blast/shutters/open{ @@ -30760,28 +30752,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/deck_two/fore) -"ogF" = ( -/obj/structure/platform, -/obj/structure/closet/secure_closet/scientist, -/obj/structure/window/borosilicate{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/lab) -"ogN" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) "ogR" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -30849,6 +30819,9 @@ }, /turf/simulated/floor/tiled/full, /area/hallway/primary/central_two) +"oia" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/template_noop) "oif" = ( /obj/structure/sign/examroom{ pixel_y = 32 @@ -30893,6 +30866,13 @@ /obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/tiled, /area/horizon/security/hallway) +"oiJ" = ( +/obj/effect/floor_decal/industrial/outline/engineering, +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Leviathan Substation" + }, +/turf/simulated/floor/plating, +/area/horizon/zat) "oiL" = ( /obj/structure/shuttle_part/scc_space_ship{ icon_state = "d3-4-f" @@ -30941,21 +30921,6 @@ }, /turf/simulated/floor/tiled, /area/operations/lobby) -"ojh" = ( -/obj/machinery/hologram/holopad/long_range, -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"ojG" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1; - level = 2 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) "ojK" = ( /obj/structure/shuttle_part/scc_space_ship{ icon_state = "d3-3-f" @@ -30990,15 +30955,12 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/hallway/deck_two/fore) -"oka" = ( -/obj/machinery/door/airlock/glass_research{ - dir = 1; - name = "Containment"; - req_access = list(55) +"okk" = ( +/obj/machinery/light/small{ + dir = 8 }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/hazardous) +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) "okq" = ( /obj/machinery/door/blast/shutters{ density = 0; @@ -31011,6 +30973,19 @@ /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, /area/medical/first_responder) +"okP" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/machinery/light/floor, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"olJ" = ( +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d3-5" + }, +/turf/simulated/wall/r_wall, +/area/maintenance/wing/port/far) "omf" = ( /obj/structure/cable{ icon_state = "4-8" @@ -31032,6 +31007,17 @@ }, /turf/simulated/floor/reinforced/airless, /area/engineering/engine_room/rust) +"omD" = ( +/obj/machinery/requests_console/east{ + department = "Science Conference Room"; + departmentType = 2; + name = "Science Conference Room" + }, +/obj/effect/floor_decal/corner/mauve/full{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/conference) "omH" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/corner_wide/yellow{ @@ -31040,6 +31026,30 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/full, /area/hallway/engineering) +"omP" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/disposal/deliveryChute{ + dir = 4 + }, +/obj/machinery/door/window/eastleft, +/obj/machinery/door/blast/regular/open{ + fail_secure = 1; + id = "xenobio_a"; + name = "Cell Containment Blast Door" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/xenobiology) "omQ" = ( /obj/machinery/atmospherics/portables_connector{ dir = 8 @@ -31076,6 +31086,15 @@ /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /turf/simulated/floor/tiled/full, /area/hallway/primary/central_one) +"ool" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology) "oou" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/railing/mapped{ @@ -31084,6 +31103,24 @@ /obj/item/hullbeacon/red, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) +"ooS" = ( +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d3-2" + }, +/turf/template_noop, +/area/template_noop) +"ooZ" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/full{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenological) "opb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -31148,6 +31185,35 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/engineering/engine_room) +"opW" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/telesci) +"oqb" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"oqm" = ( +/obj/structure/bookcase, +/obj/item/book/manual/mass_spectrometry, +/obj/item/book/manual/materials_chemistry_analysis, +/obj/item/book/manual/excavation, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenological) "oqv" = ( /obj/machinery/door/airlock/hatch{ dir = 1; @@ -31157,15 +31223,6 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/wing/starboard/far) -"oqw" = ( -/obj/effect/floor_decal/corner/lime/full{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) "oqB" = ( /obj/machinery/light_switch{ pixel_x = 9; @@ -31262,14 +31319,16 @@ /obj/item/reagent_containers/blood/OMinus, /turf/simulated/floor/tiled/white, /area/medical/icu) -"otj" = ( -/obj/structure/table/reinforced/glass, -/obj/effect/floor_decal/spline/fancy/wood, -/obj/structure/cable/green{ - icon_state = "1-4" +"otf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, -/turf/simulated/floor/wood, -/area/rnd/conference) +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/lab) "otm" = ( /obj/structure/platform/ledge{ dir = 1 @@ -31294,19 +31353,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/secure_ammunition_storage) -"oty" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) "otI" = ( /obj/item/device/radio/intercom/south, /obj/structure/disposalpipe/junction{ @@ -31318,6 +31364,11 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) +"ouk" = ( +/obj/structure/bed/stool/chair/office/dark, +/obj/effect/floor_decal/corner/mauve/diagonal, +/turf/simulated/floor/tiled/white, +/area/rnd/lab) "ouo" = ( /obj/machinery/light{ dir = 1 @@ -31329,13 +31380,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/security/brig) -"ous" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) "out" = ( /obj/machinery/door/firedoor, /obj/machinery/light{ @@ -31360,6 +31404,11 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/hallway/primary/central_two) +"ovu" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/ship_weapon_dummy, +/turf/simulated/floor/plating, +/area/horizon/zat) "ovz" = ( /obj/structure/cable{ icon_state = "4-8" @@ -31376,18 +31425,6 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/hallway/engineering/rust) -"ovD" = ( -/obj/structure/table/standard, -/obj/item/storage/box/beakers{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/box/syringes{ - pixel_y = 2; - pixel_x = -8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/chemistry) "ovI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -31467,12 +31504,6 @@ }, /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/maintenance/wing/starboard) -"oxj" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/structure/reagent_dispensers/extinguisher, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled, -/area/maintenance/wing/port) "oxr" = ( /obj/effect/floor_decal/corner_wide/green{ dir = 9 @@ -31483,6 +31514,13 @@ }, /turf/simulated/floor/tiled/white, /area/medical/exam) +"oxN" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/structure/ship_weapon_dummy, +/turf/simulated/floor/plating, +/area/horizon/zat) "oyf" = ( /obj/effect/floor_decal/corner_wide/grey/diagonal, /obj/structure/noticeboard{ @@ -31507,18 +31545,15 @@ }, /turf/simulated/floor/tiled/dark/full, /area/turbolift/scc_ship/morgue_lift) -"ozl" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 +"ozr" = ( +/obj/structure/window/reinforced, +/obj/structure/cable/green{ + icon_state = "0-8" }, -/obj/structure/reagent_dispensers/watertank, -/obj/item/reagent_containers/glass/bucket, +/obj/effect/floor_decal/industrial/hatch/red, +/obj/machinery/power/apc/critical/east, /turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) +/area/horizon/zat) "ozs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -31587,6 +31622,18 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) +"oAw" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway/secondary) "oAy" = ( /obj/structure/closet/crate/freezer{ name = "Assorted Blood Packs" @@ -31628,6 +31675,13 @@ }, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) +"oBe" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "oBl" = ( /obj/structure/table/standard, /obj/item/device/flash/synthetic{ @@ -31716,12 +31770,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) -"oCb" = ( -/obj/structure/platform, -/obj/structure/closet/crate, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/rnd/lab) "oCi" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_service{ @@ -31746,23 +31794,6 @@ }, /turf/simulated/floor/reinforced/reactor, /area/engineering/engine_room) -"oCq" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "xenobio_d"; - name = "Cell Containment Blast Doors"; - pixel_x = 21; - req_access = list(47) - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) "oCz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -31813,6 +31844,12 @@ }, /turf/simulated/open/airless, /area/template_noop) +"oDz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) "oDV" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -31836,16 +31873,6 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"oEs" = ( -/obj/machinery/light/small/red{ - dir = 4 - }, -/obj/machinery/door/window/northright, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/carpet/rubber, -/area/horizon/zat) "oEy" = ( /obj/effect/floor_decal/corner_wide/yellow{ dir = 6 @@ -31858,27 +31885,6 @@ /obj/machinery/alarm/east, /turf/simulated/floor/tiled, /area/hallway/engineering) -"oEH" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 1 - }, -/obj/machinery/light/floor{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"oET" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/structure/platform_deco{ - dir = 8 - }, -/obj/structure/platform_deco{ - icon_state = "ledge_deco" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) "oEV" = ( /obj/structure/railing/mapped, /obj/structure/sign/directions/prop{ @@ -31886,19 +31892,6 @@ }, /turf/simulated/open, /area/hallway/engineering) -"oFh" = ( -/obj/machinery/shieldwallgen, -/obj/effect/floor_decal/corner/mauve/full, -/obj/machinery/camera/network/research{ - c_tag = "Xenobiology - Hazardous Specimen"; - dir = 1; - network = list("Research","Xeno_Bio") - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/hazardous) "oFp" = ( /obj/effect/floor_decal/spline/plain/cee{ dir = 1 @@ -31909,10 +31902,6 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/horizon/security/holding_cell_a) -"oFO" = ( -/obj/structure/table/rack, -/turf/simulated/floor/plating, -/area/maintenance/research_port) "oGp" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 1 @@ -31942,18 +31931,6 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_two/fore/starboard) -"oHS" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) "oHX" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ @@ -31996,6 +31973,18 @@ }, /turf/simulated/floor/tiled/dark/full, /area/engineering/engine_room) +"oJZ" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/machinery/light/floor{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway/secondary) "oKf" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/effect/floor_decal/spline/plain{ @@ -32077,20 +32066,6 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) -"oKT" = ( -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"oKY" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/shower{ - pixel_y = 12 - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology) "oLn" = ( /obj/effect/floor_decal/industrial/warning{ dir = 5 @@ -32128,17 +32103,6 @@ "oMC" = ( /turf/simulated/open, /area/horizon/stairwell/central) -"oMH" = ( -/obj/effect/floor_decal/corner/pink/diagonal, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) "oNv" = ( /obj/structure/table/wood, /obj/effect/floor_decal/spline/fancy/wood{ @@ -32170,15 +32134,6 @@ }, /turf/simulated/floor/plating, /area/maintenance/wing/port/far) -"oNN" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/effect/floor_decal/corner/pink/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/extinguisher_cabinet/west, -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) "oNS" = ( /obj/structure/bookcase/libraryspawn/fiction, /turf/simulated/floor/carpet/brown, @@ -32198,6 +32153,31 @@ }, /turf/simulated/floor/tiled/full, /area/rnd/hallway) +"oOt" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/bed/stool/chair/sofa/left/purple{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/rnd/hallway/secondary) +"oOC" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/machinery/disposal/small/west, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/rnd/hallway/secondary) "oPh" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -32209,15 +32189,6 @@ }, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) -"oPB" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/spline/plain{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/r_n_d/protolathe, -/turf/simulated/floor/carpet/rubber, -/area/rnd/lab) "oPC" = ( /obj/machinery/firealarm/west, /obj/effect/floor_decal/corner/yellow{ @@ -32250,13 +32221,6 @@ }, /turf/simulated/open/airless, /area/template_noop) -"oQp" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/obj/machinery/alarm/west, -/turf/simulated/floor/tiled/white, -/area/rnd/conference) "oQy" = ( /obj/structure/cable{ icon_state = "1-8" @@ -32272,35 +32236,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) -"oQG" = ( -/obj/machinery/light/small/emergency, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/item/trash/mollusc_shell, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"oQV" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) "oRc" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 9 @@ -32327,6 +32262,12 @@ "oRn" = ( /turf/simulated/floor/lino, /area/horizon/crew_quarters/lounge/bar) +"oRo" = ( +/obj/item/trap/animal/large, +/obj/item/trap/animal/large, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/xenobiology/foyer) "oRF" = ( /obj/structure/foamedmetal, /turf/simulated/floor/plating, @@ -32372,6 +32313,15 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark/full, /area/engineering/storage_hard) +"oSM" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/structure/disposaloutlet, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) "oSQ" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 4 @@ -32382,24 +32332,6 @@ "oTa" = ( /turf/simulated/floor/tiled, /area/maintenance/aux_atmospherics/deck_2/starboard/wing) -"oTB" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) "oTE" = ( /obj/machinery/light{ dir = 4 @@ -32432,36 +32364,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark/full, /area/horizon/hydroponics) -"oUe" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/door/blast/regular/open{ - dir = 2; - fail_secure = 1; - id = "xenobio_c"; - name = "Cell Containment Blast Door" - }, -/obj/machinery/door/window/holowindoor{ - dir = 8; - req_access = list(55) - }, -/obj/machinery/door/window/holowindoor{ - dir = 4; - req_access = list(55) - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology) -"oUj" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/bed/stool/chair/sofa/right/red{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/rnd/hallway) "oUt" = ( /turf/simulated/wall, /area/medical/first_responder) @@ -32480,27 +32382,13 @@ }, /turf/simulated/floor/wood, /area/horizon/crew_quarters/lounge/bar) -"oUF" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/conference) -"oUH" = ( -/turf/simulated/floor/tiled/dark, -/area/rnd/lab) -"oUX" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/structure/platform{ +"oVe" = ( +/obj/structure/railing/mapped{ dir = 8 }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/maintenance/research_port) "oVk" = ( /obj/item/modular_computer/console/preset/command{ dir = 4 @@ -32508,13 +32396,6 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/operations/qm) -"oVH" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/structure/ship_weapon_dummy, -/turf/simulated/floor/plating, -/area/horizon/zat) "oWm" = ( /obj/structure/table/reinforced/steel, /obj/machinery/door/window/southleft{ @@ -32562,15 +32443,6 @@ }, /turf/simulated/floor/wood, /area/chapel/main) -"oWV" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/porta_turret/sniper, -/obj/machinery/light/small/emergency, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/zat) "oWW" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -32599,6 +32471,22 @@ }, /turf/simulated/floor/tiled, /area/medical/first_responder) +"oXi" = ( +/obj/structure/table/standard, +/obj/item/gun/energy/mousegun/xenofauna, +/obj/item/melee/baton/stunrod, +/obj/effect/floor_decal/corner/mauve/full{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/hazardous) +"oXn" = ( +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d3-5" + }, +/turf/simulated/wall/r_wall, +/area/rnd/xenobiology/xenoflora) "oXu" = ( /obj/structure/table/wood, /obj/random/pottedplant_small{ @@ -32637,22 +32525,12 @@ }, /turf/simulated/floor/tiled, /area/engineering/lobby) +"oXF" = ( +/turf/simulated/floor/reinforced, +/area/horizon/zat) "oXY" = ( /turf/simulated/floor/tiled/dark, /area/maintenance/wing/starboard) -"oYa" = ( -/obj/machinery/door/window/holowindoor{ - dir = 1 - }, -/obj/machinery/door/window/holowindoor, -/obj/machinery/door/blast/regular/open{ - fail_secure = 1; - id = "xenobio_f"; - name = "Cell Containment Blast Door"; - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology) "oYc" = ( /obj/effect/floor_decal/corner/dark_blue/full{ dir = 8 @@ -32663,16 +32541,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"oYe" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/rnd/hallway) "oYp" = ( /obj/structure/closet/crate/solar, /obj/item/stack/material/graphite/full, @@ -32711,39 +32579,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/icu) -"oYR" = ( -/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/structure/lattice/catwalk/indoor/grate, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port) -"oYU" = ( -/obj/machinery/chemical_dispenser, -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"oYV" = ( -/obj/structure/table/standard, -/obj/item/gun/energy/mousegun/xenofauna, -/obj/item/melee/baton/stunrod, -/obj/effect/floor_decal/corner/mauve/full{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/hazardous) "oZh" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 1 @@ -32860,19 +32695,13 @@ }, /turf/simulated/floor/tiled/white, /area/medical/ors) -"paQ" = ( -/obj/structure/disposalpipe/segment{ +"paV" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/machinery/light{ dir = 4 }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/camera/network/research{ - c_tag = "Research - Corridor Camera 1"; - dir = 1 - }, /turf/simulated/floor/tiled, -/area/rnd/hallway) +/area/rnd/xenobiology) "pbK" = ( /obj/machinery/power/emitter/gyrotron/anchored{ dir = 1; @@ -32927,6 +32756,28 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/dark/full, /area/operations/lower/machinist/surgicalbay) +"pch" = ( +/obj/machinery/firealarm/north, +/obj/effect/floor_decal/corner/mauve/full{ + dir = 1 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = 23 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/conference) +"pcx" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "cannon_view"; + name = "viewing blast doors" + }, +/turf/simulated/floor/plating, +/area/horizon/zat) "pcG" = ( /obj/structure/cable/green, /obj/machinery/power/apc/low/south, @@ -32941,25 +32792,6 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/maintenance/wing/port/far) -"pcM" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) -"pdq" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/computer/rdconsole/core{ - dir = 4 - }, -/obj/machinery/light/floor{ - dir = 8 - }, -/turf/simulated/floor/carpet/rubber, -/area/rnd/lab) "pdv" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 10 @@ -33000,6 +32832,18 @@ /obj/effect/floor_decal/industrial/warning/cee, /turf/simulated/floor/tiled/dark/airless, /area/horizon/exterior) +"pev" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "pew" = ( /obj/effect/floor_decal/corner/brown/full{ dir = 8 @@ -33007,20 +32851,22 @@ /obj/random/pottedplant, /turf/simulated/floor/tiled, /area/operations/office) -"peK" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hor) "peL" = ( /turf/simulated/floor/plating, /area/engineering/rust_office) +"peX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - Corridor Camera 1"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) "pfb" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4 @@ -33043,6 +32889,25 @@ }, /turf/simulated/floor/tiled/dark/full, /area/storage/secure) +"pfr" = ( +/obj/machinery/door/airlock/glass_research{ + dir = 1; + id_tag = "xeno_entrance_ext"; + name = "Xenobiology Foyer"; + req_access = list(55); + locked = 1 + }, +/obj/effect/map_effect/door_helper/unres, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/foyer) "pfB" = ( /obj/effect/floor_decal/corner/brown{ dir = 10 @@ -33052,13 +32917,6 @@ }, /turf/simulated/floor/tiled, /area/operations/lobby) -"pfO" = ( -/obj/structure/bed/stool/chair/unmovable, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/carpet/rubber, -/area/rnd/xenobiology/dissection) "pgi" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/window/westright{ @@ -33094,26 +32952,24 @@ /obj/structure/platform, /turf/simulated/floor/tiled/full, /area/hallway/engineering) -"pgs" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/door/blast/regular/open{ - fail_secure = 1; - id = "xenobio_a"; - name = "Cell Containment Blast Door" +"pgD" = ( +/obj/effect/floor_decal/corner/black{ + dir = 5 }, -/obj/machinery/door/window/holowindoor{ - dir = 8; - req_access = list(55) +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/machinery/door/window/holowindoor{ - dir = 4; - req_access = list(55) +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/machinery/door/firedoor{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) "pgF" = ( /obj/structure/cable/orange{ icon_state = "4-8" @@ -33149,11 +33005,6 @@ }, /turf/simulated/floor/tiled, /area/operations/lower/machinist) -"pim" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/maintenance/aft) "pin" = ( /obj/item/device/radio/intercom/north, /obj/effect/floor_decal/spline/fancy/wood{ @@ -33210,13 +33061,6 @@ /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, /area/horizon/hallway/deck_two/fore) -"pjm" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) "pjs" = ( /obj/structure/lattice/catwalk/indoor/grate, /obj/machinery/light/small/emergency{ @@ -33229,14 +33073,6 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled/full, /area/hallway/primary/central_one) -"pjD" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) "pjK" = ( /obj/random/pottedplant, /obj/machinery/newscaster/security_unit/south, @@ -33262,10 +33098,51 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/crew_quarters/washroom/central) +"pkf" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) +"pkA" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenological) "pkH" = ( /obj/effect/floor_decal/corner/dark_green/diagonal, /turf/simulated/floor/tiled, /area/security/checkpoint2) +"pkK" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/mauve/full{ + dir = 8 + }, +/obj/item/tape_roll{ + pixel_y = 10 + }, +/obj/item/device/paicard, +/turf/simulated/floor/tiled/white, +/area/rnd/lab) +"pkV" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Xenobotany Maintenance"; + req_access = list(52) + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) "plb" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 5 @@ -33287,12 +33164,6 @@ }, /turf/simulated/floor/tiled/dark, /area/engineering/engine_waste) -"plt" = ( -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d3-2" - }, -/turf/template_noop, -/area/template_noop) "plA" = ( /obj/structure/cable{ icon_state = "1-2" @@ -33328,16 +33199,6 @@ }, /turf/simulated/floor/wood, /area/horizon/bar) -"pmo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) "pmK" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/effect/floor_decal/industrial/warning/corner, @@ -33349,10 +33210,6 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"pmN" = ( -/obj/machinery/firealarm/west, -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) "pmQ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/machinery/disposal/small/east, @@ -33367,6 +33224,18 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark/full, /area/engineering/storage_hard) +"pnj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/camera/network/research{ + dir = 1; + c_tag = "Xenobio - Cell D"; + network = list("Xeno_Bio") + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) "pnF" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -33379,6 +33248,21 @@ }, /turf/simulated/floor/tiled, /area/hallway/engineering/rust) +"pnY" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/lab) "poe" = ( /obj/structure/railing/mapped{ dir = 8 @@ -33386,9 +33270,6 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/operations/lower/machinist) -"pos" = ( -/turf/simulated/floor/carpet/rubber, -/area/rnd/xenobiology/dissection) "poJ" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -33405,6 +33286,13 @@ }, /turf/simulated/floor/wood, /area/horizon/bar) +"ppE" = ( +/obj/machinery/disposal/small/west, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/lab) "pqc" = ( /obj/effect/floor_decal/corner_wide/paleblue/full{ dir = 1 @@ -33474,15 +33362,6 @@ }, /turf/simulated/floor/lino, /area/chapel/main) -"prY" = ( -/obj/structure/sign/directions/prop{ - dir = 4; - pixel_x = 32; - pixel_y = 24 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/maintenance/aft) "psg" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -33521,6 +33400,12 @@ }, /turf/simulated/floor/tiled, /area/medical/gen_treatment) +"ptE" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/turf/simulated/floor/plating, +/area/horizon/zat) "ptJ" = ( /obj/effect/floor_decal/corner_wide/grey/diagonal, /obj/effect/floor_decal/spline/plain{ @@ -33561,6 +33446,18 @@ /obj/machinery/cell_charger, /turf/simulated/floor/carpet/rubber, /area/operations/lower/machinist) +"puj" = ( +/obj/structure/table/standard, +/obj/item/storage/box/beakers{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/storage/box/syringes{ + pixel_y = 2; + pixel_x = -8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/chemistry) "puN" = ( /obj/structure/table/rack, /obj/random/loot, @@ -33596,6 +33493,13 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/maintenance/wing/starboard/far) +"pvc" = ( +/obj/effect/floor_decal/corner/mauve/full, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/telesci) "pvt" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -33608,15 +33512,6 @@ "pvx" = ( /turf/simulated/floor/plating, /area/maintenance/substation/wing_port) -"pvA" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) "pwq" = ( /obj/effect/floor_decal/spline/fancy/wood, /obj/structure/bed/stool/chair/padded/beige{ @@ -33624,22 +33519,22 @@ }, /turf/simulated/floor/wood, /area/hallway/primary/central_two) +"pwv" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenological) "pwB" = ( /obj/effect/floor_decal/corner_wide/yellow{ dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/engineering/rust) -"pwK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) "pwO" = ( /obj/machinery/shieldwallgen, /obj/effect/floor_decal/industrial/outline/yellow, @@ -33652,6 +33547,13 @@ }, /turf/simulated/floor/tiled, /area/horizon/commissary) +"pxt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) "pxG" = ( /turf/simulated/floor/tiled, /area/horizon/commissary) @@ -33659,31 +33561,10 @@ /obj/structure/platform/ledge, /turf/simulated/open, /area/hallway/primary/central_one) -"pyD" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Xenobotany Maintenance"; - req_access = list(52) - }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) "pyR" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/full, /area/engineering/engine_airlock) -"pyZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/camera/network/research{ - dir = 1; - c_tag = "Xenobio - Cell A"; - network = list("Xeno_Bio") - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) "pzc" = ( /obj/effect/floor_decal/corner_wide/yellow{ dir = 5 @@ -33693,6 +33574,17 @@ }, /turf/simulated/floor/tiled, /area/hallway/engineering/rust) +"pzf" = ( +/obj/structure/table/standard, +/obj/machinery/computer/security/telescreen{ + name = "Access Monitor"; + network = list("Xeno_Bio") + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/foyer) "pzr" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ @@ -33718,29 +33610,49 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/substation/research) -"pAP" = ( -/obj/structure/table/standard, -/obj/item/cell/high, -/obj/item/cell/high, -/obj/item/cell/high, -/obj/item/device/flashlight{ - pixel_x = 9; - pixel_y = 7 +"pzR" = ( +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/hazardous) +"pAo" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 }, -/turf/simulated/floor/carpet/rubber, -/area/horizon/zat) -"pBq" = ( -/obj/structure/bed/stool/chair/office/light{ +/turf/simulated/floor/tiled, +/area/maintenance/wing/port) +"pAr" = ( +/obj/structure/disposalpipe/trunk{ dir = 8 }, -/obj/effect/landmark/start{ - name = "Xenobotanist" +/obj/structure/window/reinforced{ + dir = 8 }, -/obj/effect/floor_decal/spline/fancy/wood{ +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/regular/open{ + fail_secure = 1; + id = "xenobio_b"; + name = "Cell Containment Blast Door" + }, +/obj/machinery/disposal/deliveryChute{ dir = 4 }, -/turf/simulated/floor/wood, -/area/rnd/conference) +/obj/machinery/door/window/eastleft, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/xenobiology) +"pBn" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass, +/area/rnd/hallway) "pBA" = ( /obj/structure/closet/secure_closet/brig{ id = "cell_isolation" @@ -33816,36 +33728,18 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"pEe" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) +"pEh" = ( +/obj/machinery/chem_master, +/obj/machinery/light, +/obj/effect/floor_decal/corner/mauve/full, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology) "pEA" = ( /obj/machinery/computer/fusion/gyrotron/terminal{ initial_id_tag = "horizon_fusion" }, /turf/simulated/floor/tiled/dark/full, /area/engineering/engine_monitoring/rust) -"pEN" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/foyer) "pEQ" = ( /obj/structure/foamedmetal, /turf/simulated/floor/plating, @@ -34040,15 +33934,6 @@ /obj/machinery/light, /turf/simulated/floor/tiled/white, /area/medical/reception) -"pHK" = ( -/obj/structure/table/standard, -/obj/item/device/hand_labeler, -/obj/item/tape_roll{ - pixel_x = -14; - pixel_y = 10 - }, -/turf/simulated/floor/carpet/rubber, -/area/rnd/lab) "pIi" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -34064,24 +33949,12 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"pIp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) "pIs" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 8 }, /turf/simulated/floor/tiled, /area/horizon/hallway/deck_two/fore) -"pID" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) "pIE" = ( /obj/structure/window/shuttle/scc_space_ship, /obj/structure/grille, @@ -34101,6 +33974,10 @@ /obj/machinery/iv_drip, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) +"pJy" = ( +/obj/structure/table/rack, +/turf/simulated/floor/plating, +/area/maintenance/research_port) "pJE" = ( /obj/item/device/radio/intercom/east, /obj/effect/floor_decal/corner/dark_blue/full{ @@ -34271,6 +34148,22 @@ }, /turf/simulated/floor/bluegrid/server, /area/server) +"pMT" = ( +/obj/machinery/door/airlock/glass_research{ + dir = 1; + name = "Telescience"; + req_access = list(7) + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/telesci) "pNw" = ( /obj/effect/floor_decal/corner/brown{ dir = 5 @@ -34282,6 +34175,12 @@ }, /turf/simulated/floor/tiled, /area/operations/office) +"pNy" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/foyer) "pNA" = ( /obj/structure/curtain/black{ icon_state = "open"; @@ -34308,13 +34207,6 @@ }, /turf/simulated/floor/tiled/dark, /area/security/checkpoint2) -"pOL" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) "pOV" = ( /obj/machinery/light, /obj/effect/floor_decal/spline/plain, @@ -34323,15 +34215,47 @@ }, /turf/simulated/floor/carpet/rubber, /area/engineering/engine_monitoring/rust) -"pPa" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/crew_quarters/heads/hor) "pPk" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/engineering/storage_eva) +"pPA" = ( +/obj/structure/table/standard, +/obj/machinery/requests_console/east{ + department = "Research and Development"; + name = "RnD Requests Console" + }, +/obj/item/paper_bin, +/obj/item/pen{ + pixel_x = -4 + }, +/obj/item/pen/red{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/pen/blue{ + pixel_x = 3; + pixel_y = 7 + }, +/obj/effect/floor_decal/corner/mauve/full{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/lab) +"pPM" = ( +/obj/machinery/light, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/rack, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/monkeycubes, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology) "pPO" = ( /obj/item/stack/wrapping_paper, /obj/structure/table/standard, @@ -34397,6 +34321,10 @@ }, /turf/simulated/floor/carpet/rubber, /area/engineering/engine_room/rust) +"pRo" = ( +/obj/structure/bed/stool/bar/padded, +/turf/simulated/floor/carpet/rubber, +/area/rnd/lab) "pRA" = ( /obj/machinery/light/small/emergency, /turf/simulated/open, @@ -34408,16 +34336,6 @@ }, /turf/simulated/open, /area/engineering/atmos/storage) -"pSG" = ( -/obj/structure/morgue/crematorium{ - _wifi_id = "xenobio_crema" - }, -/obj/effect/floor_decal/corner/mauve/full{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) "pSI" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -34507,16 +34425,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) -"pUM" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hor) "pUO" = ( /obj/effect/floor_decal/corner_wide/green{ dir = 5 @@ -34548,14 +34456,6 @@ }, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) -"pVm" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) "pVs" = ( /turf/simulated/floor/plating, /area/maintenance/wing/port/far) @@ -34634,14 +34534,6 @@ }, /turf/simulated/floor/tiled/dark, /area/hallway/primary/central_one) -"pWW" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) "pXI" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, @@ -34655,23 +34547,6 @@ /obj/machinery/portable_atmospherics/canister/empty, /turf/simulated/floor/plating, /area/engineering/rust_office) -"pYw" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "xenobio_c"; - name = "Cell Containment Blast Doors"; - pixel_x = 21; - req_access = list(47) - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) "pYK" = ( /obj/machinery/vending/coffee, /obj/effect/floor_decal/industrial/hatch/grey, @@ -34706,19 +34581,17 @@ /obj/machinery/portable_atmospherics/canister/hydrogen, /turf/simulated/floor/tiled/dark/full, /area/engineering/storage_hard) -"pZD" = ( -/obj/structure/closet/hazmat/research, -/obj/item/tank/oxygen, -/obj/item/clothing/mask/gas/alt, -/obj/machinery/button/remote/airlock{ - id = "xeno_bot_hazard"; - name = "Xenobotany Hazardous Specimens"; - pixel_y = -18; - req_access = list(52); - specialfunctions = 4 +"pZP" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) +/obj/machinery/camera/network/research{ + dir = 4; + c_tag = "Xenobio - Cell E"; + network = list("Xeno_Bio") + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) "pZV" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -34745,24 +34618,6 @@ }, /turf/simulated/floor/wood, /area/horizon/crew_quarters/lounge/bar) -"qad" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/foyer) "qaf" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -34807,14 +34662,13 @@ }, /turf/simulated/floor/reinforced, /area/horizon/grauwolf) -"qbh" = ( -/obj/machinery/door/window/southright{ - req_access = list(47); - name = "Secure Storage" +"qbl" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/rubber, -/area/rnd/lab) +/obj/effect/floor_decal/corner/white, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "qbp" = ( /obj/structure/table/stone/marble, /obj/machinery/reagentgrinder{ @@ -34849,27 +34703,28 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/dark, /area/horizon/stairwell/bridge) -"qcI" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 10 +"qdf" = ( +/turf/simulated/floor/exoplanet/grass, +/area/rnd/xenobiology/xenoflora) +"qdi" = ( +/obj/machinery/door/airlock/glass_research{ + name = "Research and Development"; + req_access = list(7); + dir = 4 }, /obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/computer/rdconsole/core, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/r_n_d/destructive_analyzer, -/turf/simulated/floor/carpet/rubber, -/area/rnd/lab) -"qcU" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 +/obj/machinery/door/firedoor{ + dir = 4 }, -/obj/structure/bed/stool/chair/sofa/left/red{ +/obj/effect/map_effect/door_helper/unres{ dir = 8 }, -/turf/simulated/floor/wood, -/area/rnd/hallway) +/obj/machinery/door/blast/shutters/open{ + id = "RnDShutters"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/lab) "qdq" = ( /obj/effect/floor_decal/industrial/warning{ dir = 9 @@ -34890,6 +34745,29 @@ /obj/machinery/suit_cycler/engineering/prepared, /turf/simulated/floor/tiled/dark/full, /area/engineering/storage_eva) +"qen" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/button/remote/airlock{ + id = "hazardous_access"; + name = "Hazardous Containment"; + req_access = list(55); + specialfunctions = 4; + dir = 8; + pixel_x = -23 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/foyer) +"qeN" = ( +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, +/obj/machinery/door/blast/shutters/open{ + id = "exploratory_chem_shutters"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/chemistry) "qeZ" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/effect/floor_decal/industrial/warning/cee{ @@ -34970,33 +34848,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/brig) -"qfW" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) -"qga" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4 - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - dir = 1; - pixel_x = 7; - pixel_y = -20 - }, -/obj/machinery/airlock_sensor{ - dir = 1; - pixel_x = -7; - pixel_y = -20 - }, -/obj/effect/map_effect/marker/airlock{ - frequency = 3002; - master_tag = "airlock_horizon_deck_2_levi"; - name = "airlock_horizon_deck_2_levi" - }, -/turf/simulated/floor/plating, -/area/horizon/zat) "qgf" = ( /obj/structure/closet/crate/freezer{ name = "Fridge" @@ -35012,6 +34863,18 @@ temperature = 278 }, /area/medical/surgery) +"qgr" = ( +/obj/item/device/t_scanner{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/structure/table/standard, +/obj/item/device/analyzer, +/obj/machinery/recharger/wallcharger{ + pixel_x = 32 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/zat) "qgz" = ( /obj/effect/floor_decal/industrial/warning/corner, /obj/structure/sign/radiation{ @@ -35020,28 +34883,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/engineering/engine_room) -"qgG" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) -"qgJ" = ( -/obj/structure/table/standard, -/obj/item/storage/bag/circuits/basic, -/obj/item/device/integrated_electronics/debugger, -/obj/item/device/integrated_electronics/wirer, -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) "qgK" = ( /obj/structure/closet/crate/trashcart, /obj/item/storage/bag/trash{ @@ -35117,6 +34958,22 @@ /obj/effect/floor_decal/industrial/hatch/grey, /turf/simulated/floor/tiled/full, /area/horizon/hallway/deck_two/fore) +"qhp" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/closet/hazmat/research, +/obj/item/clothing/mask/gas/alt, +/obj/item/tank/oxygen, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "qhz" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -35130,6 +34987,24 @@ /obj/structure/disposalpipe/junction/yjunction, /turf/simulated/floor/tiled/white, /area/hallway/medical) +"qhA" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) "qhF" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 10 @@ -35197,6 +35072,16 @@ }, /turf/simulated/floor/tiled, /area/engineering/storage_eva) +"qld" = ( +/obj/structure/closet/crate{ + name = "Emergency Fuel" + }, +/obj/item/stack/material/phoron, +/obj/item/stack/material/phoron, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/clothing/gloves/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) "qlm" = ( /obj/machinery/door/firedoor, /obj/structure/cable/green{ @@ -35259,43 +35144,17 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/kitchen) -"qmh" = ( -/obj/structure/table/standard, -/obj/item/storage/box/fancy/vials{ - pixel_x = -4; - pixel_y = 10 - }, -/obj/item/storage/box/syringes, -/obj/item/storage/box/beakers{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/effect/floor_decal/corner/mauve/full{ - dir = 8 - }, -/obj/machinery/camera/network/research{ - c_tag = "Research - XenoBotanical Lab"; - dir = 4 - }, -/obj/machinery/requests_console/north{ - department = "Xenobotany"; - departmentType = 2; - dir = 8; - name = "Xenobotany Requests Console"; - pixel_x = -19; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) "qmy" = ( /obj/item/modular_computer/console/preset/engineering, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark/full, /area/engineering/engine_monitoring) -"qmV" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) +"qnb" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/conference) "qni" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -35459,15 +35318,6 @@ /obj/item/hullbeacon/red, /turf/simulated/floor/reinforced/airless, /area/engineering/engine_room/rust) -"qrg" = ( -/obj/structure/morgue{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) "qrh" = ( /obj/structure/lattice, /obj/structure/platform/ledge, @@ -35490,27 +35340,61 @@ }, /turf/simulated/floor/tiled, /area/engineering/lobby) +"qsg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/maintenance/research_port) "qsv" = ( -/obj/effect/floor_decal/corner/mauve/full{ +/obj/structure/bed/stool/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Lab Assistant" + }, +/obj/effect/floor_decal/spline/fancy/wood{ dir = 8 }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) +/turf/simulated/floor/wood, +/area/rnd/conference) "qsw" = ( /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"qsJ" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 1 +"qsy" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 }, -/obj/effect/floor_decal/corner/mauve/full{ +/obj/machinery/camera/network/research{ + c_tag = "Research - Corridor Camera"; dir = 1 }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"qsZ" = ( +/obj/machinery/door/airlock/hatch{ + dir = 1; + icon_state = "door_locked"; + id_tag = "bolts_cannon_internal"; + locked = 1; + name = "Primary Armament Interior"; + req_one_access = list(19,43); + secured_wires = 1 }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenological) +/obj/effect/floor_decal/industrial/hatch/red, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/horizon/zat) "qtB" = ( /obj/machinery/alarm/east, /obj/effect/floor_decal/corner/grey/diagonal, @@ -35560,6 +35444,9 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/hallway/engineering/rust) +"que" = ( +/turf/simulated/floor/carpet/purple, +/area/crew_quarters/heads/hor) "quD" = ( /obj/machinery/atmospherics/binary/pump/high_power{ dir = 1; @@ -35601,6 +35488,13 @@ temperature = 278 }, /area/medical/surgery) +"qvb" = ( +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d3-6" + }, +/obj/structure/girder, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/maintenance/research_port) "qvd" = ( /obj/machinery/door/airlock{ dir = 1; @@ -35625,6 +35519,11 @@ /obj/structure/foamedmetal, /turf/simulated/floor/plating, /area/horizon/commissary) +"qvN" = ( +/obj/structure/table/standard, +/obj/machinery/firealarm/south, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/chemistry) "qvO" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 10 @@ -35643,26 +35542,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"qvW" = ( -/obj/structure/plasticflaps/airtight{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - dir = 4; - name = "Hazardous Specimens"; - req_access = list(52); - locked = 1; - id_tag = "xeno_bot_hazard" - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology/xenoflora) "qvZ" = ( /obj/machinery/light/small/emergency{ dir = 8 @@ -35700,15 +35579,6 @@ }, /turf/simulated/floor/tiled/dark, /area/engineering/aft_airlock) -"qwG" = ( -/obj/structure/table/steel, -/obj/item/device/multitool, -/obj/machinery/camera/network/research{ - c_tag = "Research - Server Room" - }, -/obj/machinery/firealarm/north, -/turf/simulated/floor/carpet/rubber, -/area/server) "qwJ" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -35798,19 +35668,47 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/crew_quarters/washroom/central) -"qzG" = ( -/obj/structure/cable{ - icon_state = "1-4" +"qyF" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 +/obj/structure/platform{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"qyQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 }, -/obj/structure/lattice/catwalk/indoor/grate/damaged, +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/machinery/access_button{ + dir = 1; + pixel_x = 23; + pixel_y = -19 + }, +/obj/effect/map_effect/marker/airlock{ + frequency = 3002; + master_tag = "airlock_horizon_deck_2_levi"; + name = "airlock_horizon_deck_2_levi" + }, +/obj/effect/map_effect/marker_helper/airlock/interior, /turf/simulated/floor/plating, -/area/maintenance/research_port) +/area/horizon/zat) +"qzF" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Xenoarchaeologist" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/rnd/conference) "qzH" = ( /obj/machinery/light, /turf/simulated/floor/tiled/dark, @@ -35842,6 +35740,13 @@ }, /turf/simulated/floor/plating, /area/medical/cryo) +"qAF" = ( +/obj/effect/floor_decal/corner/mauve/full, +/obj/machinery/light/floor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway/secondary) "qAG" = ( /obj/structure/grille, /obj/machinery/door/firedoor, @@ -35865,15 +35770,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"qBl" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/structure/disposaloutlet, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) "qBt" = ( /obj/effect/floor_decal/corner/black{ dir = 5 @@ -35973,14 +35869,18 @@ "qDh" = ( /turf/simulated/wall/r_wall, /area/horizon/security/equipment) -"qDM" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/obj/machinery/door/blast/shutters/open{ - id = "RnDShutters"; - dir = 4 +"qDD" = ( +/obj/structure/table/standard, +/obj/machinery/computer/security/telescreen{ + name = "Access Monitor"; + network = list("Xeno_Bio"); + req_access = list(55) }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/hallway) +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology) "qDU" = ( /obj/structure/bed/stool/padded/red, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -36019,18 +35919,12 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/heads/chief) -"qEJ" = ( -/obj/structure/bed/stool/chair/office/light{ +"qEg" = ( +/obj/machinery/light/small{ dir = 4 }, -/obj/effect/landmark/start{ - name = "Lab Assistant" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/rnd/conference) +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) "qEL" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/dark, @@ -36111,17 +36005,6 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"qFL" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) "qFQ" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/effect/floor_decal/spline/plain{ @@ -36227,10 +36110,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/engineering/engine_room) -"qIj" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenological) "qIr" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 6 @@ -36256,6 +36135,19 @@ }, /turf/simulated/floor/lino, /area/chapel/main) +"qIJ" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/machinery/light/floor{ + dir = 4 + }, +/obj/structure/sign/science{ + pixel_x = 32; + pixel_y = -2 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/central_one) "qJf" = ( /obj/structure/cable/orange{ icon_state = "4-8" @@ -36306,6 +36198,10 @@ /obj/random/contraband, /turf/simulated/floor/tiled/freezer, /area/operations/break_room) +"qKx" = ( +/obj/structure/platform_stairs, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/telesci) "qKK" = ( /obj/effect/floor_decal/corner_wide/green{ dir = 10 @@ -36331,6 +36227,13 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/warden) +"qLj" = ( +/obj/machinery/chem_master{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/chemistry) "qLT" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 10 @@ -36341,6 +36244,15 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) +"qLZ" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - Corridor Camera 3" + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway/secondary) "qMd" = ( /obj/effect/floor_decal/corner_wide/yellow{ dir = 5 @@ -36357,6 +36269,14 @@ }, /turf/simulated/wall, /area/maintenance/wing/starboard) +"qMW" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign describing some terrible danger beyond these walls. The particular danger being a weapon of extreme power. The wall is probably for the best."; + icon_state = "shock"; + name = "WARNING: RADIOACTIVE HIGH-YIELD ENERGETIC WEAPONS WITHIN" + }, +/turf/simulated/wall/r_wall, +/area/horizon/zat) "qNd" = ( /obj/structure/lattice/catwalk/indoor/grate, /obj/effect/floor_decal/industrial/loading/yellow{ @@ -36411,9 +36331,6 @@ /obj/item/device/radio/intercom/west, /turf/simulated/floor/tiled/full, /area/horizon/hallway/deck_two/fore) -"qPA" = ( -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/dissection) "qPC" = ( /obj/effect/floor_decal/spline/fancy/wood, /obj/structure/disposalpipe/segment, @@ -36427,6 +36344,15 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) +"qPJ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) "qPP" = ( /obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, /obj/structure/cable/green{ @@ -36519,6 +36445,16 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_room/rust) +"qRY" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/lab) "qSa" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 @@ -36593,6 +36529,9 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) +"qSN" = ( +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) "qSO" = ( /obj/structure/cable/green{ icon_state = "2-4" @@ -36612,23 +36551,6 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/full, /area/horizon/security/armoury) -"qTj" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/rnd/hallway/secondary) "qTB" = ( /obj/structure/table/standard, /obj/effect/floor_decal/spline/plain/cee{ @@ -36679,14 +36601,9 @@ /turf/simulated/floor/tiled/full, /area/horizon/security/investigations_hallway) "qUz" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenological) "qUE" = ( /obj/structure/railing/mapped{ dir = 4 @@ -36696,6 +36613,23 @@ }, /turf/simulated/open, /area/hallway/primary/central_one) +"qUJ" = ( +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, +/obj/structure/platform, +/obj/machinery/door/blast/regular/open{ + dir = 8; + fail_secure = 1; + id = "telesci_lockdown"; + name = "Hazardous Containment Lockdown" + }, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/telesci) +"qUK" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway/secondary) "qUL" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -36742,11 +36676,42 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/kitchen) +"qVx" = ( +/turf/simulated/wall/r_wall, +/area/rnd/xenobiology/hazardous) "qVC" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/portable_atmospherics/canister/boron, /turf/simulated/floor/tiled/dark/full, /area/engineering/engine_room/rust) +"qVH" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "xenobio_e"; + name = "Cell Containment Blast Doors"; + pixel_x = -7; + req_access = list(47); + pixel_y = 29 + }, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "xenobio_f"; + name = "Cell Containment Blast Doors"; + pixel_x = 7; + req_access = list(47); + pixel_y = 29 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/machinery/light/floor{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology) "qVJ" = ( /obj/effect/floor_decal/spline/fancy/wood, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -36768,30 +36733,24 @@ }, /turf/simulated/floor/tiled/dark/full, /area/engineering/engine_room/rust) -"qVV" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) +"qVW" = ( +/obj/structure/closet, +/obj/random/contraband, +/obj/random/contraband, +/turf/simulated/floor/plating, +/area/maintenance/wing/port) "qWJ" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) +"qXl" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) "qXp" = ( /obj/machinery/maneuvering_engine, /obj/effect/landmark/entry_point/aft{ @@ -36799,24 +36758,6 @@ }, /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/maintenance/wing/port/far) -"qXt" = ( -/obj/machinery/door/blast/shutters{ - density = 0; - id = "RnDDesk"; - name = "Research and Development"; - opacity = 0 - }, -/obj/structure/table/reinforced/steel, -/obj/machinery/door/window/desk/northright{ - req_access = list(7); - name = "Research and Development" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters/open{ - id = "RnDShutters" - }, -/turf/simulated/floor/tiled, -/area/rnd/lab) "qXx" = ( /obj/effect/floor_decal/corner/brown{ dir = 1 @@ -36832,6 +36773,10 @@ }, /turf/simulated/floor/carpet/rubber, /area/engineering/engine_monitoring/rust) +"qYa" = ( +/obj/structure/foamedmetal, +/turf/simulated/floor/plating, +/area/rnd/xenobiology) "qYn" = ( /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, @@ -36887,17 +36832,6 @@ }, /turf/simulated/floor/reinforced/airless, /area/engineering/engine_room/rust) -"qYY" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/floor_decal/corner/pink/diagonal, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) "qZb" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 10 @@ -36943,20 +36877,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/engineering) -"qZw" = ( -/obj/machinery/disposal/deliveryChute{ - pixel_y = 7 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/southright, -/obj/structure/disposalpipe/trunk, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/hazardous) "qZM" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/effect/floor_decal/industrial/warning/corner{ @@ -36967,18 +36887,13 @@ }, /turf/simulated/floor/tiled, /area/medical/first_responder) -"qZO" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Lab Assistant" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 +"raA" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/simulated/floor/wood, -/area/rnd/conference) +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/hazardous) "rbe" = ( /obj/effect/floor_decal/corner/dark_green/diagonal, /turf/simulated/floor/tiled, @@ -37032,6 +36947,18 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/operations/lobby) +"rbK" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 4 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/machinery/light/floor{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway/secondary) "rbO" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -37066,6 +36993,17 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/full, /area/horizon/hallway/deck_two/fore) +"rcy" = ( +/obj/effect/floor_decal/corner/pink/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) "rcH" = ( /obj/structure/cable{ icon_state = "1-2" @@ -37118,6 +37056,10 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/wing/port/far) +"rdZ" = ( +/obj/machinery/alarm/east, +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) "rec" = ( /obj/structure/closet/secure_closet/security, /obj/effect/floor_decal/corner/dark_blue{ @@ -37138,6 +37080,18 @@ }, /turf/simulated/floor/tiled/dark/full, /area/operations/qm) +"rez" = ( +/obj/structure/platform, +/obj/structure/closet/secure_closet/scientist, +/obj/structure/window/borosilicate{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/lab) "reL" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -37151,6 +37105,12 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/maintenance/security_starboard) +"reZ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) "rfb" = ( /obj/machinery/atmospherics/pipe/manifold/visible/black, /turf/simulated/floor/tiled/dark, @@ -37165,9 +37125,34 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) +"rfG" = ( +/obj/structure/table/reinforced/glass, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/rnd/conference) "rfO" = ( /turf/simulated/wall/r_wall, /area/operations/lower/machinist) +"rgc" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/mauve/full, +/obj/item/device/firing_pin/test_range{ + pixel_y = 4 + }, +/obj/item/device/firing_pin/test_range, +/obj/item/device/firing_pin/test_range{ + pixel_y = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/lab) "rgk" = ( /obj/structure/cable/yellow{ icon_state = "0-4" @@ -37197,6 +37182,12 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) +"rgR" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway/secondary) "rgU" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -37236,15 +37227,6 @@ /obj/machinery/light/small/emergency, /turf/simulated/floor/tiled, /area/storage/primary) -"riD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) "riG" = ( /obj/machinery/power/generator{ anchored = 1; @@ -37304,27 +37286,28 @@ /obj/structure/railing/mapped, /turf/simulated/open, /area/operations/office) +"rkv" = ( +/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/structure/lattice/catwalk/indoor/grate, +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/wing/port) "rkO" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, /turf/simulated/floor/reinforced/airless, /area/engineering/engine_room/rust) -"rkU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/hazardous) -"rlc" = ( -/obj/machinery/atmospherics/unary/freezer{ - icon_state = "freezer_1"; - power_setting = 20; - set_temperature = 80; - use_power = 1 - }, -/turf/simulated/floor/carpet/rubber, -/area/server) "rle" = ( /obj/structure/closet/crate, /obj/item/stack/material/steel{ @@ -37353,6 +37336,20 @@ }, /turf/simulated/floor/carpet/rubber, /area/engineering/engine_room/rust) +"rlp" = ( +/obj/machinery/door/airlock/glass_research{ + dir = 1; + name = "Exploratory Chemistry"; + req_access = list(7) + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/chemistry) "rls" = ( /obj/structure/cable{ icon_state = "4-8" @@ -37374,13 +37371,12 @@ }, /turf/simulated/open, /area/maintenance/wing/starboard) -"rmq" = ( -/obj/machinery/chemical_dispenser/full{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/chemistry) +"rlX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/rnd/lab) "rmR" = ( /obj/structure/cable{ icon_state = "4-8" @@ -37412,18 +37408,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/engineering/engine_room/rust) -"rmV" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) "rns" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -37442,6 +37426,17 @@ }, /turf/simulated/floor/tiled, /area/rnd/hallway) +"rnF" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/firealarm/east, +/turf/simulated/floor/tiled, +/area/rnd/hallway/secondary) "rnO" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 9 @@ -37486,10 +37481,6 @@ }, /turf/simulated/floor/tiled, /area/operations/lower/machinist) -"roZ" = ( -/obj/structure/bed/stool/chair/office/bridge/generic, -/turf/simulated/floor/reinforced, -/area/horizon/zat) "rpj" = ( /obj/effect/floor_decal/corner_wide/yellow{ dir = 6 @@ -37529,6 +37520,14 @@ }, /turf/simulated/floor/tiled, /area/hallway/engineering) +"rqp" = ( +/obj/structure/table/rack, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/monkeycubes, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology) "rqq" = ( /obj/structure/lattice/catwalk/indoor/grate, /obj/machinery/atmospherics/pipe/simple/hidden, @@ -37584,24 +37583,6 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_room/rust) -"rrC" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) "rrK" = ( /obj/structure/railing/mapped{ dir = 1 @@ -37646,6 +37627,13 @@ }, /turf/simulated/floor/tiled/full, /area/engineering/storage_hard) +"rtx" = ( +/obj/machinery/chemical_dispenser/full{ + req_access = list(7) + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/chemistry) "rtF" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -37664,20 +37652,28 @@ }, /turf/simulated/floor/tiled, /area/operations/office) +"rtH" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hor) "rtI" = ( /obj/structure/bookcase/libraryspawn/nonfiction, /turf/simulated/floor/carpet/brown, /area/horizon/library) -"rtM" = ( -/obj/structure/table/standard, -/obj/machinery/requests_console/west{ - department = "Xenobiology Lab"; - name = "Xenobiology Requests Console" - }, -/obj/effect/floor_decal/corner/mauve/full, -/obj/item/glass_jar, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/foyer) "rtP" = ( /obj/structure/cable{ icon_state = "4-8" @@ -37699,20 +37695,6 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/hallway/engineering/rust) -"rtV" = ( -/obj/machinery/disposal/small/north, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hor) "ruv" = ( /obj/structure/table/wood, /obj/effect/floor_decal/spline/fancy/wood{ @@ -37756,16 +37738,26 @@ "ruV" = ( /turf/simulated/wall, /area/medical/main_storage) -"rvF" = ( -/obj/structure/table/rack, -/obj/structure/window/borosilicate, -/obj/machinery/camera/network/research{ - c_tag = "Research - Research & Development Aft"; - pixel_y = 9; - dir = 8 +"rvf" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + name = "Research Hallway" }, -/turf/simulated/floor/carpet/rubber, -/area/rnd/lab) +/obj/machinery/door/firedoor/multi_tile{ + dir = 2 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"rvJ" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/xenobiology/xenoflora) "rvT" = ( /obj/structure/railing/mapped{ dir = 4 @@ -37799,6 +37791,15 @@ }, /turf/simulated/open/airless, /area/horizon/exterior) +"rwU" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) "rwW" = ( /obj/structure/railing/mapped, /obj/effect/floor_decal/industrial/outline/emergency_closet, @@ -37942,6 +37943,10 @@ /obj/machinery/meter, /turf/simulated/floor/plating, /area/engineering/engine_room) +"rAi" = ( +/obj/structure/table/reinforced/glass, +/turf/simulated/floor/carpet/rubber, +/area/rnd/lab) "rAn" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, /obj/machinery/firealarm/west, @@ -37979,13 +37984,6 @@ /obj/structure/flora/ausbushes/sunnybush, /turf/simulated/floor/grass, /area/hallway/primary/central_two) -"rBB" = ( -/obj/effect/floor_decal/corner/pink/diagonal, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) "rBL" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -37996,12 +37994,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"rBW" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) "rCa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -38039,6 +38031,12 @@ }, /turf/simulated/floor/tiled/white, /area/hallway/medical) +"rCG" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/zat) "rCH" = ( /obj/effect/floor_decal/corner/dark_green/diagonal, /obj/machinery/newscaster/north, @@ -38047,6 +38045,15 @@ "rCR" = ( /turf/simulated/wall, /area/operations/lobby) +"rDh" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/hazardous) "rDE" = ( /obj/effect/floor_decal/corner/dark_blue, /obj/machinery/flasher{ @@ -38066,34 +38073,6 @@ /obj/structure/bed/stool/bar/padded/red, /turf/simulated/floor/wood, /area/horizon/bar) -"rDT" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/button/remote/airlock{ - id = "xeno_entrance_ext"; - name = "Xenobiology External Access Bolts"; - pixel_y = 26; - req_access = list(55); - specialfunctions = 4; - dir = 10; - pixel_x = 32 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/foyer) "rEn" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 4 @@ -38225,6 +38204,22 @@ /obj/effect/floor_decal/corner/brown, /turf/simulated/floor/tiled, /area/operations/office) +"rId" = ( +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/machinery/access_button{ + pixel_x = -12; + pixel_y = 28 + }, +/obj/effect/map_effect/marker/airlock{ + frequency = 3002; + master_tag = "airlock_horizon_deck_2_levi"; + name = "airlock_horizon_deck_2_levi" + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/turf/simulated/floor/plating, +/area/horizon/zat) "rIK" = ( /obj/structure/coatrack{ pixel_x = 10; @@ -38250,6 +38245,13 @@ /obj/effect/floor_decal/industrial/loading/yellow, /turf/simulated/floor/tiled, /area/horizon/security/brig) +"rIN" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/horizon/zat) "rIP" = ( /obj/machinery/firealarm/south, /obj/structure/disposalpipe/segment{ @@ -38264,25 +38266,6 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/wood, /area/horizon/bar) -"rJc" = ( -/obj/structure/table/standard, -/obj/item/device/paicard{ - pixel_x = 5 - }, -/obj/effect/floor_decal/corner/mauve/full{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/east, -/obj/machinery/button/remote/blast_door{ - dir = 10; - id = "telesci_lockdown"; - name = "Telescience Lockdown"; - pixel_x = -7; - req_access = list(47); - pixel_y = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) "rJn" = ( /obj/random/pottedplant, /obj/machinery/power/apc/west, @@ -38298,19 +38281,6 @@ /obj/machinery/atmospherics/pipe/simple/visible/cyan, /turf/simulated/floor/plating, /area/engineering/engine_room) -"rJD" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/machinery/keycard_auth{ - dir = 1; - pixel_y = 30 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hor) "rJR" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -38322,6 +38292,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) +"rKj" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "Distro to Trays"; + use_power = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "rKv" = ( /obj/structure/table/rack, /obj/effect/floor_decal/industrial/outline/security, @@ -38344,6 +38322,13 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/armoury) +"rKy" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/ship_weapon_dummy, +/turf/simulated/floor/plating, +/area/horizon/zat) "rLm" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 1 @@ -38380,22 +38365,6 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/operations/lower/machinist) -"rLU" = ( -/obj/structure/table/standard, -/obj/item/storage/box/gloves, -/obj/item/storage/box/masks{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/reagent_containers/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - icon_state = "sterilesprayblue"; - name = "surgery cleaner"; - pixel_y = 3; - pixel_x = -11 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/dissection) "rMf" = ( /obj/effect/floor_decal/corner_wide/yellow{ dir = 5 @@ -38425,24 +38394,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/engineering/engine_room) -"rMS" = ( -/obj/machinery/turretid/lethal{ - ailock = 1; - check_synth = 1; - name = "\improper Situational Control Armaments Turret Control"; - pixel_y = 32; - req_access = null; - req_one_access = list(19,43) - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) -"rMU" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) "rNe" = ( /obj/structure/foamedmetal, /obj/structure/shuttle_part/scc_space_ship{ @@ -38450,6 +38401,18 @@ }, /turf/simulated/floor/plating, /area/maintenance/wing/port/far) +"rNn" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/full{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry) "rNs" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -38657,51 +38620,14 @@ }, /turf/simulated/floor/wood, /area/horizon/bar) -"rRB" = ( -/obj/machinery/turretid/lethal{ - ailock = 1; - check_synth = 1; - name = "\improper Situational Control Armaments Turret Control"; - pixel_x = 28; - req_access = null; - req_one_access = list(19,43) - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'WARNING: BEWARE OF HIGH-YIELD DEFENSIVE TURRETS. DO NOT PASS WITHOUT PROPER AUTHORIZATION. EXTREME DANGER WITHIN THIS PERIMETER.'."; - name = "\improper WARNING: PRIMARY ARMAMENT sign"; - pixel_x = -32 - }, -/obj/machinery/button/remote/airlock{ - dir = 8; - id = "bolts_cannon_entrance"; - name = "Entrance Airlock Bolts"; - pixel_x = 22; - pixel_y = 12; - req_one_access = list(19,43); - specialfunctions = 4 - }, -/obj/machinery/button/remote/airlock{ - dir = 8; - id = "bolts_cannon_external"; - name = "Primary Armament Exterior Bolts"; - pixel_x = 22; - pixel_y = -13; - req_one_access = list(19,43); - specialfunctions = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" +"rRh" = ( +/obj/machinery/door/window/southleft{ + req_access = list(47); + name = "Secure Storage" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/camera/motion{ - c_tag = "ZAT Access Aft"; - dir = 4; - network = list("Command","Security") - }, -/turf/simulated/floor/plating, -/area/horizon/zat) +/turf/simulated/floor/carpet/rubber, +/area/rnd/lab) "rRS" = ( /obj/machinery/door/airlock/glass_service{ dir = 4; @@ -38748,6 +38674,12 @@ }, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) +"rSx" = ( +/obj/structure/table/standard, +/obj/item/storage/box/fancy/vials, +/obj/item/reagent_containers/dropper/electronic_pipette, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/chemistry) "rSD" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 4 @@ -38792,18 +38724,6 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/icu) -"rTo" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - name = "Research and Development Maintenance"; - req_access = list(7,52) - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/crew_quarters/heads/hor) "rTC" = ( /obj/effect/floor_decal/spline/fancy/wood/corner, /turf/simulated/floor/wood, @@ -38854,31 +38774,6 @@ /obj/effect/floor_decal/corner/dark_green/diagonal, /turf/simulated/floor/tiled, /area/horizon/commissary) -"rUJ" = ( -/obj/structure/closet/secure_closet/RD, -/obj/effect/floor_decal/industrial/outline/research, -/obj/item/aicard, -/obj/item/device/paicard, -/obj/item/storage/box/gloves, -/obj/item/device/megaphone/sci, -/obj/item/device/taperecorder, -/obj/item/clothing/glasses/welding/superior, -/obj/item/rig/hazmat/equipped, -/obj/item/clothing/mask/gas/half, -/obj/item/storage/box/fancy/candle_box, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/firealarm/west, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hor) "rUT" = ( /obj/machinery/camera/network/second_deck{ c_tag = "Second Deck - Engineering Entrance" @@ -38921,15 +38816,40 @@ }, /turf/simulated/floor/tiled/dark/full, /area/engineering/engine_monitoring/rust) -"rVN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ +"rVL" = ( +/obj/effect/floor_decal/corner/mauve{ dir = 6 }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway/secondary) +"rVO" = ( +/obj/structure/table/standard, +/obj/item/device/paicard{ + pixel_x = 5 + }, +/obj/effect/floor_decal/corner/mauve/full{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/east, +/obj/machinery/button/remote/blast_door{ + dir = 10; + id = "telesci_lockdown"; + name = "Telescience Lockdown"; + pixel_x = -7; + req_access = list(47); + pixel_y = 5 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/telesci) "rVV" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -38968,13 +38888,6 @@ /obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, /area/medical/pharmacy) -"rWw" = ( -/obj/structure/bookcase, -/obj/item/book/manual/mass_spectrometry, -/obj/item/book/manual/materials_chemistry_analysis, -/obj/item/book/manual/excavation, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenological) "rWG" = ( /obj/machinery/light{ dir = 8 @@ -39075,10 +38988,34 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled, /area/horizon/custodial/auxiliary) +"rYW" = ( +/obj/machinery/atmospherics/valve{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) "rZh" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/operations/lobby) +"rZq" = ( +/obj/machinery/button/remote/airlock{ + id = "xeno_entrance_ext"; + name = "Xenobiology External Access Bolts"; + pixel_y = -21; + req_access = list(55); + specialfunctions = 4 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenological) "rZy" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 6 @@ -39103,16 +39040,6 @@ }, /turf/simulated/floor/wood, /area/rnd/hallway) -"sas" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/machinery/camera/network/research{ - c_tag = "Research - Corridor Camera"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) "saJ" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor, @@ -39123,15 +39050,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/security/checkpoint2) -"sbh" = ( -/obj/structure/platform/ledge{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/heater{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) "sbk" = ( /obj/effect/floor_decal/spline/plain{ dir = 6 @@ -39225,16 +39143,14 @@ /obj/effect/floor_decal/corner_wide/green/diagonal, /turf/simulated/floor/tiled/white, /area/medical/exam) -"scJ" = ( -/obj/structure/platform_stairs/full/east_west_cap, -/obj/structure/platform/cutout{ - dir = 8 - }, -/obj/structure/platform{ - dir = 1 +"scH" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/structure/window/reinforced{ + dir = 4 }, -/turf/simulated/floor/wood, -/area/rnd/hallway/secondary) +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "scN" = ( /obj/effect/floor_decal/corner_wide/yellow/full{ dir = 1 @@ -39254,20 +39170,6 @@ "sdi" = ( /turf/simulated/wall/r_wall, /area/maintenance/wing/starboard) -"sdS" = ( -/obj/structure/bookcase, -/obj/item/book/manual/wiki/ntsl2, -/obj/item/book/manual/wiki/station_procedure, -/obj/item/book/manual/research_and_development, -/obj/item/book/manual/ka_custom, -/obj/item/book/manual/excavation, -/obj/item/book/manual/anomaly_testing, -/obj/item/book/manual/anomaly_spectroscopy, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/rnd/hallway/secondary) "sdT" = ( /obj/machinery/light{ dir = 4 @@ -39332,16 +39234,16 @@ "seZ" = ( /turf/simulated/wall/r_wall, /area/medical/pharmacy) -"sfl" = ( -/obj/structure/closet/secure_closet/scientist, -/obj/item/storage/box/masks, -/obj/item/storage/box/gloves, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/effect/floor_decal/industrial/outline/yellow, +"sfr" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/white, -/area/rnd/chemistry) +/area/rnd/xenobiology) "sgi" = ( /obj/structure/shuttle_part/scc_space_ship{ icon_state = "d3-6" @@ -39363,32 +39265,40 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/hallway/engineering) +"sgS" = ( +/obj/machinery/atmospherics/unary/freezer{ + icon_state = "freezer_1"; + power_setting = 20; + set_temperature = 80; + use_power = 1 + }, +/turf/simulated/floor/carpet/rubber, +/area/server) +"shi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/wing/port) "shx" = ( /obj/effect/landmark/entry_point/starboard{ name = "starboard, ballast middle" }, /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/maintenance/wing/starboard/far) -"shH" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/machinery/power/apc/high/north, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/table/standard, -/obj/machinery/reagentgrinder{ - pixel_x = 3; - pixel_y = 10 - }, -/obj/item/reagent_containers/chem_disp_cartridge, -/obj/item/reagent_containers/chem_disp_cartridge, -/obj/item/reagent_containers/chem_disp_cartridge, -/obj/item/reagent_containers/chem_disp_cartridge, -/obj/item/reagent_containers/chem_disp_cartridge, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) "shR" = ( /obj/machinery/camera/network/reactor{ c_tag = "Engineering - INDRA Room 2" @@ -39425,6 +39335,12 @@ }, /turf/simulated/open, /area/hallway/primary/central_one) +"siV" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) "siY" = ( /obj/structure/flora/pottedplant{ icon_state = "plant-33" @@ -39457,12 +39373,56 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/engineering/lobby) +"sjC" = ( +/obj/structure/table/standard, +/obj/machinery/alarm/north, +/obj/item/device/multitool, +/turf/simulated/floor/reinforced, +/area/horizon/zat) +"sjO" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/disposal/small/south, +/obj/structure/disposalpipe/trunk, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/foyer) "sjT" = ( /obj/structure/closet/crate, /obj/random/loot, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/maintenance/wing/starboard) +"sjV" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/door/blast/regular/open{ + dir = 2; + fail_secure = 1; + id = "xenobio_d"; + name = "Cell Containment Blast Door" + }, +/obj/machinery/door/window/holowindoor{ + dir = 8; + req_access = list(55) + }, +/obj/machinery/door/window/holowindoor{ + dir = 4; + req_access = list(55) + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/xenobiology) "skq" = ( /obj/effect/floor_decal/corner/brown{ dir = 9 @@ -39474,23 +39434,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/maintenance/aux_atmospherics/deck_2/starboard/wing) -"skB" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/maintenance/aft) "slm" = ( /turf/simulated/floor/wood, /area/horizon/library) @@ -39504,29 +39447,6 @@ }, /turf/simulated/floor/wood, /area/horizon/bar) -"slI" = ( -/obj/structure/table/standard, -/obj/item/device/firing_pin/test_range, -/obj/item/clothing/glasses/science{ - pixel_y = 10 - }, -/obj/structure/reagent_dispensers/acid{ - pixel_x = 28 - }, -/obj/item/stack/material/steel/full, -/obj/item/stack/material/glass/full, -/obj/item/reagent_containers/glass/beaker/sulphuric{ - pixel_y = 3 - }, -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/railing/mapped, -/obj/effect/floor_decal/corner/mauve/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) "slS" = ( /obj/effect/floor_decal/industrial/outline/red, /obj/structure/table/rack, @@ -39536,12 +39456,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/secure_ammunition_storage) -"slT" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) "smh" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/machinery/atmospherics/portables_connector{ @@ -39644,6 +39558,24 @@ }, /turf/simulated/floor/wood, /area/chapel/office) +"spB" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) "spM" = ( /obj/structure/bed/psych, /obj/machinery/light_switch{ @@ -39653,6 +39585,15 @@ /obj/random/plushie, /turf/simulated/floor/wood, /area/medical/psych) +"spR" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/machinery/hologram/holopad/long_range, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/rnd/conference) "sqc" = ( /obj/effect/floor_decal/industrial/warning, /obj/item/material/shard{ @@ -39681,40 +39622,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"sqv" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/item/storage/box/fancy/vials, -/obj/item/reagent_containers/dropper/electronic_pipette, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) -"sqA" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) "sqE" = ( /obj/structure/foamedmetal, /obj/structure/shuttle_part/scc_space_ship{ @@ -39779,27 +39686,16 @@ /obj/structure/railing/mapped, /turf/simulated/floor/tiled/dark/full, /area/engineering/engine_room/rust) -"stg" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/machinery/camera/network/second_deck{ - c_tag = "Second Deck - Hallway 1"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) "stq" = ( /obj/structure/lattice/catwalk, /turf/simulated/open, /area/horizon/hydroponics) -"stB" = ( -/obj/machinery/light/small/emergency{ +"str" = ( +/obj/structure/platform{ dir = 1 }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/maintenance/aft) +/turf/simulated/floor/tiled, +/area/rnd/hallway/secondary) "stI" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 10 @@ -39832,6 +39728,16 @@ }, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) +"stY" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/table/wood, +/turf/simulated/floor/wood, +/area/rnd/hallway/secondary) "suc" = ( /obj/structure/table/steel, /obj/item/paper_bin, @@ -39887,11 +39793,15 @@ }, /turf/simulated/floor/plating, /area/maintenance/aft) -"svo" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/ship_weapon_dummy, -/turf/simulated/floor/plating, -/area/horizon/zat) +"svu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) "svA" = ( /obj/effect/floor_decal/industrial/warning/corner, /obj/machinery/light/small/emergency{ @@ -39956,16 +39866,6 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/full, /area/horizon/bar) -"sxa" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/rnd/hallway/secondary) "sxl" = ( /obj/structure/table/standard, /obj/item/grenade/chem_grenade, @@ -40041,38 +39941,25 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"szI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"sAP" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +"sAO" = ( +/obj/structure/table/standard, +/obj/item/folder/purple, +/obj/item/stamp/rd{ + pixel_x = -8; + pixel_y = 10 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 +/obj/item/device/eftpos{ + eftpos_name = "Research EFTPOS scanner" }, -/obj/machinery/power/apc/east, -/obj/structure/cable/green{ - icon_state = "0-8" +/obj/machinery/light/floor{ + dir = 4 }, -/obj/structure/cable/green{ - icon_state = "1-8" +/obj/item/paper/monitorkey{ + pixel_y = -6; + pixel_x = 9 }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) +/turf/simulated/floor/carpet/purple, +/area/crew_quarters/heads/hor) "sBr" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -40147,11 +40034,6 @@ }, /turf/simulated/floor/plating, /area/maintenance/wing/starboard/far) -"sCj" = ( -/obj/machinery/vending/hydronutrients/xenobotany, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) "sCq" = ( /obj/structure/bed/stool/chair{ dir = 1 @@ -40165,13 +40047,6 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled/white, /area/hallway/medical) -"sCw" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/ship_weapon_dummy, -/turf/simulated/floor/plating, -/area/horizon/zat) "sCE" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -40223,19 +40098,14 @@ /obj/item/storage/box/fancy/donut, /turf/simulated/floor/tiled/dark/full, /area/operations/lower/machinist/surgicalbay) -"sDZ" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/carpet/rubber, -/area/horizon/zat) -"sEt" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/sink{ - pixel_y = 24 +"sEu" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/random/junk, +/obj/machinery/light/small/emergency{ + dir = 8 }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology) +/turf/simulated/floor/plating, +/area/maintenance/wing/port/far) "sFf" = ( /obj/effect/floor_decal/spline/plain{ dir = 8 @@ -40254,19 +40124,17 @@ }, /turf/simulated/floor/tiled/dark/full, /area/hallway/primary/central_one) -"sGi" = ( -/obj/machinery/atmospherics/valve{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 +"sFk" = ( +/obj/effect/floor_decal/corner/mauve, +/obj/structure/platform_deco{ + icon_state = "ledge_deco" }, -/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) +/area/rnd/hallway/secondary) +"sFZ" = ( +/obj/effect/floor_decal/corner/mauve/full, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) "sGn" = ( /obj/structure/closet/secure_closet/freezer, /obj/item/reagent_containers/food/condiment/flour, @@ -40281,21 +40149,12 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/bar/backroom) -"sGN" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/pink/diagonal, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-4" +"sGR" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) "sHm" = ( /obj/machinery/photocopier/faxmachine{ department = "Head of Security's Office" @@ -40354,17 +40213,6 @@ }, /turf/simulated/floor/wood/mahogany, /area/horizon/crew_quarters/lounge/bar) -"sJC" = ( -/obj/effect/floor_decal/corner/pink/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) "sKn" = ( /obj/machinery/atmospherics/pipe/simple/visible/black, /obj/effect/floor_decal/corner/yellow, @@ -40411,28 +40259,6 @@ }, /turf/simulated/floor/reinforced/reactor, /area/engineering/engine_room) -"sLE" = ( -/obj/machinery/door/airlock/glass_research{ - name = "Research and Development"; - req_access = list(7); - dir = 1 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/blast/shutters/open{ - id = "RnDShutters" - }, -/turf/simulated/floor/tiled, -/area/rnd/lab) "sMi" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -40447,6 +40273,15 @@ "sMn" = ( /turf/simulated/wall/r_wall, /area/engineering/locker_room) +"sMq" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/structure/bed/stool/chair/sofa/left/red{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/rnd/hallway) "sMv" = ( /obj/structure/cable{ icon_state = "4-8" @@ -40466,22 +40301,6 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"sNg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/maintenance/wing/port) -"sNp" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) "sNr" = ( /obj/structure/shuttle_part/scc_space_ship{ icon_state = "d3-4" @@ -40514,13 +40333,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/brig) -"sND" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) "sNJ" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -40567,25 +40379,12 @@ /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/carpet/rubber, /area/engineering/engine_monitoring) -"sOa" = ( -/obj/machinery/door/airlock/glass_research{ - name = "Research and Development"; - req_access = list(7); - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 8 - }, -/obj/machinery/door/blast/shutters/open{ - id = "RnDShutters"; - dir = 4 +"sNZ" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 }, -/turf/simulated/floor/tiled, -/area/rnd/lab) +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/hazardous) "sOe" = ( /obj/effect/floor_decal/corner/grey{ dir = 5 @@ -40597,29 +40396,44 @@ }, /turf/simulated/floor/lino, /area/horizon/bar) -"sOu" = ( -/obj/machinery/bookbinder, -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/wood, -/area/horizon/library) -"sOZ" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 +"sOn" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/structure/disposalpipe/junction{ - dir = 8 +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/button/remote/airlock{ + id = "xeno_entrance_ext"; + name = "Xenobiology External Access Bolts"; + pixel_y = 26; + req_access = list(55); + specialfunctions = 4; + dir = 10; + pixel_x = 32 }, /turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenological) +/area/rnd/xenobiology/foyer) +"sOu" = ( +/obj/machinery/bookbinder, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/wood, +/area/horizon/library) +"sPn" = ( +/obj/machinery/seed_storage/xenobotany, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "sPK" = ( /obj/structure/table/stone/marble, /obj/item/storage/box/plasticbag{ @@ -40689,9 +40503,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/ors) -"sRa" = ( -/turf/simulated/floor/wood, -/area/rnd/hallway/secondary) "sRe" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -40711,6 +40522,16 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/full, /area/hallway/primary/central_one) +"sRC" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/small/east, +/turf/simulated/floor/tiled/white, +/area/rnd/telesci) "sSE" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 @@ -40755,9 +40576,21 @@ }, /turf/simulated/floor/tiled, /area/operations/office) -"sTv" = ( -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) +"sUa" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/item/storage/box/fancy/vials, +/obj/item/reagent_containers/dropper/electronic_pipette, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry) "sUi" = ( /obj/structure/bed/stool/chair/office/dark{ dir = 1 @@ -40832,21 +40665,41 @@ }, /turf/simulated/open, /area/operations/office) +"sVn" = ( +/obj/structure/table/standard, +/obj/item/paper_bin, +/obj/item/pen{ + pixel_x = -4 + }, +/obj/item/pen/red{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/pen/blue{ + pixel_x = 3; + pixel_y = 7 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/rnd/lab) "sVB" = ( /obj/structure/lattice/catwalk/indoor/grate, /obj/structure/railing/mapped, /turf/simulated/floor/plating, /area/maintenance/research_port) +"sVJ" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/alarm/north, +/turf/simulated/floor/plating, +/area/maintenance/wing/port/far) "sVO" = ( /obj/structure/bed/stool/chair/padded/red{ dir = 4 }, /turf/simulated/floor/carpet/red, /area/horizon/crew_quarters/lounge/bar) -"sVV" = ( -/obj/structure/platform/ledge, -/turf/simulated/floor/carpet/rubber, -/area/rnd/telesci) "sWm" = ( /obj/structure/cable/orange{ icon_state = "0-2" @@ -40896,6 +40749,16 @@ /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/wing/starboard/far) +"sXh" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry) "sXv" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 8 @@ -40908,12 +40771,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/engineering/engine_room/rust) -"sXA" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/dissection) "sXC" = ( /obj/structure/closet, /obj/random/loot, @@ -40951,6 +40808,14 @@ /obj/structure/railing/mapped, /turf/simulated/open, /area/maintenance/wing/starboard) +"sYA" = ( +/obj/structure/window/borosilicate{ + dir = 4 + }, +/obj/structure/closet/hazmat/research, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white, +/area/rnd/lab) "sYI" = ( /obj/machinery/alarm/south, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -40962,6 +40827,19 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/stairwell/bridge) +"sYS" = ( +/obj/structure/extinguisher_cabinet/west, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/item/hoist_kit, +/obj/machinery/camera/motion{ + c_tag = "ZAT Aft Starboard"; + dir = 4; + network = list("Command","Security") + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) "sYU" = ( /obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, /obj/structure/cable/orange{ @@ -40982,15 +40860,6 @@ /obj/machinery/portable_atmospherics/canister/empty/air, /turf/simulated/floor/plating, /area/engineering/rust_office) -"sZP" = ( -/obj/structure/disposaloutlet{ - dir = 1; - spread = 90; - spread_point = 2; - pixel_y = -18 - }, -/turf/template_noop, -/area/template_noop) "sZT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -41015,6 +40884,24 @@ }, /turf/simulated/floor/tiled, /area/operations/office) +"taf" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + id = "RnDDesk"; + name = "Research and Development"; + opacity = 0 + }, +/obj/structure/table/reinforced/steel, +/obj/machinery/door/window/desk/northright{ + req_access = list(7); + name = "Research and Development" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters/open{ + id = "RnDShutters" + }, +/turf/simulated/floor/tiled, +/area/rnd/lab) "tag" = ( /obj/structure/bed/stool/bar/padded/red{ dir = 8 @@ -41060,17 +40947,6 @@ /obj/effect/map_effect/marker_helper/airlock/interior, /turf/simulated/floor/plating, /area/engineering/engine_room) -"taD" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/closet/secure_closet/xenobotany, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) "taG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -41118,6 +40994,11 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) +"tbi" = ( +/obj/machinery/vending/hydronutrients/xenobotany, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "tbu" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/ladder/up{ @@ -41128,12 +41009,6 @@ }, /turf/simulated/floor/tiled/dark, /area/maintenance/wing/starboard) -"tbI" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) "tbQ" = ( /obj/effect/floor_decal/industrial/warning{ dir = 10 @@ -41158,6 +41033,10 @@ }, /turf/simulated/floor/wood, /area/operations/lower/machinist/surgicalbay) +"tcz" = ( +/obj/effect/floor_decal/corner/mauve/full, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenological) "tcE" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 6 @@ -41228,6 +41107,22 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/kitchen) +"tdP" = ( +/obj/machinery/button/remote/airlock{ + id = "bolts_cannon_internal"; + name = "Primary Armament Interior Bolts"; + pixel_x = 22; + pixel_y = 22; + req_one_access = list(19,43); + specialfunctions = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) "tfl" = ( /obj/structure/table/stone/marble, /obj/machinery/door/firedoor, @@ -41299,6 +41194,21 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/holding_cell_a) +"tgT" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology) "tht" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -41309,32 +41219,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/engineering) -"thH" = ( -/obj/machinery/door/airlock/external{ - dir = 4 - }, -/obj/machinery/access_button{ - pixel_x = -12; - pixel_y = 28 - }, -/obj/effect/map_effect/marker/airlock{ - frequency = 3002; - master_tag = "airlock_horizon_deck_2_levi"; - name = "airlock_horizon_deck_2_levi" - }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/turf/simulated/floor/plating, -/area/horizon/zat) -"thI" = ( -/obj/structure/platform, -/obj/machinery/papershredder{ - pixel_x = 7 - }, -/obj/structure/filingcabinet/filingcabinet{ - pixel_x = -7 +"thL" = ( +/obj/machinery/camera/network/research{ + c_tag = "Research - XenoBotanical Lab Fore"; + dir = 1 }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hor) +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "thY" = ( /obj/structure/railing/mapped{ dir = 8 @@ -41420,17 +41311,9 @@ }, /turf/simulated/floor/carpet/rubber, /area/engineering/engine_monitoring/rust) -"tiR" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/door/blast/regular{ - dir = 4; - id = "cannon_view"; - name = "viewing blast doors" - }, -/turf/simulated/floor/plating, -/area/horizon/zat) +"tiV" = ( +/turf/simulated/wall, +/area/rnd/hallway) "tje" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 @@ -41457,6 +41340,13 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/carpet/rubber, /area/engineering/engine_room/rust) +"tjP" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "tjS" = ( /obj/structure/grille, /obj/machinery/door/firedoor, @@ -41511,6 +41401,14 @@ /obj/machinery/alarm/east, /turf/simulated/floor/wood, /area/horizon/bar) +"tkB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/foyer) "tkN" = ( /obj/machinery/door/airlock/engineering{ dir = 4; @@ -41520,6 +41418,18 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/substation/wing_port) +"tlf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/camera/network/research{ + dir = 1; + c_tag = "Xenobio - Cell C"; + network = list("Xeno_Bio") + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) "tlh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -41544,6 +41454,18 @@ /obj/structure/foamedmetal, /turf/simulated/floor/plating, /area/maintenance/wing/port) +"tmG" = ( +/obj/structure/filingcabinet{ + pixel_x = -7 + }, +/obj/structure/filingcabinet/chestdrawer{ + pixel_x = 7 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/foyer) "tmO" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/crate, @@ -41639,6 +41561,11 @@ }, /turf/simulated/floor/tiled/white, /area/medical/pharmacy) +"toT" = ( +/obj/machinery/telepad, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/reinforced, +/area/rnd/telesci) "tpc" = ( /obj/structure/cable/green{ d1 = 1; @@ -41684,34 +41611,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/deck_two/fore) -"trz" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "xenobio_e"; - name = "Cell Containment Blast Doors"; - pixel_x = -7; - req_access = list(47); - pixel_y = 29 - }, -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "xenobio_f"; - name = "Cell Containment Blast Doors"; - pixel_x = 7; - req_access = list(47); - pixel_y = 29 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/machinery/light/floor{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) "trC" = ( /obj/machinery/light, /obj/effect/floor_decal/corner/brown{ @@ -41719,22 +41618,22 @@ }, /turf/simulated/floor/tiled, /area/operations/lobby) -"trW" = ( -/obj/machinery/button/remote/airlock{ - id = "bolts_cannon_internal"; - name = "Primary Armament Interior Bolts"; - pixel_x = 22; - pixel_y = 22; - req_one_access = list(19,43); - specialfunctions = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" +"trE" = ( +/obj/structure/table/standard, +/obj/item/storage/box/fancy/tray{ + name = "dissection tray" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, -/area/horizon/zat) +/area/rnd/xenobiology/dissection) +"tsf" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) "tsk" = ( /obj/effect/floor_decal/industrial/warning/cee{ dir = 1 @@ -41767,37 +41666,6 @@ }, /turf/simulated/floor/tiled, /area/operations/office) -"tsL" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/machinery/chem_master, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"tub" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/regular/open{ - fail_secure = 1; - id = "xenobio_b"; - name = "Cell Containment Blast Door" - }, -/obj/machinery/disposal/deliveryChute{ - dir = 4 - }, -/obj/machinery/door/window/eastleft, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology) "tun" = ( /obj/machinery/suit_cycler/hos/prepared, /obj/machinery/firealarm/north, @@ -41835,24 +41703,46 @@ temperature = 253.15 }, /area/horizon/kitchen/freezer) -"twd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"tvl" = ( +/obj/structure/platform_stairs/full/east_west_cap, +/obj/structure/platform/cutout{ + dir = 8 }, -/obj/effect/floor_decal/corner/mauve{ +/obj/structure/platform{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/rnd/hallway/secondary) +"tvM" = ( +/obj/structure/window/reinforced{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/visible, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_containers/glass/bucket, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) +"tvX" = ( +/obj/effect/floor_decal/corner/mauve{ dir = 5 }, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/structure/extinguisher_cabinet/north, +/obj/machinery/light/floor{ + dir = 1 }, /turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/hazardous) +/area/rnd/conference) +"twc" = ( +/obj/machinery/door/airlock/glass{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/rnd/hallway/secondary) "two" = ( /obj/effect/floor_decal/corner_wide/yellow{ dir = 9 @@ -41918,6 +41808,16 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/lobby) +"tyd" = ( +/obj/structure/table/standard, +/obj/item/device/integrated_electronics/wirer, +/obj/item/device/integrated_electronics/debugger, +/obj/item/storage/bag/circuits/basic, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/rubber, +/area/rnd/lab) "tyq" = ( /turf/simulated/wall, /area/storage/primary) @@ -41994,51 +41894,21 @@ /obj/machinery/light/spot, /turf/simulated/floor/plating, /area/engineering/engine_room) -"tzW" = ( -/obj/machinery/door/airlock/glass_command{ - dir = 1; - id_tag = "server_door_lock"; - name = "Server Room"; - req_access = list(30) +"tzR" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/machinery/light/floor{ + dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/server) +/turf/simulated/floor/tiled, +/area/rnd/hallway/secondary) "tAn" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, /turf/simulated/floor/wood, /area/horizon/crew_quarters/lounge/bar) -"tAD" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) -"tAG" = ( -/obj/structure/table/standard, -/obj/item/paper_scanner{ - pixel_y = 20 - }, -/obj/item/folder/purple, -/obj/machinery/requests_console/west{ - name = "Circuitry Request Console"; - department = "Circuitry Workshop" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/carpet/rubber, -/area/rnd/lab) "tAL" = ( /obj/structure/cable{ icon_state = "1-2" @@ -42052,6 +41922,13 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/hallway/engineering) +"tAM" = ( +/obj/structure/platform_stairs, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/rnd/lab) "tAN" = ( /obj/machinery/atmospherics/binary/pump/on{ dir = 8; @@ -42110,22 +41987,23 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"tBu" = ( -/obj/structure/table/standard, -/obj/item/pen, -/obj/item/paper_scanner{ - pixel_x = -6; - pixel_y = 4 +"tBy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 }, -/obj/item/circuitboard/aicore{ - pixel_x = -2; - pixel_y = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 }, -/obj/machinery/light/floor{ - dir = 1 +/obj/structure/cable/green{ + icon_state = "1-4" }, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/heads/hor) +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/maintenance/wing/port) "tBI" = ( /obj/effect/floor_decal/spline/plain{ dir = 5 @@ -42158,18 +42036,6 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"tCF" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) "tCG" = ( /obj/machinery/alarm/north, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -42187,6 +42053,13 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/full, /area/chapel/main) +"tDp" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/machinery/light/floor, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/hazardous) "tDZ" = ( /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, @@ -42199,6 +42072,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/hallway/engineering) +"tEk" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) "tEq" = ( /obj/structure/sign/securearea{ desc = "A caution sign which reads 'CAUTION: BRIG AREA' and 'SECURE AREA'."; @@ -42298,6 +42178,17 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_room/rust) +"tFK" = ( +/obj/structure/table/steel, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/stack/packageWrap, +/obj/item/device/hand_labeler, +/obj/machinery/vending/wallmed1{ + pixel_x = 32 + }, +/turf/simulated/floor/reinforced, +/area/horizon/zat) "tFL" = ( /obj/effect/floor_decal/corner_wide/blue{ dir = 5 @@ -42400,6 +42291,15 @@ }, /turf/simulated/floor/reinforced, /area/horizon/grauwolf) +"tHv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) "tHA" = ( /obj/effect/floor_decal/corner/beige/full, /obj/effect/floor_decal/industrial/loading/yellow{ @@ -42444,6 +42344,13 @@ }, /turf/simulated/floor/tiled/white, /area/medical/ors) +"tHX" = ( +/obj/structure/window/reinforced, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) "tIa" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -42505,6 +42412,16 @@ /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) +"tJW" = ( +/obj/structure/sink{ + pixel_y = 1; + dir = 8; + pixel_x = -15 + }, +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) "tKs" = ( /obj/machinery/firealarm/north, /obj/effect/floor_decal/spline/plain/yellow{ @@ -42545,6 +42462,13 @@ /obj/structure/platform, /turf/simulated/floor/tiled/dark, /area/maintenance/wing/starboard) +"tKM" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) "tLi" = ( /obj/structure/bed/stool/chair/office/bridge/generic, /obj/effect/floor_decal/corner/dark_blue{ @@ -42565,21 +42489,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/engineering/engine_room) -"tLq" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) "tMp" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 8 @@ -42621,6 +42530,29 @@ }, /turf/simulated/floor/tiled/dark, /area/maintenance/aux_atmospherics/deck_2/starboard) +"tNS" = ( +/obj/structure/table/standard, +/obj/item/paper_bin{ + pixel_y = 2 + }, +/obj/item/pen, +/turf/simulated/floor/carpet/purple, +/area/crew_quarters/heads/hor) +"tNT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hor) "tNU" = ( /obj/structure/platform_stairs/full/east_west_cap, /obj/structure/platform/cutout{ @@ -42661,13 +42593,6 @@ }, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) -"tOJ" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/horizon/zat) "tOS" = ( /obj/effect/floor_decal/corner/brown{ dir = 5 @@ -42704,6 +42629,20 @@ }, /turf/simulated/floor/wood, /area/horizon/library) +"tPL" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/telesci) "tPU" = ( /obj/machinery/power/apc/super/critical/west, /obj/structure/cable{ @@ -42744,13 +42683,6 @@ /obj/machinery/alarm/east, /turf/simulated/floor/tiled/dark, /area/engineering/engine_waste) -"tQe" = ( -/obj/machinery/firealarm/north, -/obj/structure/table/rack, -/obj/item/storage/toolbox/mechanical, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) "tQk" = ( /obj/structure/disposaloutlet{ dir = 8 @@ -42780,6 +42712,23 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/bar) +"tQB" = ( +/obj/machinery/door/airlock/hatch{ + dir = 1; + id_tag = "bolts_cannon_external"; + name = "Primary Armament Exterior"; + req_one_access = list(19,43); + secured_wires = 1 + }, +/obj/effect/floor_decal/industrial/hatch/red, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/horizon/zat) "tQQ" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 6 @@ -42796,23 +42745,6 @@ }, /turf/simulated/open, /area/horizon/hydroponics) -"tRA" = ( -/obj/machinery/light/floor{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"tRY" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/item/device/radio, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/ears/earmuffs, -/turf/simulated/floor/reinforced, -/area/horizon/zat) "tSa" = ( /obj/structure/disposalpipe/segment, /obj/random/junk, @@ -42825,6 +42757,30 @@ }, /turf/simulated/wall, /area/operations/lobby) +"tSA" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/button/remote/airlock{ + id = "xeno_entrance_int_a"; + name = "Xenobiology External Access Bolts"; + pixel_y = -28; + req_access = list(55); + specialfunctions = 4; + dir = 4; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/foyer) "tSC" = ( /obj/item/reagent_containers/blood/OMinus, /obj/item/reagent_containers/blood/OMinus, @@ -42838,20 +42794,18 @@ temperature = 278 }, /area/medical/surgery) -"tSD" = ( -/obj/machinery/door/airlock/glass{ - dir = 1 +"tSJ" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) +/obj/effect/landmark{ + name = "Revenant" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/telesci) "tSL" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/vending/coffee, @@ -43103,16 +43057,6 @@ }, /turf/simulated/floor/tiled/full, /area/medical/psych) -"tZO" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/maintenance/research_port) "tZR" = ( /turf/simulated/wall/r_wall, /area/horizon/kitchen) @@ -43125,18 +43069,10 @@ "uan" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/security/brig) -"uar" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) +"uaC" = ( +/obj/machinery/firealarm/west, +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) "uaM" = ( /obj/effect/floor_decal/corner/yellow{ dir = 5 @@ -43148,12 +43084,24 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, /area/engineering/aft_airlock) +"ubn" = ( +/obj/effect/floor_decal/corner/pink/diagonal, +/obj/machinery/light, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) "ubq" = ( /turf/simulated/wall/r_wall, /area/horizon/security/hallway) "ubt" = ( /turf/simulated/floor/tiled, /area/maintenance/wing/starboard/far) +"ubv" = ( +/obj/structure/table/rack, +/obj/item/trap/animal/medium, +/obj/item/trap/animal/medium, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/xenobiology/foyer) "ubz" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/reinforced/airless, @@ -43241,15 +43189,6 @@ }, /turf/simulated/floor/wood, /area/horizon/crew_quarters/lounge/bar) -"ude" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/hazardous) "udv" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -43295,21 +43234,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_two) -"uew" = ( -/obj/effect/floor_decal/corner/pink/diagonal, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) "ueC" = ( /obj/structure/reagent_dispensers/water_cooler, /obj/effect/floor_decal/corner/dark_blue/full{ @@ -43318,6 +43242,12 @@ /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled, /area/horizon/security/brig) +"ueF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) "ueH" = ( /turf/simulated/floor/tiled/dark, /area/maintenance/wing/port/far) @@ -43336,9 +43266,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) -"ufE" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/template_noop) "ufG" = ( /obj/effect/floor_decal/corner_wide/lime/diagonal, /obj/structure/disposalpipe/segment, @@ -43411,12 +43338,6 @@ /obj/machinery/optable, /turf/simulated/floor/tiled/white, /area/medical/ors) -"ugP" = ( -/obj/machinery/suit_cycler/science/prepared, -/obj/item/tank/jetpack/carbondioxide, -/obj/item/tank/oxygen, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/telesci) "ugU" = ( /obj/structure/bookcase/libraryspawn/reference, /turf/simulated/floor/carpet/brown, @@ -43427,6 +43348,13 @@ }, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) +"ugY" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology) "ugZ" = ( /obj/structure/foamedmetal, /obj/structure/shuttle_part/scc_space_ship{ @@ -43497,6 +43425,17 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/bar/backroom) +"uhE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/light/small/emergency, +/turf/simulated/floor/plating, +/area/maintenance/research_port) "uhP" = ( /obj/structure/shuttle_part/scc_space_ship{ icon_state = "d2-4-f" @@ -43647,13 +43586,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/engineering/rust) -"uli" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/structure/platform_stairs/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) "uln" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -43751,38 +43683,35 @@ }, /turf/simulated/floor/carpet/rubber, /area/engineering/engine_room/rust) -"umJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"umH" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/camera/network/research{ - dir = 1; - c_tag = "Xenobio - Cell D"; - network = list("Xeno_Bio") +/obj/effect/floor_decal/corner/mauve{ + dir = 5 }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) -"umX" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = -32 +/obj/structure/cable/green{ + icon_state = "2-4" }, -/obj/machinery/light/small{ - dir = 8 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 }, -/obj/structure/closet/toolcloset, -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) -"umZ" = ( -/obj/machinery/shower{ - dir = 4; - pixel_x = -1; - pixel_y = 1 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 }, -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/disposalpipe/junction/yjunction, /turf/simulated/floor/tiled, -/area/rnd/xenobiology) +/area/rnd/hallway) +"umW" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1; + level = 2 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) "unn" = ( /obj/structure/table/stone/marble, /obj/effect/floor_decal/spline/fancy/wood{ @@ -43791,15 +43720,6 @@ /obj/item/flame/candle, /turf/simulated/floor/wood, /area/chapel/main) -"unE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/carpet/rubber, -/area/server) "unJ" = ( /obj/structure/cable/green{ icon_state = "0-2" @@ -43833,6 +43753,20 @@ }, /turf/simulated/floor/reinforced/reactor, /area/engineering/engine_room) +"uon" = ( +/obj/machinery/disposal/deliveryChute{ + pixel_y = 7 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/southright, +/obj/structure/disposalpipe/trunk, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/hazardous) "uoq" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -43943,17 +43877,18 @@ }, /turf/simulated/floor/plating, /area/maintenance/wing/starboard/far) -"ups" = ( -/obj/effect/floor_decal/industrial/hatch/red, -/obj/structure/window/reinforced{ - dir = 4 +"upt" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 10 }, -/obj/machinery/camera/motion{ - c_tag = "ZAT Access Fore"; - network = list("Command","Security") +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/computer/rdconsole/core, +/obj/structure/railing/mapped{ + dir = 8 }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/zat) +/obj/machinery/r_n_d/destructive_analyzer, +/turf/simulated/floor/carpet/rubber, +/area/rnd/lab) "upv" = ( /obj/machinery/door/airlock/external, /obj/machinery/access_button{ @@ -43969,18 +43904,6 @@ /obj/effect/map_effect/marker_helper/airlock/exterior, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) -"upD" = ( -/obj/machinery/atmospherics/valve{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) "upE" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -44016,13 +43939,6 @@ }, /turf/simulated/floor, /area/maintenance/wing/port/far) -"uqe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) "uqi" = ( /obj/structure/girder, /turf/simulated/floor/plating, @@ -44033,14 +43949,22 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"urb" = ( -/obj/machinery/porta_turret/stationary{ - req_access = list(19); - req_one_access = null +"urh" = ( +/obj/structure/table/standard, +/obj/item/storage/box/gloves, +/obj/item/storage/box/masks{ + pixel_x = 4; + pixel_y = 4 }, -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/zat) +/obj/item/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + icon_state = "sterilesprayblue"; + name = "surgery cleaner"; + pixel_y = 3; + pixel_x = -11 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/dissection) "urm" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table/steel, @@ -44073,13 +43997,6 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/operations/mail_room) -"usi" = ( -/obj/effect/floor_decal/corner/pink/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) "usj" = ( /obj/structure/cable{ icon_state = "1-2" @@ -44126,6 +44043,14 @@ }, /turf/simulated/floor/lino, /area/horizon/crew_quarters/lounge/bar) +"usK" = ( +/obj/structure/closet/radiation, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/carpet/rubber, +/area/horizon/zat) "usP" = ( /obj/machinery/door/airlock{ dir = 4; @@ -44185,10 +44110,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/maintenance/aux_atmospherics/deck_2/starboard/wing) -"uuR" = ( -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/hazardous) "uvd" = ( /obj/random/loot, /obj/effect/floor_decal/industrial/warning{ @@ -44276,6 +44197,14 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/full, /area/maintenance/substation/engineering) +"uxp" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "uxr" = ( /obj/machinery/light{ dir = 4 @@ -44337,14 +44266,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/engineering) -"uyJ" = ( -/obj/machinery/door/airlock/glass{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) "uzd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, @@ -44352,9 +44273,6 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/hallway/primary/central_one) -"uzj" = ( -/turf/simulated/floor/carpet/rubber, -/area/horizon/zat) "uzr" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass{ @@ -44366,6 +44284,21 @@ }, /turf/simulated/floor/tiled/full, /area/operations/lobby) +"uzs" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/zat) "uzy" = ( /obj/machinery/firealarm/south, /obj/effect/floor_decal/corner_wide/yellow{ @@ -44373,15 +44306,13 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_room/rust) -"uzN" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/machinery/light/floor, -/obj/machinery/disposal/small/north, -/obj/structure/disposalpipe/trunk{ - dir = 1 +"uzO" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) "uzQ" = ( /obj/effect/floor_decal/corner_wide/yellow/full{ dir = 4 @@ -44407,17 +44338,6 @@ }, /turf/simulated/floor/tiled, /area/maintenance/aux_atmospherics/deck_2/starboard/wing) -"uBc" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/camera/network/research{ - dir = 8; - c_tag = "Xenobio - Cell F"; - network = list("Xeno_Bio") - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) "uBf" = ( /obj/machinery/light/small/emergency{ dir = 8 @@ -44444,11 +44364,6 @@ }, /turf/simulated/floor/plating, /area/security/checkpoint2) -"uBt" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/ship_weapon_dummy, -/turf/simulated/floor/reinforced, -/area/horizon/zat) "uBu" = ( /obj/machinery/atmospherics/unary/outlet_injector{ use_power = 1 @@ -44476,9 +44391,28 @@ }, /turf/simulated/floor/tiled/full, /area/hallway/engineering) +"uCD" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/corner/pink/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) "uCX" = ( /turf/simulated/floor/tiled, /area/horizon/hallway/deck_two/fore) +"uDr" = ( +/obj/structure/closet/toolcloset, +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) +"uDs" = ( +/obj/structure/platform, +/obj/structure/closet/crate, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/rnd/lab) "uDO" = ( /obj/structure/lattice/catwalk/indoor/grate, /obj/structure/platform_deco{ @@ -44514,19 +44448,6 @@ }, /turf/simulated/floor/wood, /area/chapel/office) -"uEA" = ( -/obj/structure/railing/mapped, -/obj/effect/floor_decal/corner/pink/diagonal, -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) -"uEC" = ( -/obj/structure/closet/radiation, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/carpet/rubber, -/area/horizon/zat) "uEV" = ( /obj/item/material/stool/chair/folding{ pixel_y = 4 @@ -44592,6 +44513,19 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) +"uFo" = ( +/obj/machinery/door/window/holowindoor{ + dir = 1 + }, +/obj/machinery/door/window/holowindoor, +/obj/machinery/door/blast/regular/open{ + fail_secure = 1; + id = "xenobio_f"; + name = "Cell Containment Blast Door"; + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/xenobiology) "uFM" = ( /obj/structure/table/standard, /obj/effect/floor_decal/spline/fancy/wood{ @@ -44617,6 +44551,13 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/operations/lobby) +"uGW" = ( +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, +/obj/machinery/door/blast/shutters/open{ + id = "RnDShutters" + }, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/conference) "uHh" = ( /obj/machinery/alarm/south, /obj/effect/floor_decal/industrial/outline/engineering, @@ -44668,14 +44609,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"uHX" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - name = "Research and Development Maintenance"; - req_access = list(7) - }, -/turf/simulated/floor/plating, -/area/rnd/chemistry) "uHY" = ( /obj/machinery/power/portgen/basic, /obj/effect/floor_decal/industrial/outline/yellow, @@ -44695,6 +44628,14 @@ }, /turf/simulated/floor/tiled, /area/storage/primary) +"uIa" = ( +/obj/structure/table/standard, +/obj/item/device/analyzer/plant_analyzer, +/obj/item/reagent_containers/spray/plantbgone, +/obj/item/material/minihoe, +/obj/item/material/hatchet, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "uIf" = ( /obj/structure/table/wood, /obj/effect/floor_decal/corner_wide/green/diagonal, @@ -44717,20 +44658,6 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"uIC" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/floor_decal/corner/mauve/full, -/obj/machinery/button/remote/airlock{ - id = "xeno_entrance_int_a"; - name = "Xenobiology External Access Bolts"; - pixel_y = 3; - req_access = list(55); - specialfunctions = 4; - dir = 8; - pixel_x = -22 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) "uIM" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/grey/diagonal, @@ -44772,20 +44699,6 @@ /obj/structure/lattice/catwalk/indoor/grate/damaged, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) -"uJp" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/camera/network/research{ - c_tag = "Research - XenoBotanical Lab Aft" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) "uKi" = ( /obj/random/loot, /obj/structure/closet, @@ -44820,6 +44733,10 @@ /obj/structure/railing/mapped, /turf/simulated/floor/tiled/dark, /area/horizon/grauwolf) +"uKZ" = ( +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology) "uLh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -44871,14 +44788,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/bar) -"uMe" = ( -/obj/machinery/door/blast/regular{ - dir = 2; - id = "cannon_external"; - name = "Primary Armament Shielding" - }, -/turf/simulated/floor/plating, -/area/horizon/zat) "uMn" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 8 @@ -44913,6 +44822,12 @@ }, /turf/simulated/floor/tiled/full, /area/medical/first_responder) +"uMT" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/rnd/hallway/secondary) "uNl" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -44940,53 +44855,37 @@ }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"uOq" = ( -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"uOr" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +"uOb" = ( +/obj/structure/table/standard, +/obj/item/cell/high, +/obj/item/cell/high, +/obj/item/cell/high, +/obj/item/device/flashlight{ + pixel_x = 9; + pixel_y = 7 }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/zat) +"uOj" = ( /obj/structure/cable/green{ icon_state = "4-8" }, -/turf/simulated/floor/tiled/white, -/area/rnd/conference) -"uOt" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) -"uOv" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Lab Assistant" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/wood, -/area/rnd/conference) +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_one_access = list(12,26,29,31,48,67) + }, +/turf/simulated/floor/tiled/full, +/area/maintenance/wing/starboard) +"uOq" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/maintenance/wing/starboard/far) "uOy" = ( /obj/effect/floor_decal/corner_wide/blue/full{ dir = 1 @@ -45019,9 +44918,6 @@ /obj/structure/platform, /turf/simulated/floor/wood, /area/horizon/crew_quarters/lounge/bar) -"uOO" = ( -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/hazardous) "uOT" = ( /obj/structure/table/standard, /obj/machinery/camera/network/engineering{ @@ -45059,17 +44955,18 @@ /obj/machinery/light/spot, /turf/simulated/floor/carpet/rubber, /area/engineering/engine_room/rust) -"uPO" = ( -/obj/machinery/chemical_dispenser/coffee/full{ - pixel_y = 14 +"uPo" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 }, -/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup, -/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup{ - pixel_x = 7 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/structure/table/standard, /turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenological) +/area/rnd/hallway) "uPP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 @@ -45107,6 +45004,15 @@ }, /turf/simulated/floor/carpet/rubber, /area/engineering/engine_monitoring/rust) +"uQS" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "uRe" = ( /obj/machinery/disposal/small/south, /obj/structure/disposalpipe/trunk, @@ -45215,22 +45121,6 @@ "uTr" = ( /turf/simulated/wall, /area/rnd/chemistry) -"uTJ" = ( -/obj/machinery/door/airlock/glass_research{ - dir = 1; - name = "Telescience"; - req_access = list(7) - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/telesci) "uTY" = ( /turf/simulated/floor/wood, /area/horizon/crew_quarters/lounge/bar) @@ -45247,50 +45137,6 @@ }, /turf/simulated/floor/reinforced/airless, /area/engineering/engine_room/rust) -"uUe" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/button/remote/airlock{ - dir = 1; - id = "bolts_cannon_internal"; - name = "Primary Armament Interior Bolts"; - pixel_x = 22; - pixel_y = -20; - req_one_access = list(19,43); - specialfunctions = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/horizon/zat) -"uUl" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/firealarm/south, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_x = 6; - pixel_y = -25 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) "uUn" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -45313,6 +45159,19 @@ /obj/structure/closet/secure_closet/brig, /turf/simulated/floor/tiled, /area/horizon/security/holding_cell_b) +"uUD" = ( +/obj/structure/table/standard, +/obj/machinery/reagentgrinder{ + pixel_y = 11 + }, +/obj/item/stack/material/phoron{ + amount = 15 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/chemistry) "uUJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 @@ -45323,6 +45182,13 @@ }, /turf/simulated/floor/tiled/white, /area/medical/ors) +"uUR" = ( +/obj/structure/trash_pile, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/research_port) "uUT" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -45354,19 +45220,6 @@ /obj/structure/railing/mapped, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) -"uWi" = ( -/obj/structure/bed/stool/chair/sofa/left/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_x = -5; - pixel_y = -20 - }, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/heads/hor) "uWx" = ( /obj/item/material/shard{ icon_state = "small" @@ -45374,9 +45227,6 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) -"uWy" = ( -/turf/simulated/wall, -/area/rnd/hallway) "uXd" = ( /obj/machinery/door/blast/shutters{ dir = 2; @@ -45385,24 +45235,6 @@ /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, /area/operations/office) -"uXk" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) "uXq" = ( /obj/structure/railing/mapped{ dir = 1 @@ -45412,6 +45244,28 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) +"uXV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/maintenance/research_port) +"uXX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) "uYJ" = ( /obj/structure/closet/crate, /obj/random/loot, @@ -45500,23 +45354,6 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/security/hallway) -"uZG" = ( -/obj/machinery/door/airlock/hatch{ - dir = 1; - id_tag = "bolts_cannon_external"; - name = "Primary Armament Exterior"; - req_one_access = list(19,43); - secured_wires = 1 - }, -/obj/effect/floor_decal/industrial/hatch/red, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/horizon/zat) "uZH" = ( /obj/structure/railing/mapped{ dir = 1 @@ -45608,13 +45445,6 @@ }, /turf/simulated/floor/reinforced/airless, /area/engineering/engine_room) -"vdo" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) "vdy" = ( /obj/structure/cable/green{ icon_state = "0-2" @@ -45684,6 +45514,28 @@ }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) +"veG" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenological) "veO" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 6 @@ -45720,24 +45572,6 @@ }, /turf/simulated/wall, /area/horizon/commissary) -"vfr" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/structure/table/standard, -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/button/remote/blast_door{ - dir = 10; - id = "hazardous_lockdown"; - name = "Area lockdown"; - req_access = list(47); - pixel_y = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/hazardous) "vfQ" = ( /obj/machinery/smartfridge/chemistry{ density = 0; @@ -45776,6 +45610,22 @@ /obj/structure/window/shuttle/scc_space_ship, /turf/simulated/floor/plating, /area/horizon/crew_quarters/lounge/bar) +"vgn" = ( +/obj/structure/table/standard, +/obj/item/storage/box/syringes{ + pixel_y = 2; + pixel_x = -8 + }, +/obj/item/storage/box/beakers{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/east, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/chemistry) "vgt" = ( /obj/structure/disposaloutlet{ dir = 1; @@ -45791,27 +45641,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/custodial/disposals) -"vgU" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) "vhe" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -45829,6 +45658,10 @@ }, /turf/simulated/floor/tiled, /area/engineering/storage_eva) +"vht" = ( +/obj/structure/bed/stool/chair/office/light, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology) "vhu" = ( /obj/structure/reagent_dispensers/extinguisher, /obj/effect/floor_decal/industrial/warning{ @@ -45836,6 +45669,13 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_two/fore/starboard) +"vhw" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/rnd/hallway) "vhI" = ( /obj/structure/cable/green{ icon_state = "2-8" @@ -45861,6 +45701,16 @@ }, /turf/simulated/floor/tiled, /area/engineering/lobby) +"vjr" = ( +/obj/structure/table/standard, +/obj/item/autopsy_scanner{ + pixel_x = -11 + }, +/obj/item/device/mass_spectrometer{ + pixel_x = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/dissection) "vjt" = ( /obj/machinery/light/small, /obj/effect/floor_decal/corner/dark_blue/full, @@ -45879,13 +45729,14 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/tiled/dark, /area/horizon/stairwell/bridge) -"vkc" = ( -/obj/machinery/portable_atmospherics/hydroponics/soil, -/obj/machinery/light{ - dir = 1 +"vkb" = ( +/obj/structure/railing/mapped{ + dir = 8 }, -/turf/simulated/floor/exoplanet/grass, -/area/rnd/xenobiology/xenoflora) +/obj/machinery/cell_charger, +/obj/structure/table/standard, +/turf/simulated/floor/reinforced, +/area/horizon/zat) "vkq" = ( /obj/structure/table/wood, /obj/item/modular_computer/laptop/preset/security/hos, @@ -45907,11 +45758,15 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/kitchen) -"vlc" = ( -/obj/structure/railing/mapped, -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/tiled/dark, -/area/rnd/lab) +"vlA" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) "vlO" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -45946,6 +45801,18 @@ "vmD" = ( /turf/simulated/wall, /area/horizon/kitchen/freezer) +"vmO" = ( +/obj/machinery/shower{ + dir = 4; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light/floor{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology) "vnz" = ( /obj/structure/shuttle_part/scc_space_ship{ icon_state = "d3-1" @@ -46000,12 +45867,15 @@ /turf/simulated/open, /area/maintenance/wing/starboard) "vqk" = ( -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/light/small/emergency{ - dir = 8 +/obj/machinery/shower{ + dir = 4; + pixel_x = -1; + pixel_y = 1 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) "vqm" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 6 @@ -46045,9 +45915,6 @@ /obj/structure/grille, /turf/simulated/open/airless, /area/horizon/exterior) -"vru" = ( -/turf/simulated/floor/reinforced, -/area/horizon/zat) "vrw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 @@ -46095,6 +45962,26 @@ }, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) +"vsE" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/south, +/turf/simulated/floor/tiled/white, +/area/rnd/telesci) +"vsI" = ( +/obj/structure/bed/stool/chair/office/light, +/obj/effect/floor_decal/corner/mauve/full{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenological) "vsM" = ( /obj/structure/railing/mapped{ dir = 1 @@ -46105,6 +45992,9 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark/full, /area/engineering/engine_room) +"vtd" = ( +/turf/simulated/wall/r_wall, +/area/rnd/xenobiology/foyer) "vte" = ( /turf/simulated/floor/tiled, /area/operations/lobby) @@ -46122,19 +46012,15 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/horizon/security/hallway) -"vtm" = ( +"vtB" = ( /obj/structure/table/standard, -/obj/item/paper_scanner{ - pixel_x = -7 - }, -/obj/item/paper_bin, -/obj/item/pen/black, -/obj/effect/floor_decal/corner/mauve/full{ - dir = 4 +/obj/item/storage/box/fancy/vials, +/obj/machinery/camera/network/research{ + c_tag = "Research - Dissection"; + dir = 1 }, -/obj/machinery/firealarm/east, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/dissection) "vtX" = ( /obj/machinery/door/firedoor, /obj/machinery/door/blast/shutters/open{ @@ -46257,6 +46143,23 @@ }, /turf/simulated/floor/wood, /area/horizon/crew_quarters/lounge/bar) +"vwC" = ( +/obj/machinery/shieldwallgen, +/obj/effect/floor_decal/corner/mauve/full{ + dir = 4 + }, +/obj/structure/cable/green, +/obj/machinery/alarm/south, +/obj/machinery/button/remote/airlock{ + id = "hazardous_access"; + name = "Hazardous Containment"; + req_access = list(55); + specialfunctions = 4; + dir = 4; + pixel_x = 23 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/hazardous) "vxa" = ( /obj/structure/lattice/catwalk/indoor/grate, /obj/machinery/light/small/emergency{ @@ -46320,6 +46223,21 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) +"vye" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway/secondary) "vyg" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/machinery/light/small{ @@ -46364,21 +46282,6 @@ /obj/structure/railing/mapped, /turf/simulated/floor/tiled, /area/operations/lower/machinist/surgicalbay) -"vzw" = ( -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/pottedplant/mysterious, -/turf/simulated/floor/grass, -/area/rnd/hallway/secondary) -"vzy" = ( -/obj/structure/table/standard, -/obj/item/paper_bin{ - pixel_y = 2 - }, -/obj/item/pen, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/heads/hor) "vzE" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -46389,6 +46292,16 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/horizon/hallway/deck_two/fore) +"vzO" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry) "vzQ" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -46546,45 +46459,31 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/stairwell/bridge) -"vDz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"vDT" = ( +/obj/effect/floor_decal/corner/brown/full{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/turf/simulated/floor/tiled, +/area/operations/break_room) +"vDU" = ( +/obj/structure/bed/stool/chair/padded/purple, +/obj/machinery/light{ dir = 4 }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/rnd/hallway) -"vDB" = ( +/turf/simulated/floor/carpet/purple, +/area/crew_quarters/heads/hor) +"vEg" = ( /obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 10 }, -/obj/machinery/disposal/small/south, -/obj/structure/disposalpipe/trunk, /obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/foyer) -"vDT" = ( -/obj/effect/floor_decal/corner/brown/full{ - dir = 1 + icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/operations/break_room) +/area/rnd/hallway) "vEh" = ( /obj/machinery/power/terminal{ dir = 1 @@ -46598,26 +46497,6 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/wing_port) -"vEl" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/button/remote/airlock{ - id = "xeno_dissection"; - name = "Dissection access"; - req_access = list(55); - specialfunctions = 4; - dir = 4; - pixel_x = 23; - pixel_y = 32 - }, -/turf/simulated/floor/carpet/rubber, -/area/rnd/xenobiology/dissection) "vES" = ( /obj/structure/railing/mapped{ dir = 8 @@ -46636,17 +46515,47 @@ /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/aft) -"vFb" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +"vFr" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) +"vFw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/alarm/east{ - req_one_access = list(24,11,55) - }, /turf/simulated/floor/plating, -/area/maintenance/research_port) +/area/hallway/primary/central_one) +"vFz" = ( +/obj/structure/table/rack, +/obj/item/device/gps/science{ + pixel_x = 4; + pixel_y = 11 + }, +/obj/item/device/gps/science{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/item/device/gps/science{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/device/gps/science{ + pixel_y = -1; + pixel_x = 4 + }, +/obj/machinery/alarm/north, +/obj/item/device/multitool{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/screwdriver, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/telesci) "vFN" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -46698,11 +46607,6 @@ }, /turf/simulated/floor/wood, /area/horizon/crew_quarters/lounge/bar) -"vGW" = ( -/obj/machinery/weapons_analyzer, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/lab) "vHg" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -46767,23 +46671,38 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/horizon/hallway/deck_two/fore) -"vIf" = ( -/obj/structure/table/steel, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/stack/packageWrap, -/obj/item/device/hand_labeler, -/obj/machinery/vending/wallmed1{ - pixel_x = 32 +"vId" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 }, -/turf/simulated/floor/reinforced, -/area/horizon/zat) +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/firealarm/south, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = 6; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "vIt" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 6 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) +"vIz" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) "vIU" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/reagent_dispensers/fueltank, @@ -46820,6 +46739,15 @@ }, /turf/simulated/floor/tiled/white, /area/operations/break_room) +"vJw" = ( +/obj/structure/railing/mapped, +/obj/machinery/camera/network/research{ + c_tag = "Research - Research & Development Circuitry"; + pixel_y = 9; + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/lab) "vJK" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 6 @@ -46902,21 +46830,25 @@ /obj/structure/window/shuttle/scc_space_ship, /turf/simulated/floor/plating, /area/horizon/crew_quarters/lounge/bar) -"vLE" = ( -/obj/machinery/door/window/holowindoor{ - dir = 1 +"vLu" = ( +/obj/structure/table/reinforced/glass, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/structure/cable/green{ + icon_state = "1-4" }, -/turf/simulated/floor/exoplanet/grass, -/area/rnd/xenobiology/xenoflora) -"vMc" = ( -/obj/structure/flora/pottedplant{ - icon_state = "plant-33" +/turf/simulated/floor/wood, +/area/rnd/conference) +"vMk" = ( +/obj/structure/railing/mapped{ + dir = 8 }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 +/obj/effect/floor_decal/corner/pink/diagonal, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 }, -/turf/simulated/floor/wood, -/area/rnd/hallway/secondary) +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) "vMl" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -46947,6 +46879,13 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) +"vNg" = ( +/obj/item/paper_bin, +/obj/item/pen/black, +/obj/structure/table/standard, +/obj/machinery/firealarm/east, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenological) "vNF" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -47093,6 +47032,12 @@ "vPj" = ( /turf/simulated/floor/tiled, /area/horizon/security/lobby) +"vPk" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "vPt" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 @@ -47112,6 +47057,16 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) +"vQd" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/lab) "vQe" = ( /obj/structure/railing/mapped{ dir = 8 @@ -47192,15 +47147,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/ors) -"vRw" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) -"vRy" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) "vRP" = ( /obj/structure/stairs_railing{ dir = 4; @@ -47337,6 +47283,18 @@ /obj/effect/floor_decal/industrial/hatch/grey, /turf/simulated/floor/tiled/dark/full, /area/horizon/bar) +"vUK" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Xenobotanist" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/rnd/conference) "vUO" = ( /obj/machinery/atmospherics/pipe/manifold/visible/black{ dir = 1 @@ -47355,6 +47313,13 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/bar) +"vVs" = ( +/obj/machinery/portable_atmospherics/hydroponics/soil, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/exoplanet/grass, +/area/rnd/xenobiology/xenoflora) "vVv" = ( /obj/structure/table/rack, /obj/random/loot, @@ -47439,6 +47404,43 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/maintenance/security_starboard) +"vXB" = ( +/obj/machinery/camera/network/research{ + c_tag = "Research - Xenobiology Fore"; + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/structure/table/standard, +/obj/item/device/slime_scanner{ + pixel_x = -11; + pixel_y = 4 + }, +/obj/item/device/slime_scanner{ + pixel_x = -11; + pixel_y = 4 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_y = 8 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_y = 8 + }, +/obj/item/storage/box/syringes{ + pixel_x = 5; + pixel_y = 1 + }, +/obj/item/storage/box/syringes{ + pixel_x = 5; + pixel_y = 1 + }, +/obj/machinery/firealarm/south, +/obj/machinery/vending/wallmed1{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology) "vXX" = ( /obj/machinery/light/small{ dir = 1 @@ -47500,13 +47502,6 @@ }, /turf/simulated/floor/tiled/white, /area/operations/break_room) -"vYP" = ( -/obj/item/trap/animal, -/obj/structure/table/rack, -/obj/item/trap/animal, -/obj/item/trap/animal, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology/foyer) "vYQ" = ( /obj/structure/cable{ icon_state = "2-8" @@ -47616,35 +47611,6 @@ }, /turf/simulated/floor/plating, /area/horizon/hydroponics) -"vZX" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/closet/hazmat/research, -/obj/item/clothing/mask/gas/alt, -/obj/item/tank/oxygen, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"wap" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/machinery/light/floor{ - dir = 4 - }, -/obj/structure/sign/science{ - pixel_x = 32; - pixel_y = -2 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) "way" = ( /obj/structure/cable{ icon_state = "4-8" @@ -47662,12 +47628,16 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/full, /area/engineering/lobby) -"waG" = ( -/obj/machinery/computer/robotics{ - dir = 4 +"waD" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 }, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/heads/hor) +/obj/structure/sign/science{ + pixel_y = -31 + }, +/obj/machinery/light/floor, +/turf/simulated/floor/tiled, +/area/rnd/hallway) "waI" = ( /turf/simulated/floor/tiled/freezer{ name = "cooled tiles"; @@ -47680,17 +47650,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"wbw" = ( -/obj/machinery/requests_console/east{ - department = "Science Conference Room"; - departmentType = 2; - name = "Science Conference Room" - }, -/obj/effect/floor_decal/corner/mauve/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/conference) "wbC" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/crate, @@ -47714,15 +47673,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/crew_quarters/washroom/central) -"wbL" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) "wbP" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 10 @@ -47816,6 +47766,13 @@ }, /turf/simulated/open, /area/hallway/primary/central_one) +"wdn" = ( +/obj/machinery/chemical_dispenser, +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "wdw" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/firedoor/multi_tile, @@ -47884,19 +47841,6 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"weA" = ( -/obj/structure/platform, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/table/standard, -/obj/item/roller{ - pixel_y = 6 - }, -/obj/item/storage/box/sharps, -/obj/item/storage/box/sharps, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/dissection) "weX" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -47919,9 +47863,11 @@ /turf/simulated/floor/reinforced/airless, /area/engineering/engine_room/rust) "wfi" = ( -/obj/machinery/portable_atmospherics/hydroponics/soil, -/turf/simulated/floor/exoplanet/grass, -/area/rnd/xenobiology/xenoflora) +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d3-3" + }, +/turf/template_noop, +/area/template_noop) "wfy" = ( /obj/effect/floor_decal/corner_wide/green{ dir = 6 @@ -47956,6 +47902,12 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/horizon/kitchen) +"wgI" = ( +/obj/machinery/light/floor{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology) "wgL" = ( /obj/machinery/newscaster/east, /obj/effect/floor_decal/corner/dark_green/full{ @@ -48026,12 +47978,6 @@ /obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/tiled/white, /area/medical/icu) -"whV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/carpet/rubber, -/area/rnd/lab) "wia" = ( /turf/simulated/wall, /area/medical/icu) @@ -48109,22 +48055,6 @@ /obj/structure/bed/stool/bar/padded/red, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) -"wiK" = ( -/obj/structure/platform_deco{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hor) -"wjy" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) "wjU" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -48195,16 +48125,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/custodial/disposals) -"wle" = ( -/obj/structure/table/reinforced/glass, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/rnd/conference) "wlg" = ( /obj/structure/railing/mapped, /obj/structure/railing/mapped{ @@ -48222,25 +48142,13 @@ }, /turf/simulated/open, /area/hallway/primary/central_one) -"wlk" = ( -/obj/structure/table/standard, -/obj/item/folder/purple, -/obj/item/stamp/rd{ - pixel_x = -8; - pixel_y = 10 - }, -/obj/item/device/eftpos{ - eftpos_name = "Research EFTPOS scanner" - }, -/obj/machinery/light/floor{ - dir = 4 - }, -/obj/item/paper/monitorkey{ - pixel_y = -6; - pixel_x = 9 - }, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/heads/hor) +"wlF" = ( +/obj/machinery/door/window/eastleft, +/obj/structure/platform/ledge, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/telesci) "wlJ" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -48255,9 +48163,6 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) -"wlO" = ( -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/heads/hor) "wmc" = ( /turf/simulated/floor/tiled/dark, /area/horizon/hydroponics/garden) @@ -48269,39 +48174,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/engineering/engine_waste) -"wmh" = ( -/obj/machinery/button/remote/airlock{ - dir = 1; - id = "bolts_cannon_external"; - name = "Primary Armament Exterior Bolts"; - pixel_x = -6; - pixel_y = -38; - req_one_access = list(19,43); - specialfunctions = 4 - }, -/obj/machinery/button/remote/airlock{ - dir = 1; - id = "bolts_cannon_entrance"; - name = "Entrance Airlock Bolts"; - pixel_x = 6; - pixel_y = -38; - req_one_access = list(19,43); - specialfunctions = 4 - }, -/obj/machinery/button/remote/airlock{ - dir = 1; - id = "bolts_cannon_internal"; - name = "Primary Armament Interior Bolts"; - pixel_x = -6; - pixel_y = -28; - req_one_access = list(19,43); - specialfunctions = 4 - }, -/obj/structure/sign/nosmoking_2{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) "wmi" = ( /obj/effect/landmark/entry_point/starboard{ name = "starboard, ballast fore" @@ -48335,6 +48207,19 @@ }, /turf/simulated/floor/tiled, /area/operations/office) +"wmL" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/porta_turret/sniper, +/obj/machinery/light/small/emergency, +/obj/machinery/alarm/east{ + pixel_y = -28; + req_one_access = list(24,11,55) + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/zat) "wmT" = ( /obj/structure/railing/mapped, /obj/structure/platform/ledge{ @@ -48361,6 +48246,22 @@ }, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) +"wmZ" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/turf/simulated/floor/tiled, +/area/maintenance/wing/port) +"wnc" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/ship_weapon_dummy, +/turf/simulated/floor/plating, +/area/horizon/zat) "wne" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -48381,28 +48282,6 @@ /obj/structure/railing/mapped, /turf/simulated/open, /area/maintenance/wing/starboard) -"wnK" = ( -/obj/structure/closet/crate, -/obj/item/device/assembly/timer, -/obj/item/device/assembly/timer, -/obj/item/device/assembly/timer, -/obj/item/device/assembly/timer, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/gun/launcher/syringe, -/obj/item/storage/box/syringegun, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/chemistry) "wnW" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/brown{ @@ -48410,6 +48289,15 @@ }, /turf/simulated/floor/tiled, /area/operations/mail_room) +"woe" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/corner/pink/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/extinguisher_cabinet/west, +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) "wok" = ( /obj/structure/platform{ dir = 1 @@ -48418,16 +48306,16 @@ /obj/structure/railing/mapped, /turf/simulated/floor/tiled, /area/operations/lower/machinist/surgicalbay) -"wol" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/machinery/computer/guestpass{ - pixel_y = -32 +"wou" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled, -/area/rnd/hallway) +/turf/simulated/floor/plating, +/area/rnd/hallway/secondary) "wox" = ( /obj/effect/decal/cleanable/dirt, /obj/item/clothing/glasses/sunglasses, @@ -48498,18 +48386,14 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/armoury) -"wpJ" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - name = "Xenobotany Maintenance"; - req_access = list(52) - }, -/obj/machinery/door/firedoor{ +"wpz" = ( +/obj/structure/window/borosilicate{ dir = 4 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology/xenoflora) +/obj/structure/closet/secure_closet/scientist, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white, +/area/rnd/lab) "wqe" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -48517,10 +48401,6 @@ /obj/effect/floor_decal/corner_wide/yellow/full, /turf/simulated/floor/tiled, /area/hallway/engineering/rust) -"wqn" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) "wqE" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -48563,6 +48443,18 @@ /obj/effect/floor_decal/industrial/outline/engineering, /turf/simulated/floor/tiled, /area/engineering/locker_room) +"wrB" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway/secondary) "wrK" = ( /obj/machinery/appliance/cooker/oven, /obj/effect/floor_decal/industrial/outline/grey, @@ -48581,18 +48473,24 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) +"wrW" = ( +/obj/structure/platform, +/obj/structure/table/standard, +/obj/machinery/photocopier/faxmachine{ + department = "Research Director's Office" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hor) +"wsn" = ( +/obj/machinery/computer/rdservercontrol, +/turf/simulated/floor/carpet/rubber, +/area/server) "wsw" = ( /obj/machinery/atmospherics/pipe/simple/visible/universal{ dir = 4 }, /turf/simulated/floor/tiled, /area/maintenance/aux_atmospherics/deck_2/starboard/wing) -"wsA" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) "wsF" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 1 @@ -48648,13 +48546,6 @@ }, /turf/simulated/floor/plating, /area/horizon/grauwolf) -"wtB" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/obj/machinery/door/blast/shutters/open{ - id = "RnDShutters" - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/lab) "wtC" = ( /obj/machinery/power/breakerbox/activated{ RCon_tag = "Starboard Wing Substation" @@ -48670,6 +48561,27 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) +"wuC" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4 + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 1; + pixel_x = 7; + pixel_y = -20 + }, +/obj/machinery/airlock_sensor{ + dir = 1; + pixel_x = -7; + pixel_y = -20 + }, +/obj/effect/map_effect/marker/airlock{ + frequency = 3002; + master_tag = "airlock_horizon_deck_2_levi"; + name = "airlock_horizon_deck_2_levi" + }, +/turf/simulated/floor/plating, +/area/horizon/zat) "wuJ" = ( /obj/machinery/light, /obj/effect/floor_decal/corner_wide/green{ @@ -48682,6 +48594,13 @@ /obj/item/paper_scanner, /turf/simulated/floor/tiled/white, /area/medical/exam) +"wuL" = ( +/obj/structure/table/standard, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenological) "wvn" = ( /obj/structure/disposalpipe/trunk{ dir = 4 @@ -48735,18 +48654,19 @@ }, /turf/simulated/floor/carpet, /area/horizon/security/head_of_security) -"wwg" = ( -/obj/structure/table/rack, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"wwn" = ( -/obj/structure/platform_stairs/full/east_west_cap{ - dir = 8 +"wwO" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/purple, +/area/crew_quarters/heads/hor) +"wwR" = ( +/obj/structure/reagent_dispensers/extinguisher, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 }, -/obj/structure/platform/cutout, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) +/turf/simulated/floor/plating, +/area/maintenance/research_port) "wxr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -48760,12 +48680,36 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/hallway/engineering) +"wxV" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/corner/pink/diagonal, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) "wyb" = ( /obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ id = "surgery2" }, /turf/simulated/floor/tiled/dark/full, /area/medical/ors) +"wye" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/research{ + c_tag = "Research - Xenobio Fore"; + network = list("Research","Xeno_Bio") + }, +/obj/machinery/smartfridge/secure/extract{ + density = 0; + pixel_y = 17 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology) "wyK" = ( /obj/structure/grille, /obj/machinery/door/firedoor, @@ -48780,6 +48724,21 @@ "wyV" = ( /turf/simulated/wall, /area/medical/cryo) +"wzl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) "wzs" = ( /obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/reinforced/airless, @@ -48809,6 +48768,9 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled/full, /area/horizon/security/hallway) +"wzN" = ( +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) "wzW" = ( /obj/effect/floor_decal/industrial/warning/cee{ dir = 4 @@ -48863,12 +48825,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/hydroponics/garden) -"wBN" = ( -/obj/item/trap/animal/large, -/obj/item/trap/animal/large, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology/foyer) "wCm" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -48908,21 +48864,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/grauwolf) -"wCW" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/mauve/full, -/obj/item/device/firing_pin/test_range{ - pixel_y = 4 - }, -/obj/item/device/firing_pin/test_range, -/obj/item/device/firing_pin/test_range{ - pixel_y = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) "wCZ" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -48953,18 +48894,6 @@ /obj/structure/bed/stool/chair/padded/brown, /turf/simulated/floor/carpet/red, /area/horizon/library) -"wDy" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) "wDG" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -48979,10 +48908,21 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/horizon/crew_quarters/lounge/bar) -"wDS" = ( -/obj/structure/table/standard, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology/foyer) +"wDR" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/pink/diagonal, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) "wDX" = ( /obj/machinery/door/firedoor, /obj/machinery/door/blast/shutters/open{ @@ -49011,19 +48951,39 @@ /obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, /area/medical/pharmacy) +"wEq" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"wEs" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) "wEC" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10 }, /turf/simulated/floor, /area/maintenance/wing/port/far) -"wEZ" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) "wFe" = ( /obj/machinery/light{ dir = 4 @@ -49037,13 +48997,6 @@ "wFj" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/security/checkpoint2) -"wFV" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/wing/port) "wFX" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 4 @@ -49068,17 +49021,6 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"wGm" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/effect/floor_decal/corner/pink/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) "wGN" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -49109,10 +49051,16 @@ }, /turf/simulated/floor/tiled/dark/full, /area/storage/secure) -"wHp" = ( -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/telesci) +"wId" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = -32 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/closet/toolcloset, +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) "wIz" = ( /obj/structure/railing/mapped{ dir = 8 @@ -49142,9 +49090,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/warden) -"wJG" = ( -/turf/simulated/floor/exoplanet/grass, -/area/rnd/xenobiology/xenoflora) "wKa" = ( /obj/structure/bed/stool/chair/sofa/corner/convex/red{ dir = 4 @@ -49190,6 +49135,12 @@ }, /turf/simulated/floor/carpet/rubber, /area/engineering/engine_monitoring) +"wKP" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) "wKS" = ( /obj/structure/disposalpipe/sortjunction{ dir = 2; @@ -49222,12 +49173,32 @@ /obj/machinery/newscaster/south, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"wLv" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ +"wLz" = ( +/obj/structure/coatrack{ + pixel_x = 14 + }, +/obj/machinery/photocopier, +/obj/machinery/camera/network/research{ + c_tag = "Research - Research Director's Office" + }, +/turf/simulated/floor/carpet/purple, +/area/crew_quarters/heads/hor) +"wLJ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/floor/carpet/rubber, -/area/rnd/xenobiology/dissection) +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/research_port) "wLO" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -49276,15 +49247,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/full, /area/horizon/security/equipment) -"wMd" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/structure/disposaloutlet, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) "wMg" = ( /obj/structure/grille, /obj/machinery/door/firedoor, @@ -49296,17 +49258,6 @@ }, /turf/simulated/floor/plating, /area/horizon/bar) -"wMk" = ( -/obj/structure/platform_stairs, -/obj/machinery/door/window/northleft, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/dissection) "wMr" = ( /obj/structure/table/stone/marble, /obj/item/material/ashtray/bronze{ @@ -49321,6 +49272,25 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/bar) +"wMv" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 4; + name = "Research and Development"; + sortType = "Research and Development" + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) "wMP" = ( /turf/simulated/wall, /area/horizon/custodial/auxiliary) @@ -49367,34 +49337,10 @@ }, /turf/simulated/open, /area/horizon/hydroponics) -"wOK" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/structure/sign/science{ - pixel_y = -31 - }, -/obj/machinery/light/floor, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"wOP" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hor) +"wPb" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/reinforced, +/area/horizon/zat) "wPj" = ( /obj/structure/lattice, /obj/structure/railing/mapped{ @@ -49444,21 +49390,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/office) -"wQl" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) "wQS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -49497,22 +49428,6 @@ "wRu" = ( /turf/simulated/wall/r_wall, /area/horizon/secure_ammunition_storage) -"wRR" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) "wSp" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -49612,25 +49527,9 @@ }, /turf/simulated/floor/tiled, /area/engineering/storage_eva) -"wUq" = ( -/obj/machinery/door/airlock/glass_research{ - dir = 1; - id_tag = "xeno_entrance_ext"; - name = "Xenobiology Foyer"; - req_access = list(55); - locked = 1 - }, -/obj/effect/map_effect/door_helper/unres, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/foyer) +"wUn" = ( +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "wUs" = ( /obj/machinery/light{ dir = 4 @@ -49647,12 +49546,6 @@ "wUK" = ( /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"wUQ" = ( -/obj/item/modular_computer/console/preset/research{ - dir = 4 - }, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/heads/hor) "wUS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -49668,7 +49561,7 @@ }, /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, -/area/maintenance/wing/port) +/area/maintenance/research_port) "wUU" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 6 @@ -49741,48 +49634,12 @@ /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/tiled/dark/full, /area/engineering/atmos/storage) -"wXJ" = ( -/obj/machinery/door/firedoor/multi_tile{ - dir = 2 - }, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2; - name = "Research Hallway" - }, -/turf/simulated/floor/tiled/full, -/area/rnd/hallway) -"wYa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/carpet/rubber, -/area/rnd/lab) "wYe" = ( /obj/effect/floor_decal/corner/dark_blue/full{ dir = 4 }, /turf/simulated/floor/tiled, /area/horizon/security/lobby) -"wYh" = ( -/obj/structure/bed/stool/chair/padded/purple, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/heads/hor) -"wYr" = ( -/obj/effect/floor_decal/industrial/outline/engineering, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/cable, -/obj/machinery/power/smes/buildable/superconducting{ - RCon_tag = "Leviathan" - }, -/turf/simulated/floor/plating, -/area/horizon/zat) "wYO" = ( /obj/structure/cable{ icon_state = "2-4" @@ -49819,13 +49676,6 @@ }, /turf/simulated/floor/tiled, /area/operations/break_room) -"wZl" = ( -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/hatch/red, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/zat) "wZn" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -49874,6 +49724,12 @@ }, /turf/simulated/floor/carpet, /area/horizon/security/head_of_security) +"wZw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/carpet/rubber, +/area/rnd/lab) "wZJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -49926,6 +49782,13 @@ }, /turf/simulated/floor/tiled/dark/full, /area/engineering/engine_room/rust) +"xap" = ( +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/maintenance/aft) "xas" = ( /obj/structure/lattice, /obj/structure/railing/mapped{ @@ -49936,13 +49799,6 @@ }, /turf/simulated/open, /area/maintenance/wing/starboard) -"xaS" = ( -/obj/item/modular_computer/console/preset/engineering, -/obj/structure/sign/nosmoking_2{ - pixel_x = 32 - }, -/turf/simulated/floor/reinforced, -/area/horizon/zat) "xbu" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 10 @@ -49961,6 +49817,27 @@ }, /turf/simulated/floor/tiled, /area/engineering/locker_room) +"xbM" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/door/blast/regular/open{ + dir = 2; + fail_secure = 1; + id = "xenobio_c"; + name = "Cell Containment Blast Door" + }, +/obj/machinery/door/window/holowindoor{ + dir = 8; + req_access = list(55) + }, +/obj/machinery/door/window/holowindoor{ + dir = 4; + req_access = list(55) + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/xenobiology) "xbP" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -49973,31 +49850,23 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/deck_two/fore) -"xbR" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) "xbY" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/full, /area/maintenance/wing/starboard) -"xcr" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/carpet/rubber, -/area/rnd/lab) -"xcJ" = ( -/obj/effect/floor_decal/industrial/hatch/red, -/obj/structure/window/reinforced{ +"xcp" = ( +/obj/machinery/door/airlock/glass_research{ + name = "Research and Development"; + req_access = list(7); + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ dir = 4 }, /turf/simulated/floor/tiled/dark/full, -/area/horizon/zat) +/area/rnd/lab) "xcK" = ( /obj/structure/bed/stool/chair/office/dark{ dir = 8 @@ -50010,6 +49879,21 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/office) +"xcO" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) "xcS" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 5 @@ -50028,6 +49912,12 @@ }, /turf/simulated/floor/tiled, /area/security/checkpoint2) +"xdr" = ( +/obj/machinery/suit_cycler/science/prepared, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/tank/oxygen, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/telesci) "xdA" = ( /obj/structure/railing/mapped{ dir = 8 @@ -50040,23 +49930,32 @@ /obj/effect/floor_decal/industrial/hatch/red, /turf/simulated/floor/reinforced/airless, /area/engineering/engine_room/rust) +"xea" = ( +/obj/machinery/chemical_dispenser/full{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/chemistry) +"xed" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/closet/crate, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/maintenance/research_port) +"xee" = ( +/obj/structure/railing/mapped, +/obj/structure/table/standard, +/obj/machinery/cell_charger, +/turf/simulated/floor/tiled/dark, +/area/rnd/lab) "xer" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/reinforced/airless, /area/template_noop) -"xez" = ( -/obj/structure/extinguisher_cabinet/west, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/item/hoist_kit, -/obj/machinery/camera/motion{ - c_tag = "ZAT Aft Starboard"; - dir = 4; - network = list("Command","Security") - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) "xeE" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -50113,57 +50012,21 @@ }, /turf/simulated/floor/tiled, /area/engineering/storage_eva) -"xeX" = ( -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d3-4" - }, -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology/xenoflora) -"xgi" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" +"xgo" = ( +/obj/machinery/door/airlock/research{ + name = "Dissection Observation"; + req_access = list(7) }, +/obj/machinery/door/firedoor, /obj/structure/cable/green{ icon_state = "1-2" }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) -"xgy" = ( -/obj/machinery/door/airlock/glass_research{ - dir = 4; - id_tag = "xeno_entrance_int_b"; - name = "Xenobiology"; - req_access = list(55); - locked = 1 - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, /obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) +/turf/simulated/floor/tiled/dark/full, +/area/rnd/xenobiology/dissection) "xgG" = ( /obj/effect/floor_decal/corner_wide/yellow/full{ dir = 4 @@ -50200,6 +50063,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/full, /area/horizon/security/holding_cell_b) +"xhf" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "xhg" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 5 @@ -50280,6 +50149,58 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/equipment) +"xio" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/hydroponics/soil, +/turf/simulated/floor/exoplanet/grass, +/area/rnd/xenobiology/xenoflora) +"xiu" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/maintenance/research_port) +"xiC" = ( +/obj/effect/map_effect/door_helper/unres{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_research{ + dir = 4; + id_tag = "xeno_entrance_int_a"; + name = "Xenobiology"; + req_access = list(55); + locked = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology) "xiO" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/corner/green/full{ @@ -50287,13 +50208,6 @@ }, /turf/simulated/floor/tiled/white, /area/operations/break_room) -"xjy" = ( -/obj/structure/bed/stool/chair/unmovable, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/carpet/rubber, -/area/rnd/xenobiology/dissection) "xjC" = ( /turf/simulated/wall, /area/medical/reception) @@ -50301,6 +50215,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/lino, /area/chapel/main) +"xjK" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) "xjN" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -50317,16 +50235,6 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_two/fore/port) -"xkb" = ( -/obj/structure/closet/crate{ - name = "Emergency Fuel" - }, -/obj/item/stack/material/phoron, -/obj/item/stack/material/phoron, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/clothing/gloves/yellow, -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) "xki" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/disposalpipe/segment{ @@ -50349,6 +50257,19 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/security/brig) +"xkH" = ( +/obj/structure/bed/stool/chair/sofa/left/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_x = -5; + pixel_y = -20 + }, +/turf/simulated/floor/carpet/purple, +/area/crew_quarters/heads/hor) "xkQ" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -50359,6 +50280,37 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/equipment) +"xkS" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/machinery/computer/guestpass{ + pixel_y = -32 + }, +/obj/machinery/firealarm/south, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"xlx" = ( +/obj/structure/cable/green{ + 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/mauve{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/floor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) "xlz" = ( /obj/machinery/computer/security/engineering{ name = "Drone Monitoring Cameras" @@ -50420,16 +50372,6 @@ /obj/machinery/light, /turf/simulated/floor/tiled/dark, /area/horizon/crew_quarters/lounge/bar) -"xmp" = ( -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, -/obj/machinery/door/blast/regular/open{ - dir = 8; - fail_secure = 1; - id = "telesci_lockdown"; - name = "Hazardous Containment Lockdown" - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/telesci) "xmt" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, /obj/structure/flora/ausbushes/sparsegrass{ @@ -50522,36 +50464,6 @@ }, /turf/simulated/floor/tiled, /area/maintenance/wing/starboard) -"xoZ" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/firealarm/north, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/foyer) -"xpj" = ( -/obj/structure/table/rack, -/obj/random/contraband, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"xpq" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/rnd/hallway/secondary) "xpv" = ( /obj/structure/railing/mapped, /obj/structure/railing/mapped{ @@ -50655,14 +50567,6 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/horizon/security/brig) -"xsF" = ( -/obj/machinery/camera/motion{ - c_tag = "ZAT Aft Port"; - dir = 8; - network = list("Command","Security") - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) "xsH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -50677,17 +50581,26 @@ }, /turf/simulated/floor/wood, /area/horizon/bar) +"xsU" = ( +/obj/structure/closet/crate, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/research_port) "xsX" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 9 }, /turf/simulated/open/airless, /area/horizon/exterior) -"xtj" = ( -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d3-5" - }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +"xsY" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, /area/maintenance/research_port) "xtu" = ( /obj/structure/bed/stool/chair/padded/red{ @@ -50715,42 +50628,39 @@ }, /turf/simulated/floor/wood, /area/horizon/library) +"xun" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/maintenance{ + dir = 1; + name = "Aft Research Hallway Maintenance"; + req_one_access = list(12,47) + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark/full, +/area/maintenance/wing/port) "xur" = ( /turf/simulated/floor/tiled/white, /area/hallway/medical) -"xuS" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/full{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "2-8" +"xuX" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) +/obj/structure/table/rack, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/maintenance/research_port) "xva" = ( /obj/machinery/recharger, /obj/structure/table/standard, /obj/structure/railing/mapped, /turf/simulated/floor/tiled/white, /area/hallway/medical) -"xvw" = ( -/obj/structure/table/standard, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 6 - }, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/matter_bin, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) "xvC" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -50771,12 +50681,6 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/engineering/smes/rust) -"xwh" = ( -/obj/structure/railing/mapped, -/obj/structure/table/standard, -/obj/machinery/cell_charger, -/turf/simulated/floor/tiled/dark, -/area/rnd/lab) "xwo" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 5 @@ -50784,12 +50688,6 @@ /obj/machinery/alarm/north, /turf/simulated/floor/tiled, /area/operations/lobby) -"xwT" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/rnd/hallway/secondary) "xwU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -50857,18 +50755,61 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/engineering/lobby) -"xxq" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/structure/platform{ +"xxw" = ( +/obj/structure/railing/mapped{ dir = 8 }, -/obj/machinery/light/floor{ +/obj/structure/railing/mapped, +/obj/structure/bed/stool/chair/sofa/right/purple{ dir = 4 }, -/turf/simulated/floor/tiled, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/simulated/floor/wood, /area/rnd/hallway/secondary) +"xxy" = ( +/obj/machinery/alarm/north, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light/floor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"xzd" = ( +/obj/effect/floor_decal/corner/mauve/full, +/turf/simulated/floor/tiled/white, +/area/rnd/conference) +"xzx" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/firealarm/north, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/foyer) "xzE" = ( /obj/structure/table/stone/marble, /obj/machinery/camera/network/service{ @@ -50942,28 +50883,17 @@ }, /turf/simulated/floor/tiled/full, /area/hallway/medical) +"xzQ" = ( +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/horizon/zat) "xzV" = ( /obj/structure/reagent_dispensers/watertank, /obj/item/reagent_containers/glass/bucket, /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"xAN" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = 22; - pixel_y = 12 - }, -/turf/simulated/floor/carpet/rubber, -/area/rnd/xenobiology/dissection) "xBf" = ( /obj/structure/table/steel, /obj/item/storage/box/lights/mixed{ @@ -50996,25 +50926,6 @@ }, /turf/simulated/open, /area/operations/office) -"xBE" = ( -/obj/structure/table/reinforced/glass, -/obj/item/paper_bin, -/obj/item/pen{ - pixel_x = -4 - }, -/obj/item/pen/red{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/item/pen/blue{ - pixel_x = 3; - pixel_y = 7 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/rnd/conference) "xBN" = ( /obj/machinery/light{ dir = 1 @@ -51063,13 +50974,10 @@ }, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"xCF" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/hydroponics/soil, -/turf/simulated/floor/exoplanet/grass, -/area/rnd/xenobiology/xenoflora) +"xDo" = ( +/obj/structure/bed/stool/chair/office/bridge/generic, +/turf/simulated/floor/reinforced, +/area/horizon/zat) "xDv" = ( /obj/structure/table/wood, /obj/item/reagent_containers/food/condiment/shaker/salt{ @@ -51156,21 +51064,16 @@ }, /turf/simulated/floor/plating, /area/maintenance/wing/port/far) -"xEH" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/lobby) -"xEI" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +"xEF" = ( +/obj/item/modular_computer/console/preset/research{ dir = 4 }, /turf/simulated/floor/carpet/purple, /area/crew_quarters/heads/hor) +"xEH" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/engineering/lobby) "xFB" = ( /obj/structure/platform/ledge, /obj/structure/platform/ledge{ @@ -51199,6 +51102,16 @@ }, /turf/simulated/floor/carpet/red, /area/horizon/library) +"xFR" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/rnd/hallway/secondary) "xFZ" = ( /obj/structure/sink{ dir = 4; @@ -51227,21 +51140,6 @@ }, /turf/simulated/floor/carpet/rubber, /area/engineering/engine_monitoring/rust) -"xGL" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/foyer) "xGM" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -51269,21 +51167,6 @@ }, /turf/simulated/floor/carpet, /area/hallway/primary/central_two) -"xHa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) "xHc" = ( /obj/structure/stairs_railing{ dir = 8 @@ -51307,34 +51190,11 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/grauwolf) -"xHG" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) -"xHR" = ( -/obj/machinery/alarm/north, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light/floor{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) +"xHv" = ( +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/obj/structure/grille, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/xenobiology/xenoflora) "xHX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 @@ -51356,17 +51216,6 @@ /obj/effect/floor_decal/industrial/outline/emergency_closet, /turf/simulated/floor/tiled, /area/operations/office) -"xIb" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/rnd/conference) "xIo" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/firedoor, @@ -51390,6 +51239,13 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) +"xIN" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/structure/platform_stairs/full{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) "xIW" = ( /obj/structure/foamedmetal, /turf/simulated/floor/plating, @@ -51422,17 +51278,6 @@ }, /turf/simulated/floor/wood, /area/chapel/office) -"xJO" = ( -/obj/effect/floor_decal/corner/pink/diagonal, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/horizon/zat) "xJQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -51442,9 +51287,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/grauwolf) -"xKt" = ( -/turf/simulated/wall, -/area/rnd/telesci) "xKI" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -51454,14 +51296,6 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) -"xKR" = ( -/obj/structure/window/borosilicate{ - dir = 4 - }, -/obj/structure/closet/secure_closet/scientist, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) "xKU" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -51476,6 +51310,15 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/medical) +"xKX" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 4 + }, +/obj/structure/platform{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) "xKY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -51485,6 +51328,20 @@ }, /turf/simulated/floor/carpet/rubber, /area/engineering/engine_monitoring/rust) +"xLu" = ( +/obj/machinery/door/airlock/glass{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway/secondary) "xLG" = ( /obj/effect/floor_decal/corner_wide/green{ dir = 10 @@ -51516,6 +51373,16 @@ }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) +"xMm" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/maintenance/wing/port) "xMu" = ( /obj/effect/floor_decal/corner_wide/yellow{ dir = 5 @@ -51528,6 +51395,15 @@ }, /turf/simulated/floor/tiled, /area/hallway/engineering/rust) +"xMP" = ( +/obj/item/paper_bin, +/obj/item/pen/black, +/obj/structure/table/standard, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenological) "xMQ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden, /turf/simulated/floor/plating, @@ -51567,20 +51443,29 @@ }, /turf/simulated/wall/r_wall, /area/maintenance/research_port) +"xNJ" = ( +/obj/machinery/alarm/north, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/old, +/turf/simulated/floor/plating, +/area/maintenance/research_port) "xNO" = ( /obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ id = "ce" }, /turf/simulated/floor/tiled/dark/full, /area/crew_quarters/heads/chief) -"xNV" = ( -/obj/structure/lattice/catwalk/indoor/grate, -/obj/random/junk, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) "xOo" = ( /turf/simulated/wall, /area/horizon/hydroponics/garden) @@ -51631,6 +51516,25 @@ }, /turf/simulated/floor/tiled, /area/hallway/engineering/rust) +"xPz" = ( +/obj/structure/platform_stairs/full{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"xPV" = ( +/obj/structure/bed/stool/chair/unmovable, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/rnd/xenobiology/dissection) "xPY" = ( /obj/machinery/chem_heater, /obj/effect/floor_decal/industrial/hatch/grey, @@ -51738,6 +51642,27 @@ /obj/structure/closet, /turf/simulated/floor/plating, /area/maintenance/wing/port/far) +"xRv" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"xRZ" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Research and Development Maintenance"; + req_access = list(7,52) + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/crew_quarters/heads/hor) "xSs" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -51820,14 +51745,6 @@ }, /turf/simulated/floor/lino, /area/horizon/crew_quarters/lounge/bar) -"xTm" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign describing some terrible danger beyond these walls. The particular danger being a weapon of extreme power. The wall is probably for the best."; - icon_state = "shock"; - name = "WARNING: RADIOACTIVE HIGH-YIELD ENERGETIC WEAPONS WITHIN" - }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/horizon/zat) "xTr" = ( /obj/machinery/door/airlock/external, /obj/machinery/access_button{ @@ -51843,28 +51760,15 @@ /obj/effect/map_effect/marker_helper/airlock/exterior, /turf/simulated/floor/plating, /area/engineering/engine_room) -"xUn" = ( -/obj/structure/table/standard, -/obj/machinery/recharger{ - pixel_y = 6; - pixel_x = 8 - }, -/obj/machinery/button/remote/airlock{ - id = "xeno_dissection"; - name = "Dissection access"; - req_access = list(55); - specialfunctions = 4; - dir = 10; - pixel_x = -6; - pixel_y = 1 - }, -/obj/effect/floor_decal/corner/mauve/full{ - dir = 8 +"xTv" = ( +/obj/structure/table/steel, +/obj/item/device/multitool, +/obj/machinery/camera/network/research{ + c_tag = "Research - Server Room" }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/firealarm/west, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/hazardous) +/obj/machinery/firealarm/north, +/turf/simulated/floor/carpet/rubber, +/area/server) "xUK" = ( /obj/effect/floor_decal/industrial/warning{ dir = 5 @@ -51902,6 +51806,10 @@ }, /turf/simulated/floor/tiled/dark/full, /area/engineering/engine_room/rust) +"xVt" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry) "xVu" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/reinforced/airless, @@ -51943,6 +51851,14 @@ /obj/machinery/door/window/southleft, /turf/simulated/floor/tiled, /area/medical/first_responder) +"xWb" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/obj/machinery/door/blast/shutters/open{ + id = "RnDShutters"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/hallway) "xWr" = ( /obj/machinery/door/firedoor{ dir = 4 @@ -52008,43 +51924,58 @@ }, /turf/simulated/floor/wood, /area/horizon/bar) -"xXq" = ( +"xXM" = ( /obj/effect/floor_decal/corner/mauve{ - dir = 9 + dir = 5 }, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "xenobio_a"; - name = "Cell Containment Blast Doors"; - pixel_x = -21; - req_access = list(47) +/obj/effect/floor_decal/corner/white{ + dir = 10 }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12 +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/table/standard, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) +"xXN" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/machinery/keycard_auth{ + dir = 1; + pixel_y = 30 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hor) +"xXP" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-4" }, /turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) +/area/rnd/xenobiology/foyer) "xXW" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"xYg" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/foyer) -"xYt" = ( -/obj/structure/table/rack, -/obj/item/storage/box/monkeycubes, -/obj/item/storage/box/monkeycubes, -/obj/item/storage/box/monkeycubes, -/obj/item/storage/box/monkeycubes, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) "xYw" = ( /obj/structure/disposalpipe/trunk{ dir = 8 @@ -52112,6 +52043,18 @@ "xZI" = ( /turf/simulated/open, /area/horizon/custodial/disposals) +"xZJ" = ( +/obj/effect/floor_decal/corner/lime/full{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) "yag" = ( /obj/structure/railing/mapped{ dir = 8 @@ -52178,6 +52121,19 @@ }, /turf/simulated/floor/plating, /area/maintenance/wing/starboard/far) +"ybi" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/obj/structure/table/standard, +/obj/structure/flora/pottedplant{ + pixel_y = 16 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "ybl" = ( /obj/structure/cable{ icon_state = "2-8" @@ -52185,6 +52141,16 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/maintenance/aft) +"ybp" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/rnd/hallway) "ybH" = ( /obj/structure/table/standard, /obj/item/modular_computer/laptop/preset/engineering/ce{ @@ -52195,18 +52161,6 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"ybI" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - name = "Xenobotany Maintenance"; - req_one_access = list(7,52) - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/maintenance/research_port) "ybR" = ( /obj/effect/floor_decal/corner_wide/lime/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -52312,27 +52266,6 @@ /obj/effect/floor_decal/corner/dark_green/full, /turf/simulated/floor/tiled, /area/horizon/commissary) -"ydq" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Xenobiologist" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/rnd/conference) -"ydC" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/railing/mapped, -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/machinery/light/floor, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) "ydI" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ @@ -52350,28 +52283,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/icu) -"ydZ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenological) "yea" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 9 @@ -52421,13 +52332,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/operations/office) -"yeH" = ( -/obj/random/junk, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) "yeT" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/airlock/glass_security{ @@ -52447,6 +52351,26 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/full, /area/horizon/security/brig) +"yeY" = ( +/obj/structure/plasticflaps/airtight{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + dir = 4; + name = "Hazardous Specimens"; + req_access = list(52); + locked = 1; + id_tag = "xeno_bot_hazard" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/xenobiology/xenoflora) "yfo" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/corner/dark_green{ @@ -52554,21 +52478,36 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/maintenance/wing/port/far) -"yhw" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/crew_quarters/heads/hor) +"yhA" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/button/remote/airlock{ + id = "xeno_dissection"; + name = "Dissection access"; + req_access = list(55); + specialfunctions = 4; + dir = 4; + pixel_x = 23; + pixel_y = 32 + }, +/turf/simulated/floor/carpet/rubber, +/area/rnd/xenobiology/dissection) "yhL" = ( /obj/effect/floor_decal/corner/brown{ dir = 4 }, /turf/simulated/floor/tiled, /area/operations/office) -"yhU" = ( -/obj/structure/lattice/catwalk/indoor/grate, -/obj/structure/railing/mapped, -/obj/machinery/light/small/emergency, -/turf/simulated/floor/plating, -/area/maintenance/research_port) +"yhR" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled/dark/full, +/area/rnd/xenobiology/foyer) "yig" = ( /obj/machinery/light{ dir = 4 @@ -52600,6 +52539,19 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_two) +"yiV" = ( +/obj/structure/closet/hazmat/research, +/obj/item/tank/oxygen, +/obj/item/clothing/mask/gas/alt, +/obj/machinery/button/remote/airlock{ + id = "xeno_bot_hazard"; + name = "Xenobotany Hazardous Specimens"; + pixel_y = -18; + req_access = list(52); + specialfunctions = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "yjg" = ( /obj/structure/lattice/catwalk/indoor/grate, /obj/structure/cable{ @@ -52607,9 +52559,39 @@ }, /turf/simulated/floor/plating, /area/maintenance/wing/port/far) -"yjY" = ( -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology/foyer) +"yjr" = ( +/obj/machinery/button/remote/airlock{ + dir = 1; + id = "bolts_cannon_external"; + name = "Primary Armament Exterior Bolts"; + pixel_x = -6; + pixel_y = -38; + req_one_access = list(19,43); + specialfunctions = 4 + }, +/obj/machinery/button/remote/airlock{ + dir = 1; + id = "bolts_cannon_entrance"; + name = "Entrance Airlock Bolts"; + pixel_x = 6; + pixel_y = -38; + req_one_access = list(19,43); + specialfunctions = 4 + }, +/obj/machinery/button/remote/airlock{ + dir = 1; + id = "bolts_cannon_internal"; + name = "Primary Armament Interior Bolts"; + pixel_x = -6; + pixel_y = -28; + req_one_access = list(19,43); + specialfunctions = 4 + }, +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/zat) "yjZ" = ( /obj/effect/floor_decal/industrial/loading/yellow, /obj/structure/platform{ @@ -52665,6 +52647,24 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) +"ylu" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/rnd/conference) +"yme" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology/xenoflora) "ymg" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/portable_atmospherics/canister/air/airlock, @@ -61676,7 +61676,7 @@ sQj sQj sQj oIL -goW +uOj wRu wRu ggz @@ -61876,7 +61876,7 @@ qvZ lBw lBw lBw -cll +eGl ijL rhT tyq @@ -75582,7 +75582,7 @@ bTg vQl hpw wfD -skB +fUc pCf gKT gKT @@ -75784,7 +75784,7 @@ cKB sve xvZ wfD -prY +ngE puN pmT pmT @@ -75805,11 +75805,11 @@ dpv mvZ ukp whQ -kvh +vFw whQ whQ -kvh -kvh +vFw +vFw ygq opb cev @@ -75986,7 +75986,7 @@ uZt iwu xvZ wfD -lbr +kvZ vFa pmT hte @@ -76005,8 +76005,8 @@ qTB dJh avz aKr -wap -stg +qIJ +dKf vIt vIt vIt @@ -76188,7 +76188,7 @@ fdS vZr lGd wfD -lbr +kvZ bGh pmT sDQ @@ -76206,12 +76206,12 @@ bQE lFE rfO ebk -jZW +rvf uTr uTr -dRo -dRo -dRo +qeN +qeN +qeN uTr eHG qGp @@ -76390,7 +76390,7 @@ wfD lFU wfD wfD -lbr +kvZ ilf pmT ejw @@ -76408,12 +76408,12 @@ ncx bGj dJh iGU -paQ +peX uTr -gwR -fmB -aRc -ovD +uUD +qLj +rtx +puj uTr nGI aNp @@ -76592,7 +76592,7 @@ tPU wQS fWp uEq -pim +dRh kCs pmT pbS @@ -76610,12 +76610,12 @@ oBl vpk dJh iGU -szI +tHv uTr -kqT -qsv -cXp -ebM +hbt +eRp +eGs +rSx uTr vyd gGI @@ -76794,7 +76794,7 @@ uQQ eOs pOV uEq -lbr +kvZ cZL fsL czx @@ -76812,12 +76812,12 @@ rfO rLw rfO dCK -pIp -lbc -pcM -qgG -aOI -fqT +enV +oge +gjU +kRz +ntg +qvN uTr xhg mzL @@ -76996,7 +76996,7 @@ mnj xKY jIU uEq -lbr +kvZ mWQ mWQ mWQ @@ -77006,20 +77006,20 @@ mWQ mWQ mWQ mWQ -bqH -kwP -wCW -chX +pkK +eUT +rgc +aTd soW rZU -cQQ -ftw -uXk -nsu -alp -jSW -fpv -sfl +gQj +dYz +spB +rlp +sXh +fSm +vzO +dfP uTr gma bhJ @@ -77198,30 +77198,30 @@ qXF xGF gAs uEq -lbr +kvZ mWQ -afR -tAG -kFc -kZl -xwh -nUk -xvw -dfl -eEN -kRd -hsJ -chX +dOP +gcS +tyd +sVn +xee +fan +iSn +fmV +fGi +ouk +hKB +aTd ldk sxQ -fAD -gyb -emG -kqy -rmq -sqv -xHG -mNs +feE +fqF +siV +eWv +xea +sUa +axc +dGd uTr xmw ylk @@ -77400,30 +77400,30 @@ mnj cvm fhh uEq -lbr +kvZ mWQ -pHK -nfE -kgr -whV -vlc -klC +kIW +nOJ +lHx +wZw +jEM +jDU jim -dKZ -fUm +fnh +vQd jim -vGW -chX +dxH +aTd uFM -oUj -qcU -keW +eUj +sMq +pgD rnA -kqy -blR -xuS -aCs -dHE +eWv +eWz +rNn +hep +iSG uTr ayF ykd @@ -77602,36 +77602,36 @@ tBI api pOV uEq -stB -kZO +xap +mQe uxf -hqz -gbv -wYa -iPx -jhN -sND -uqe -fjb -npO -uzN -uWy -qDM -qDM -uWy -xHR -hxW +drB +dAu +jnF +rlX +tAM +dmF +nac +pnY +jSY +gax +tiV +xWb +xWb +tiV +xxy +okP uTr -kic -iYY -wnK -vRy +nGt +vgn +knA +xVt uTr -ctO +qVW kaT -ikt -eJd -oxj +eSn +cNU +jBq bHb tgp oFx @@ -77806,34 +77806,34 @@ sbk uEq vHl mWQ -gUV -oUH -hTE -oUH -czY -oCb +cpi +mvh +ppE +mvh +vJw +uDs jim jim -fLd -pwK -fAt -cmG -fAt -fAt -sLE -kmP -wol +gqz +mjx +mCg +eBj +mCg +mCg +bmq +wMv +xkS uTr uTr uTr uTr -uHX +cGM uTr -esk +ahG kaT -bNN -wFV -dcw +pAo +emN +wmZ bHb pJE aVf @@ -78008,32 +78008,32 @@ uEq uEq kpC mWQ -jEi -jEi -jEi -bOn +fjc +fjc +fjc +xcp mWQ -ogF -xKR -dUA -pmo -ojh -hqV -eQV -lUI -cAq -ejD -lka -ibS -hJY -hiq -egb -hiq -hiq -hiq -hiq -sNg -bgf +rez +wpz +sYA +otf +kgT +gce +lCI +jIL +jko +bTo +umH +vEg +xun +xMm +goQ +xMm +xMm +xMm +xMm +bAZ +tBy tXR drT bHb @@ -78207,35 +78207,35 @@ atz wkk uje dOi -lcC -bVz -oQp -bVz -bVz -bVz -kRp -htB -ebd -bjQ -gAg -pWW +hHM +qnb +bZU +qnb +qnb +qnb +xzd +uGW +jsI +hSU +rRh +eZp jim -ydC -jpe -pdq -qcI -wtB -qVV -qUz -xKt -xKt -xKt -xKt -xKt -xKt -xKt -xKt -wUS +kyR +cer +dEb +upt +lxo +qhA +rwU +fIa +fIa +fIa +fIa +fIa +fIa +fIa +fIa +ioQ tXR lFG ePb @@ -78409,35 +78409,35 @@ hdU lnA pUT dOi -biU -qEJ -qZO -cRO -cRO -hkj -nAj -htB -ebd -xcr -qbh -efp +fcV +eyY +qsv +ylu +ylu +bfF +cyG +uGW +jsI +iNo +hzU +qRY jim -nWf +gFs dzI -hIi +pRo uxf -qXt -dGD -hxW -xKt -bYd -cKC -aHm -cUm -nPx -nwO -xKt -aJH +taf +xlx +okP +fIa +vFz +sRC +pvc +cyn +qKx +iuA +fIa +shi tXR bBu ePb @@ -78611,35 +78611,35 @@ nAO seQ ecV dOi -kdC -wle -awC -xBE -awC -otj +bkQ +rfG +ncA +aWA +ncA +vLu vVL -htB -aNq -aNq -rvF -bMa +uGW +rAi +rAi +iUg +pPA jim -slI -oPB -dzv -end -wtB -oTB -ojG -wHp -ugP -gXs -hvO -kzC -eut -iiR -xKt -wUS +jES +jeb +mso +hfv +lxo +wEq +umW +gzU +xdr +tSJ +vsE +kEh +wlF +iYo +fIa +ioQ tXR bBu ePb @@ -78813,35 +78813,35 @@ uEq uEq uEq dOi -iRB -uOv -ydq -pBq -ljO -bXI -nAj +tvX +eWb +fEO +vUK +qzF +lYP +cyG dOi -ilY -ilY +gsQ +gsQ mWQ mWQ -sOa +qdi mWQ -jEi -jEi -jEi +fjc +fjc +fjc mWQ -jfG -rmV -uTJ -gKn -aZd -uar -xmp -hHv -kxD -kzC -wUS +obZ +uPo +pMT +gnA +tPL +opW +kNe +aTp +drw +kEh +ioQ tXR hps hps @@ -79011,39 +79011,39 @@ seK puP lyF rNx -rlc -gkK -iPL +sgS +jLS +wsn dOi -dQo -oUF -xIb -eGr -dIE -uOr -wbw +pch +gBT +hzF +lmp +spR +can +omD bSD -vzw -fJq -bMK -cqJ -iVD -hlQ -iVD -iVD -fOk -uyJ -ezI +iYw +ehp +fer +tzR +rgR +mel +rgR +rgR +qAF +twc +fKk kZL -wHp -uOt -gtb -hzJ -ktj -sVV -aZF -kzC -aJH +gzU +ajl +hGx +fIC +qUJ +lEP +toT +kEh +shi tXR hps elh @@ -79213,40 +79213,40 @@ seK aCL jeV rNx -cox -mKm -jCO +moj +hoe +ndW dOi dOi -krj +aSV bSD bSD bSD -hUU +fkF dOi bSD -mIB -gWZ -kLB -sxa -sxa -qTj -sxa -eWt -wDy -tSD -msh -wOK -xKt -rJc -qgJ -vtm -ktj -hHv -kxD -kzC -gZQ -awh +gfN +iyA +lJp +xFR +xFR +mBb +xFR +wou +wrB +xLu +cda +waD +fIa +rVO +aGx +hiq +qUJ +aTp +drw +kEh +wUS +bpa hps elh btP @@ -79415,40 +79415,40 @@ seK seK seK rNx -qwG -unE -nYL -tzW -crr -bGd -iVD -cqJ -bbe -bDy -niJ -ilE -klR -iVD -rrC -hPo -xxq -tLq -oUX -oET -jTW -uyJ +xTv +ndn +exz +kxt +iRb +muQ +rgR +tzR +bOr +iSf +fSw +gil +qUK +rgR +koq +sFk +oJZ +vye +lpu +gYm +rbK +twc xSA fYi -naZ -naZ -naZ -naZ -naZ -naZ -naZ -naZ -gZQ -ivP +kGX +kGX +kGX +kGX +kGX +kGX +kGX +kGX +wUS +wwR hps hps hps @@ -79617,40 +79617,40 @@ fJv fJv fJv rNx -mGP -lJo -mGP +hva +jTA +hva rNx -gdo -iGK -mYD -fni -etb -afP -dYf -tAD -xgi -tCF -sAP -dkb -dYS -cbb -jqz -scJ +mQY +rVL +rnF +iBG +bin +goc +iVJ +gps +hIj +oAw +giv +iRq +stY +oOt +xxw +tvl sig sig oOi -wXJ -naZ -pfO -pos -cwr -nyC -hOS -rLU -naZ -gZQ -ajx +gUA +kGX +kZZ +hBM +iXI +fhG +trE +urh +kGX +wUS +iNl wAm cRr mst @@ -79818,41 +79818,41 @@ qgN qgN qgN qgN -inl +eKP pMR -axn -eTD -cer -cer -cxY -cer -jFX -jFX -jFX -cer -cer -feU -pPa -cer -jLN -djz -xpq -sRa -xwT +fTd +hGJ +mHH +mHH +cRs +mHH +bgj +bgj +bgj +mHH +mHH +cOs +gxa +mHH +qLZ +mCV +gvE +cOp +uMT vBO -gJz +lKI nZu -sas -naZ -xjy -wLv -weA -sXA -qPA -bMY -naZ -lSS -yeH +qsy +kGX +xPV +aCP +jHb +bWT +eKe +vtB +kGX +xNJ +lmZ wAm wAm wAm @@ -80020,45 +80020,45 @@ qgN qgN qgN qgN -inl -fjS -fyS -fjS -cer -rUJ -gub -kPf -idx -iRY -hIL -jFX -kJd -wOP -lcF -pPa -wjy -sdS -kud -mWv -vMc +eKP +bqe +bff +bqe +mHH +mHM +iEB +fyU +aWs +nFm +fDA +bgj +azO +rtH +kXO +gxa +str +hqi +oOC +lcs +jxs vBO -mJo -sqA -ibS -bUM -xAN -vEl -wMk -cxa -dXA -foa -naZ -gZQ +pBn +aov +vEg +xgo +ecS +yhA +jGN +ocm +nCZ +vjr +kGX +wUS fwf -mhg +cAx fwf fwf -mLK +uXV ubq dXx lCC @@ -80222,23 +80222,23 @@ qgN qgN qgN qgN -inl -inl -inl -inl -cer -rJD -kCG -fPN -pUM -wiK -lts -knt -gqi -xEI -uWi -cer -ybI +eKP +eKP +eKP +eKP +mHH +xXN +mgJ +bmk +fZk +dvf +tNT +bgN +wwO +bqb +xkH +mHH +bHL sig vBO vBO @@ -80246,21 +80246,21 @@ sig sig dZU iOD -kdp -naZ -naZ -itd -naZ -naZ -naZ -naZ -naZ -gZQ -mqs -els -jTp -eGJ -eyh +vhw +kGX +kGX +bAo +kGX +kGX +kGX +kGX +kGX +wUS +uUR +bzh +hSG +dSI +nTF ubq mVb lRO @@ -80428,41 +80428,41 @@ qgN qgN qgN qgN -yhw -fie -nRW -wUQ -waG -aLJ -rtV -jFX -wYh -fOw -byt -cer -yhU +ifm +wLz +neB +xEF +luY +wrW +nPA +bgj +vDU +fYN +mjW +mHH +mxc weq weq weq weq sig -oYe -cUd -ojG -keT -xUn -doF -oFh -kPs -inT -uOO -kPs -fsC -lTC -els -gLA -eGJ -ayi +ybp +nnr +umW +ilo +lGw +rDh +lEd +qVx +ksX +pzR +qVx +dVy +eUp +bzh +mEc +dSI +uhE bDo vnC jih @@ -80630,18 +80630,18 @@ qgN qgN qgN qgN -fNW -tBu -wlO -hDC -wlO -thI -peK -cer -cer -rTo -cer -cer +jri +nXQ +que +hYk +que +naN +mRW +mHH +mHH +xRZ +mHH +mHH sVB weq weq @@ -80649,22 +80649,22 @@ weq weq txy idF -vDz +daM rnA -keT -nNT -ude -mZX -uuR -rkU -uOO -kPs -kSP -lVf -els +ilo +sNZ +ewO +ijv +hZW +acy +pzR +qVx +bGp +xsU +bzh fwf -hhh -mLK +oVe +uXV bDo khi mns @@ -80832,17 +80832,17 @@ qgN qgN qgN qgN -fNW -vzy +jri +tNS ohs -wlk -mQB -lpF -fUt +sAO +hVh +kPS +krk cQw -oFO +pJy fwf -egI +dlT fwf sVB weq @@ -80851,22 +80851,22 @@ weq weq txy idF -ebE +wzl fYi -kPs -vfr -nyi -dbz -oka -eSl -fye -kPs -kSP -lVf -els -hJM -mWg -mLK +qVx +iYf +mIi +bXX +hMp +raA +oby +qVx +bGp +xsU +bzh +xed +xuX +uXV bDo nZf oLB @@ -81034,15 +81034,15 @@ qgN qgN qgN qgN -yhw -fNW -fNW -fNW -yhw -yhw -yhw +ifm +jri +jri +jri +ifm +ifm +ifm xNu -oFO +pJy fwf fwf qTP @@ -81053,22 +81053,22 @@ weq weq sig kXY -xHa -jPT -keT -oYV -twd -eTr -uuR -uOO -uOO -kPs -vgU +uXX +qyF +ilo +oXi +eKH +tDp +hZW +pzR +pzR +qVx +mFl sYc sYc sYc sYc -aAb +qsg bDo eWX qvO @@ -81242,10 +81242,10 @@ qgN qgN qgN qgN -plt -xtj +ooS +dxm rFn -wpJ +iwW rFn rFn rFn @@ -81254,23 +81254,23 @@ rFn rFn rFn rFn -bmj -pEe -lLS -keT -qZw -bZP -apn -kPs -uOO -uOO -kPs -kSP +byv +xcO +xKX +ilo +uon +axl +vwC +qVx +pzR +pzR +qVx +bGp sYc uoz lRx ahu -dBl +fVL bDo abz klv @@ -81444,35 +81444,35 @@ qgN qgN qgN qgN -lCS -kdk -iqZ -hvE -nKk +wfi +qvb +fVz +bIK +jPX rFn -qmh +eHl gRY cBY xqe rFn -nFP -qIj -lVL -qIj -nFP -kPs -hLt -kPs -kPs -kPs -kPs -kPs -kSP +dGj +qUz +bno +qUz +dGj +qVx +abZ +qVx +qVx +qVx +qVx +qVx +bGp sYc fLU crw sYc -tZO +gEB bDo qfR bOR @@ -81647,34 +81647,34 @@ qgN qgN qgN qgN -ufE -pjD -wqn -ldy +oia +hyr +atQ +cQB rFn -tsL -jUA +iJq +qbl mOp -wsA -cqj -knr -kKW -sOZ -bJn -kjJ -yjY -xoZ -hXn -jzf -rtM -wDS -yjY -oQG +ciU +rvJ +eyI +bxM +bFC +tcz +blG +vtd +xzx +qen +kwS +cry +yhR +vtd +kZv sYc pIi mGZ sYc -tZO +gEB bDo aVX rIM @@ -81849,34 +81849,34 @@ qgN qgN qgN qgN -ufE -gdl -eYR -pZD +oia +dSJ +gLH +yiV rFn -oYU -hfQ -iEk -vdo -cqj -bgn -nnL -iFa -kFm -rWw -yjY -vDB -keL -cCP -pEN -fuW -yjY -kSP +wdn +uQS +oaQ +oBe +rvJ +kEL +dpE +bBz +pwv +oqm +vtd +sjO +iXw +pzf +iXc +ubv +vtd +bGp sYc pzJ sYc sYc -wRR +wLJ bDo bDo ouo @@ -82051,35 +82051,35 @@ qgN qgN qgN qgN -ufE +oia aAx -qvW +yeY rFn rFn -shH -lNl -aPO -dlF -jnf -aPv -fSq -ydZ -lGH -fJo -wUq -rDT -qad -lYj -xGL -wBN -yjY -aoH -bqV -cxS -vFb -aBg -jwQ -qzG +lvl +xXM +fZU +nfK +mPn +cjg +ahm +veG +mAQ +nKt +pfr +sOn +mtp +tkB +xXP +oRo +vtd +cXh +elm +hjT +gyC +xsY +xiu +jqD bDo rXh jtQ @@ -82255,33 +82255,33 @@ qgN qgN qgN aAx -dHJ -aPy -sbh -taD -oHS -gHu -uUl +acA +jrr +ipy +dHt +pev +pkf +vId rFn -uPO -qsJ -mjA -gKD -lxR -yjY -mSg -ftV -xYg -kzB -vYP -yjY +bDv +ooZ +pkA +vsI +rZq +vtd +tmG +gKG +pNy +tSA +hLg +vtd iwo iwo iwo iwo iwo iwo -nqe +eWP bDo kuS eUB @@ -82457,33 +82457,33 @@ qgN qgN qgN aAx -mvo -wqn -mPD -vZX -hSb -bNI -lEd +xhf +atQ +ekM +qhp +vPk +bpk +lcc rFn -hGN -nDS -hjP -iDQ -jcQ +xMP +jkO +dJx +vNg +wuL iwo iwo iwo -dBz -aIJ +kVk +xiC iwo iwo -wbL +hbj egq iwo -wbL +hbj egq iwo -nqe +eWP bDo mbF hrP @@ -82659,31 +82659,31 @@ qgN qgN qgN aAx -gAJ -gcV -eFq -iHc -wwn -lzi -mTw +jXV +rKj +fti +ldu +czr +xPz +nfW rFn -nFP -nFP -nFP -nFP -nFP +dGj +dGj +dGj +dGj +dGj iwo -apu +qYa iwo -oKY -jup -uIC +lHs +tgT +iFa iwo -jpO -pyZ +egF +lYW iwo -jpO -bUW +egF +iNO iwo hBQ bDo @@ -82861,31 +82861,31 @@ qgN qgN qgN aAx -dml -kye -kye -dNn -sTv -riD -bLv -bSX -bSX -bSX -bSX +tjP +yme +yme +fHr +wzN +bYS +sGR +ayS +ayS +ayS +ayS rFn iwo iwo iwo iwo -sEt -wQl -mNY +eBN +mHj +nbo iwo mdo -rVN +nLe iwo mdo -rVN +nLe iwo uPP gBa @@ -83063,31 +83063,31 @@ qgN qgN qgN aAx -nag -ozl -bdO -oty -xbR -ous -bLv -bxi -bxi -bxi -dIh +ybi +tvM +kDx +ngG +eUi +pxt +sGR +wUn +wUn +wUn +cro rFn -gZw -nDq +pZP +wEs iwo iwo -oex -xgy +uKZ +lrS iwo iwo -pgs -bYZ +dHO +omP iwo -eqb -tub +env +pAr iwo iwo ryu @@ -83264,33 +83264,33 @@ qgN qgN qgN qgN -dku -oQV -oQV -oQV -upD -oft -eRM -bIx -pVm -pVm -pVm -pVm +xHv +lEv +lEv +lEv +bjM +oDz +ueF +tsf +scH +scH +scH +scH rFn -nNl -eat -pOL -nOn -tbI -hfU -nck -xXq +aWg +kEf +hRY +hap +lxH +his +iEN +gVq jWw -jrV -cXB +aOS +csL jWw -jrV -bye +aOS +pEh iwo ryu wsW @@ -83466,35 +83466,35 @@ qgN qgN qgN qgN -dku -oEH -wqn -wqn -gTZ -sCj -csy -dmF -cxF -cxF -cxF -dwB +xHv +nnk +atQ +atQ +aAR +tbi +sPn +xRv +fLi +fLi +fLi +mwm rFn -wMd -lOS -bPj -eSX -llE -kuX +ffP +uzO +tEk +fTc +ugY +kVU vQR vQR qQu qsw -tRA +wgI qsw qsw -ktA +qDD iwo -hxv +rkv tXR aru tXR @@ -83668,35 +83668,35 @@ qgN qgN qgN qgN -dku -qFL -qFL -qFL -niD -kSb +xHv +fQM +fQM +fQM +ksk +uIa rFn -dbC -apJ -bxi -bxi -kWy +jCe +kpR +wUn +wUn +thL rFn iwo iwo iwo iwo -trz -jmO +qVH +ool qsw -fHl +gmE vQJ -ewG +pPM aoD -hYF -aUQ +wye +vht uFm iwo -oYR +lvq eXU nvF aru @@ -83869,34 +83869,34 @@ qgN qgN qgN qgN -sZP -nBg -cEH -cEH -cEH -sGi -iMy -ieZ -ogN -jiZ -cOa -cOa -cOa +hfY +dbn +mZd +mZd +mZd +rYW +abV +cuW +oqb +fYq +uxp +uxp +uxp rFn -qBl -giX -giX -kXv -llE -gWp +oSM +gYb +gYb +hEx +ugY +jhi hNO hNO woK qsw -avc +vmO qsw qsw -dEF +vXB iwo ryu aru @@ -84072,33 +84072,33 @@ qgN qgN qgN qgN -dku -oEH -wqn -wqn -dox -sTv -sTv -dmF -lSX -xCF -xCF -xCF +xHv +nnk +atQ +atQ +fpb +wzN +wzN +xRv +xio +hnH +hnH +hnH rFn -nNl -eat -pjm -oYa -dSc -iPG +aWg +kEf +tKM +uFo +mYL +nnt aax -pYw +iCT aax -iJB -oCq +sfr +fPb aax -iJB -czZ +sfr +cJU iwo ryu tch @@ -84275,31 +84275,31 @@ qgN qgN qgN aAx -uJp -qFL -qFL -ery -sNp -sNp -oqw -vLE -wJG -wJG -wJG +bLT +fQM +fQM +xZJ +wKP +wKP +nir +iRl +qdf +qdf +qdf rFn -uBc -jxt +mwg +vlA iwo iwo iwo iwo -fog +lDs iwo -oUe -cXO +xbM +bwo iwo -jdI -aPu +sjV +oaT iwo iwo ryu @@ -84482,26 +84482,26 @@ aAx aAx aAx rFn -cRG +ais rFn -vkc -wfi -wfi -bmX +gby +jeo +jeo +vVs rFn iwo iwo iwo iwo -pSG -gmj -cfh +maP +jwl +sFZ iwo feC -egB +svu iwo feC -egB +svu iwo oRT pbM @@ -84683,27 +84683,27 @@ qgN qgN qgN vnz -xeX -qmV +mue +xjK rFn rFn rFn rFn rFn rFn -umZ -mCg -rMU -bzg -rBW -pID -aUC +vqk +tJW +kbF +kNr +qXl +gwm +vIz iwo -jpO -lXG +egF +tlf iwo -jpO -umJ +egF +pnj iwo lZp fuu @@ -84885,26 +84885,26 @@ qgN qgN qgN iox -hhT -wEZ -uli -pyD +oXn +lhd +xIN +pkV lBd lBd lBd -bzg -rMU -ftr -rMU +kNr +kbF +paV +kbF iwo -qrg -xYt -kDc +ath +rqp +lUA iwo -mKS +ahR eGZ iwo -mKS +ahR eGZ iwo bKu @@ -85087,11 +85087,11 @@ qgN qgN qgN dmK -bPm -aim -aBA +cSS +gXK +jFf rFn -xpj +dsw pVs lBd iwo @@ -85290,16 +85290,16 @@ qgN qgN qgN vnz -xeX +mue rFn rFn -wwg +fFx pVs lBd lBd -xNV +sEu lBd -vqk +lqd lBd lBd lBd @@ -85492,12 +85492,12 @@ qgN qgN qgN iox -jpi +olJ yka yka yka yka -oKT +kvh pVs pVs pVs @@ -85901,7 +85901,7 @@ sNr fuu hWn yka -cUw +sVJ pVs jgc pVs @@ -86129,9 +86129,9 @@ nJQ nJQ nJQ kUf -xTm -uMe -mli +nYZ +eQv +fmk kUf nJQ mnU @@ -86315,26 +86315,26 @@ fWG fWG gRU xRl -gWR -gDZ -gWR -gWR -gWR -gWR -gDZ -gWR +aPN +qMW +aPN +aPN +aPN +aPN +qMW +aPN yka ffh mqE tVu -mli -mli -mli -mli -mli -thH -mli -mli +fmk +fmk +fmk +fmk +fmk +rId +fmk +fmk kuh fdj qgN @@ -86516,27 +86516,27 @@ fuu vOd fuu yhm -gWR -gWR -gWR -gWR -gWR -gWR -gWR -gWR -gWR -gWR -gWR -gWR -gWR -gWR -gWR -gWR -hUc -cRo -qga -gWR -mli +aPN +aPN +aPN +aPN +aPN +aPN +aPN +aPN +aPN +aPN +aPN +aPN +aPN +aPN +aPN +aPN +itS +xzQ +wuC +aPN +fmk kuh fdj qgN @@ -86718,27 +86718,27 @@ rOw rOw bpN bBT -gWR -gWR -iGR -kES -aym -xez -dgf -vRw -umX -bqK -bvv -pmN -qfW -bvv -kSw -gWR -gWR -gWR -dBV -gWR -mli +aPN +aPN +hpQ +buQ +gvY +sYS +dSD +fht +wId +uDr +qSN +uaC +okk +qSN +dUR +aPN +aPN +aPN +qyQ +aPN +fmk kuh unO eje @@ -86920,27 +86920,27 @@ ueH ueH fuu lBd -gWR -gWR -aJV -jqh -jqh -hli -sJC -nHb -nHb -nHb -nHb -nHb -eeG -nHb -nHb -wGm -oNN -cpw -aUd -gWR -mli +aPN +aPN +anJ +qPJ +qPJ +mMh +rcy +kwC +kwC +kwC +kwC +kwC +fZA +kwC +kwC +dyP +woe +hRK +lpK +aPN +fmk rdi kLZ nlC @@ -87119,30 +87119,30 @@ iZt fuu iJv mIN -gWR -gWR -gDZ -gWR -gWR -kSa -bvv -nrM -uEA -eOZ -lKY -lKY -lKY -lKY -uBt -uBt -uBt -lKY -lKY -lKY -uBt -uBt -uBt -oVH +aPN +aPN +qMW +aPN +aPN +fAE +qSN +gHk +mLH +kpN +wnc +wnc +wnc +wnc +ern +ern +ern +wnc +wnc +wnc +ern +ern +ern +hrN jHd jHd jaq @@ -87321,30 +87321,30 @@ vJR vOd tmO lBd -gWR -gWR -gWR -gWR -gWR -tQe -bvv -rBB -uEA -jVg -hQj -hQj -hQj -hQj -hQj -hQj -hQj -hQj -hQj -hQj -hQj -hQj -hQj -svo +aPN +aPN +aPN +aPN +aPN +nMU +qSN +fSj +mLH +lno +eUs +eUs +eUs +eUs +eUs +eUs +eUs +eUs +eUs +eUs +eUs +eUs +eUs +ovu jHd jHd jaq @@ -87523,30 +87523,30 @@ mMi fuu tmO lBd -gWR -wZl -urb -gWR -gWR -xkb -bvv -usi -jaA -jVg -hQj -hQj -hQj -hQj -hQj -hQj -erF -hQj -hQj -hQj -hQj -hQj -hQj -svo +aPN +cXq +nLg +aPN +aPN +qld +qSN +cgp +ubn +lno +eUs +eUs +eUs +eUs +eUs +eUs +dYo +eUs +eUs +eUs +eUs +eUs +eUs +ovu jHd jHd jaq @@ -87723,32 +87723,32 @@ ueH dkq eZo fuu -gWR -gWR -gWR -ups -xcJ -oWV -gWR -rMS -bvv -usi -uEA -jVg -hQj -hQj -hQj -hQj -hQj -hQj -hQj -hQj -hQj -hQj -hQj -hQj -hQj -svo +aPN +aPN +aPN +jgj +mch +dDt +aPN +kkq +qSN +cgp +mLH +lno +eUs +eUs +eUs +eUs +eUs +eUs +eUs +eUs +eUs +eUs +eUs +eUs +eUs +ovu jHd jHd jaq @@ -87925,32 +87925,32 @@ lBd lBd vYQ xDA -kfh -rRB -uZG -eyB -iIh -uUe -nhD -trW -maY -oMH -ldd -fmM -sCw -sCw -sCw -sCw -uBt -uBt -uBt -sCw -sCw -sCw -uBt -uBt -uBt -iwy +lHY +nga +tQB +bDV +uzs +dkC +qsZ +tdP +dZI +jbZ +azx +bTX +rKy +rKy +rKy +rKy +ern +ern +ern +rKy +rKy +rKy +ern +ern +ern +oxN jHd jHd jaq @@ -88127,32 +88127,32 @@ oNE oNE eEl ueH -gDZ -gWR -gWR -jYa -jYa -lUD -gWR -bvv -aNr -aJG -jqG -uew -sGN -jJP -gso -gso -apl -xJO -qYY -iPk -tOJ -cVi -tRY -epS -gWR -mli +qMW +aPN +aPN +aMY +aMY +wmL +aPN +qSN +dLN +qEg +bKe +hyg +wDR +wxV +uCD +uCD +jFF +iYV +vMk +iCo +rIN +vkb +kVm +goC +aPN +fmk rdi hiY oPQ @@ -88329,32 +88329,32 @@ lBd lBd ihG ueH -hfw -gjm -gWR -fCo -urb -gWR -gWR -hRl -wmh -gWR -cZg -xsF -slT -pvA -bvv -bvv -aNr -bvv -hoL -vru -vru -vru -roZ -bZv -kVC -tiR +kbz +usK +aPN +jsR +nLg +aPN +aPN +hkt +yjr +aPN +rdZ +fhw +reZ +vFr +qSN +qSN +dLN +qSN +nnm +oXF +oXF +oXF +xDo +ewx +ptE +pcx kuh unO opx @@ -88531,32 +88531,32 @@ ueH dSH kgK ueH -oEs -uEC -gWR -gWR -gWR -gWR -gWR -gWR -gWR -gWR -gWR -gWR -jXg -wYr -nkZ -axY -pAP -uzj -gWR -apO -vru -lmU -roZ -mHo -kVC -tiR +bTl +jTi +aPN +aPN +aPN +aPN +aPN +aPN +aPN +aPN +aPN +aPN +oiJ +atj +hUO +tHX +uOb +bDO +aPN +sjC +oXF +wPb +xDo +mDh +ptE +pcx kuh fdj qgN @@ -88733,32 +88733,32 @@ tVu tVu tVu tVu -mli -mli -mli -iOB -mli -mli -mli -mli -mli -mli -mli -gWR -aJG -bvv -bvv -iRU -hjU -sDZ -gWR -hNj -vIf -jfr -iSC -xaS -kVC -tiR +fmk +fmk +fmk +mCU +fmk +fmk +fmk +fmk +fmk +fmk +fmk +aPN +qEg +qSN +qSN +ozr +qgr +rCG +aPN +ebm +tFK +ofb +nOi +foU +ptE +pcx kuh fdj qgN @@ -88945,22 +88945,22 @@ qgN qgN qgN qgN -mli -gWR -gWR -gWR -gWR -gWR -gWR -gWR -gWR -gWR -gWR -gWR -gWR -gWR -gWR -mli +fmk +aPN +aPN +aPN +aPN +aPN +aPN +aPN +aPN +aPN +aPN +aPN +aPN +aPN +aPN +fmk kuh fdj qgN @@ -89147,22 +89147,22 @@ qgN qgN qgN qgN -mli -mli -mli -mli -mli -mli -mli -mli -mli -mli -mli -mli -mli -mli -mli -mli +fmk +fmk +fmk +fmk +fmk +fmk +fmk +fmk +fmk +fmk +fmk +fmk +fmk +fmk +fmk +fmk nJQ hod qgN From c226167ac4ef50ba977d55efb8b4cde28f5579ba Mon Sep 17 00:00:00 2001 From: 1Sparky1 Date: Mon, 6 May 2024 10:45:34 +0100 Subject: [PATCH 17/17] Update sccv_horizon-2_deck_2.dmm --- maps/sccv_horizon/sccv_horizon-2_deck_2.dmm | 40 +++++++++++++++------ 1 file changed, 29 insertions(+), 11 deletions(-) diff --git a/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm b/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm index e216e2e79d8..1dc07d436e3 100644 --- a/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm +++ b/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm @@ -4233,6 +4233,18 @@ /obj/machinery/atmospherics/unary/cryo_cell, /turf/simulated/floor/tiled, /area/medical/gen_treatment) +"bOb" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Xenobiologist" + }, +/turf/simulated/floor/wood, +/area/rnd/conference) "bOe" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/effect/floor_decal/corner/dark_blue/full{ @@ -12228,12 +12240,12 @@ /obj/structure/bed/stool/chair/office/light{ dir = 8 }, -/obj/effect/landmark/start{ - name = "Xenobiologist" - }, /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, +/obj/effect/landmark/start{ + name = "Research Understudy" + }, /turf/simulated/floor/wood, /area/rnd/conference) "fEQ" = ( @@ -25961,9 +25973,6 @@ /obj/structure/bed/stool/chair/office/light{ dir = 8 }, -/obj/effect/landmark/start{ - name = "Xenoarchaeologist" - }, /obj/effect/floor_decal/spline/fancy/wood{ dir = 6 }, @@ -25973,6 +25982,9 @@ /obj/structure/cable/green{ icon_state = "4-8" }, +/obj/effect/landmark/start{ + name = "Scientist" + }, /turf/simulated/floor/wood, /area/rnd/conference) "lYV" = ( @@ -35356,7 +35368,7 @@ dir = 4 }, /obj/effect/landmark/start{ - name = "Lab Assistant" + name = "Research Understudy" }, /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 @@ -47340,6 +47352,12 @@ /obj/effect/floor_decal/corner/mauve{ dir = 10 }, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/obj/structure/bed/stool/chair/office/light{ + dir = 1 + }, /turf/simulated/floor/tiled/white, /area/rnd/conference) "vWt" = ( @@ -52651,12 +52669,12 @@ /obj/structure/bed/stool/chair/office/light{ dir = 4 }, -/obj/effect/landmark/start{ - name = "Scientist" - }, /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 }, +/obj/effect/landmark/start{ + name = "Xenoarchaeologist" + }, /turf/simulated/floor/wood, /area/rnd/conference) "yme" = ( @@ -78412,7 +78430,7 @@ dOi fcV eyY qsv -ylu +bOb ylu bfF cyG