From 55336d1e5308789be1616413c8d8f87e073f7302 Mon Sep 17 00:00:00 2001 From: vincentiusvin <54709710+vincentiusvin@users.noreply.github.com> Date: Thu, 24 Mar 2022 16:12:14 +0700 Subject: [PATCH] Atmos Control Console Refactor (and syndiebase atmos tidyup) (#65372) Main Takeaways For Mappers: Use monitored pathed atmos devices very carefully. Also dont put atmos_sensors willy nilly. They are used to hook to atmos control monitors. We want to keep at most one device broadcasting for each of the atmos sensor, inlets, and outlets. Run the mapping verb Check Atmos Chamber Devices to be sure, though this might not catch everything. Some of the warning are pretty harmless. For example if you have reconnected the "station atmos monitor" and you get no listener for distro/waste loop warning, it's safe to ignore. I don't know what the maptainer policy is on making new subtypes for offstation content, but if you do please branch off the general ones instead of the specific gas ones. If you aren't making a new subtype, varedit the general ones too. About The Pull Request: Need Would prefer this to be merged before #65271 (In game atmos guide). Not strictly necessary, just makes me sleep better knowing the handbook wont die alongside the rest of the UI. Fixes #36668 (Atmos Monitoring Consoles don't update it's sensors to the new tank after reconnect()) Fixes #32122 (Mix console fucked after reconnecting it) Also made the distro meter thing broadcast more info instead of just the pressure, because I'm sure nobody would care and it would make my life easier. A small high-level overview in case this breaks again in the future: A signal datum (not DCS) is sent by the atmospheric devices (injectors and vents) and will be received by the atmos computers. The data is then stored at the monitor object and then passed to the UI. This initial signal is sent by `broadcast_signal()`, called by `atmos_init()`. New sensors/vents (if you can actually get them in game, still only adminspawn/wrenchables afaik) will also initiate the conversation if atmos_init() is called, so it works fine. This means you need to unwrench and re-wrench the devices if you adminspawn them though, ugh. In case of a newly built computer, it needs to be the one that prompt the data to the devices, so we send a request signal. This is a bit inefficient since it doesnt work off of callbacks and assocs like DCS, but won't really matter since we're doing this rarely. We only talk with the injectors and vents when necessary here, while sensors and meters keep beeping with every process_atmos() tick so they rarely break. Why It's Good For The Game: Messy code gone (debatable). Refactored the atmos control console devices. The ones that hook to the big turf chambers. Distro meter now broadcast the whole gasmix info instead of just pressure to the monitors. Lavaland syndie's atmos chamber vents are now actually configurable. Moved a few things around to accomodate this. Lavalannd syndie chambers hooked to distro and moved distro pipe to layer2 atmos monitors can detect reactions now. Some minor code changes to how anomaly refinery and implosion compressor show the gas info. No changes expected, report if bug. recoded checks for atmos chamber abnormalities in debug verbs. --- .../lavaland_surface_syndicate_base1.dmm | 5004 ++- _maps/RandomRuins/SpaceRuins/TheDerelict.dmm | 20 +- _maps/RandomRuins/SpaceRuins/deepstorage.dmm | 62 +- .../SpaceRuins/mrow_thats_right.dmm | 43 +- .../RandomRuins/SpaceRuins/thelizardsgas.dmm | 17 +- _maps/RandomZLevels/snowdin.dmm | 117 +- _maps/RandomZLevels/undergroundoutpost45.dmm | 136 +- .../map_files/Deltastation/DeltaStation2.dmm | 852 +- .../map_files/IceBoxStation/IceBoxStation.dmm | 19634 +++++------ _maps/map_files/KiloStation/KiloStation.dmm | 12378 ++++--- _maps/map_files/MetaStation/MetaStation.dmm | 27446 ++++++++-------- _maps/map_files/tramstation/tramstation.dmm | 1458 +- .../atmospherics/atmos_mapping_helpers.dm | 100 - code/__HELPERS/atmospherics.dm | 43 +- .../computer/atmos_computers/__identifiers.dm | 61 + .../computer/atmos_computers/_air_sensor.dm | 53 + .../atmos_computers/_atmos_control.dm | 208 + .../computer/atmos_computers/air_sensors.dm | 95 + .../atmos_computers/atmos_controls.dm | 124 + .../computer/atmos_computers/inlets.dm | 166 + .../computer/atmos_computers/meters.dm | 56 + .../computer/atmos_computers/outlets.dm | 164 + code/game/machinery/computer/atmos_control.dm | 494 - .../circuitboards/computer_circuitboards.dm | 120 +- code/modules/admin/verbs/debug.dm | 36 - code/modules/admin/verbs/mapping.dm | 96 +- .../unary_devices/outlet_injector.dm | 167 - .../components/unary_devices/vent_pump.dm | 88 +- .../atmospherics/machinery/other/meter.dm | 41 +- .../machinery/pipes/color_adapter.dm | 4 + tgstation.dme | 9 +- .../tgui/interfaces/AnomalyRefinery.js | 4 +- .../tgui/interfaces/AtmosControlConsole.js | 102 - .../tgui/interfaces/AtmosControlConsole.tsx | 168 + .../tgui/interfaces/TankCompressor.js | 6 +- .../tgui/interfaces/common/GasmixParser.js | 25 - .../tgui/interfaces/common/GasmixParser.tsx | 120 + 37 files changed, 34907 insertions(+), 34810 deletions(-) create mode 100644 code/game/machinery/computer/atmos_computers/__identifiers.dm create mode 100644 code/game/machinery/computer/atmos_computers/_air_sensor.dm create mode 100644 code/game/machinery/computer/atmos_computers/_atmos_control.dm create mode 100644 code/game/machinery/computer/atmos_computers/air_sensors.dm create mode 100644 code/game/machinery/computer/atmos_computers/atmos_controls.dm create mode 100644 code/game/machinery/computer/atmos_computers/inlets.dm create mode 100644 code/game/machinery/computer/atmos_computers/meters.dm create mode 100644 code/game/machinery/computer/atmos_computers/outlets.dm delete mode 100644 code/game/machinery/computer/atmos_control.dm delete mode 100644 tgui/packages/tgui/interfaces/AtmosControlConsole.js create mode 100644 tgui/packages/tgui/interfaces/AtmosControlConsole.tsx delete mode 100644 tgui/packages/tgui/interfaces/common/GasmixParser.js create mode 100644 tgui/packages/tgui/interfaces/common/GasmixParser.tsx diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm index 9d2b6dfe9e3..29f859e0300 100644 --- a/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm +++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm @@ -5,35 +5,9 @@ "ab" = ( /turf/open/lava/smooth/lava_land_surface, /area/lavaland/surface/outdoors) -"ad" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/virology{ - frequency = 1449; - id_tag = "lavaland_syndie_virology_interior"; - name = "Virology Lab Interior Airlock"; - req_access_txt = "150" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/ruin/syndicate_lava_base/virology) "ae" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ruin/syndicate_lava_base/testlab) -"af" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/main) "ag" = ( /obj/machinery/airalarm/syndicate{ dir = 8; @@ -98,6 +72,11 @@ }, /turf/open/floor/plating, /area/ruin/syndicate_lava_base/chemistry) +"aG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer4, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/engineering) "aL" = ( /turf/closed/wall/mineral/plastitanium/explosive, /area/ruin/syndicate_lava_base/testlab) @@ -115,19 +94,6 @@ /obj/machinery/light/small/directional/south, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/arrivals) -"aR" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/visible{ - dir = 6; - name = "N2 to Mix" - }, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/engineering) "aW" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ @@ -141,6 +107,130 @@ }, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/arrivals) +"aY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/cargo) +"bc" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/components/binary/pump/on{ + target_pressure = 4500 + }, +/obj/machinery/airlock_sensor/incinerator_syndicatelava{ + pixel_x = 22 + }, +/obj/machinery/atmospherics/pipe/layer_manifold{ + dir = 4 + }, +/turf/open/floor/engine, +/area/ruin/syndicate_lava_base/engineering) +"bd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/chemistry) +"bq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron/white/side{ + dir = 4 + }, +/area/ruin/syndicate_lava_base/arrivals) +"bt" = ( +/obj/machinery/computer/atmos_control/noreconnect{ + atmos_chambers = list("lavalandsyndieo2" = "Oxygen Supply", "lavalandsyndien2" = "Nitrogen Supply", "lavalandsyndieco2" = "Carbon Dioxide Supply", "lavalandsyndieplasma" = "Plasma Supply"); + dir = 1 + }, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/engineering) +"bC" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/table, +/obj/item/storage/medkit/fire, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white/side{ + dir = 5 + }, +/area/ruin/syndicate_lava_base/medbay) +"bM" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/door/airlock/engineering{ + name = "Engineering"; + req_access_txt = "150" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/engineering) +"bV" = ( +/obj/machinery/airalarm/syndicate{ + dir = 1; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/dormitories) +"bY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron/dark, +/area/ruin/syndicate_lava_base/bar) +"bZ" = ( +/obj/structure/chair/stool/bar/directional/south, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ruin/syndicate_lava_base/bar) +"cc" = ( +/obj/effect/turf_decal/box/white/corners, +/obj/structure/closet/crate, +/obj/item/reagent_containers/food/drinks/waterbottle/large{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/reagent_containers/food/drinks/waterbottle/large{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/reagent_containers/food/drinks/waterbottle/large, +/obj/item/reagent_containers/food/drinks/waterbottle/large, +/obj/item/reagent_containers/food/drinks/waterbottle/large{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/reagent_containers/food/drinks/waterbottle/large{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ruin/syndicate_lava_base/cargo) +"cq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/arrivals) "cA" = ( /obj/structure/table/reinforced, /obj/item/book/manual/wiki/chemistry, @@ -150,6 +240,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/chemistry) +"cB" = ( +/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium, +/obj/machinery/atmospherics/pipe/layer_manifold{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/ruin/syndicate_lava_base/engineering) "cG" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -159,16 +256,54 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/chemistry) -"cP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 8; - frequency = 1442; - id_tag = "syndie_lavaland_o2_out"; - internal_pressure_bound = 5066; - name = "Plasma Out" +"cI" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/lighter{ + pixel_x = 7; + pixel_y = 6 }, -/turf/open/floor/engine/plasma, -/area/ruin/syndicate_lava_base/engineering) +/obj/item/storage/fancy/cigarettes/cigpack_syndicate{ + pixel_x = -3 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ruin/syndicate_lava_base/bar) +"cS" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/airalarm/syndicate{ + dir = 1; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/arrivals) +"dc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/main) +"de" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/white/side{ + dir = 1 + }, +/area/ruin/syndicate_lava_base/virology) "dg" = ( /obj/machinery/atmospherics/components/binary/thermomachine/freezer{ dir = 1 @@ -279,29 +414,6 @@ dir = 5 }, /area/ruin/syndicate_lava_base/chemistry) -"dK" = ( -/obj/effect/turf_decal/box/white/corners{ - dir = 1 - }, -/obj/structure/closet/crate/secure/gear{ - req_access_txt = "150" - }, -/obj/item/clothing/gloves/combat, -/obj/item/clothing/gloves/combat, -/obj/item/clothing/under/syndicate/combat, -/obj/item/clothing/under/syndicate/combat, -/obj/item/storage/belt/military, -/obj/item/storage/belt/military, -/obj/item/clothing/shoes/combat, -/obj/item/clothing/shoes/combat, -/obj/item/clothing/mask/gas/syndicate, -/obj/item/clothing/mask/gas/syndicate, -/obj/item/clothing/glasses/night, -/obj/item/clothing/glasses/night, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/ruin/syndicate_lava_base/cargo) "dL" = ( /obj/machinery/airalarm/syndicate{ dir = 1; @@ -344,24 +456,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/cargo) -"dM" = ( -/obj/effect/turf_decal/box/white/corners{ - dir = 4 - }, -/obj/structure/closet/crate, -/obj/item/storage/box/donkpockets{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/storage/box/donkpockets{ - pixel_y = 3 - }, -/obj/item/storage/box/donkpockets{ - pixel_x = 2 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/ruin/syndicate_lava_base/cargo) "dP" = ( /turf/closed/wall/mineral/plastitanium/explosive, /area/ruin/syndicate_lava_base/cargo) @@ -369,36 +463,6 @@ /obj/structure/sign/warning/securearea, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ruin/syndicate_lava_base/testlab) -"dT" = ( -/obj/machinery/firealarm/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/white/side{ - dir = 8 - }, -/area/ruin/syndicate_lava_base/chemistry) -"dU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/chemistry) -"dV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/chemistry) -"dX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/chemistry) "dY" = ( /obj/structure/chair{ dir = 4 @@ -428,44 +492,6 @@ dir = 4 }, /area/ruin/syndicate_lava_base/chemistry) -"ea" = ( -/obj/effect/turf_decal/box/white/corners{ - dir = 8 - }, -/obj/structure/closet/crate/secure/weapon{ - req_access_txt = "150" - }, -/obj/item/ammo_box/c9mm{ - pixel_y = 6 - }, -/obj/item/ammo_box/c9mm, -/obj/item/ammo_box/magazine/m9mm{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/ammo_box/magazine/m9mm{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/ammo_box/magazine/m9mm{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/ammo_box/magazine/m9mm{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/iron/dark, -/area/ruin/syndicate_lava_base/cargo) -"eb" = ( -/obj/structure/closet/crate, -/obj/item/storage/toolbox/electrical{ - pixel_y = 4 - }, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/iron/dark, -/area/ruin/syndicate_lava_base/cargo) "ee" = ( /obj/structure/rack, /obj/item/flashlight{ @@ -517,28 +543,6 @@ "eh" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ruin/syndicate_lava_base/virology) -"em" = ( -/obj/machinery/airalarm/syndicate{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/vending/coffee{ - extended_inventory = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ruin/syndicate_lava_base/bar) -"er" = ( -/obj/machinery/light/small/directional/west, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/white/side{ - dir = 8 - }, -/area/ruin/syndicate_lava_base/chemistry) "es" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -572,28 +576,6 @@ dir = 6 }, /area/ruin/syndicate_lava_base/chemistry) -"eB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/cargo) -"eC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/cargo) "eD" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -640,14 +622,16 @@ /obj/structure/disposalpipe/segment, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ruin/syndicate_lava_base/virology) -"eR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/white/side{ - dir = 10 +"eK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/binary/pump/off/general/visible{ + dir = 8 }, -/area/ruin/syndicate_lava_base/chemistry) +/obj/machinery/atmospherics/components/binary/pump/on/orange/visible/layer4{ + dir = 8 + }, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/engineering) "eS" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -677,22 +661,6 @@ dir = 6 }, /area/ruin/syndicate_lava_base/chemistry) -"eX" = ( -/obj/effect/turf_decal/box/white/corners{ - dir = 1 - }, -/obj/structure/closet/crate/internals, -/obj/item/tank/internals/oxygen/yellow, -/obj/item/tank/internals/oxygen/yellow, -/obj/item/tank/internals/oxygen/yellow, -/obj/item/tank/internals/emergency_oxygen/double, -/obj/item/tank/internals/emergency_oxygen/double, -/obj/item/tank/internals/emergency_oxygen/double, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/iron/dark, -/area/ruin/syndicate_lava_base/cargo) "eY" = ( /obj/effect/turf_decal/box/white/corners{ dir = 4 @@ -726,13 +694,6 @@ }, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/cargo) -"fc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/cargo) "fd" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 8 @@ -758,15 +719,6 @@ dir = 10 }, /area/ruin/syndicate_lava_base/virology) -"fg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/iron/white/side{ - dir = 6 - }, -/area/ruin/syndicate_lava_base/virology) "fh" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 4 @@ -806,17 +758,6 @@ dir = 5 }, /area/ruin/syndicate_lava_base/virology) -"fm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Chemistry Lab"; - req_access_txt = "150" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/ruin/syndicate_lava_base/chemistry) "fn" = ( /obj/effect/spawner/structure/window/reinforced/plasma/plastitanium, /obj/machinery/door/firedoor, @@ -842,47 +783,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/chemistry) -"fs" = ( -/obj/effect/turf_decal/box/white/corners{ - dir = 8 - }, -/obj/structure/closet/crate, -/obj/item/storage/box/stockparts/deluxe, -/obj/item/storage/box/stockparts/deluxe, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/circuitboard/machine/processor, -/obj/item/circuitboard/machine/gibber, -/obj/item/circuitboard/machine/deep_fryer, -/obj/item/circuitboard/machine/cell_charger, -/obj/item/circuitboard/machine/smoke_machine, -/obj/item/stack/sheet/plasteel/fifty, -/turf/open/floor/iron/dark, -/area/ruin/syndicate_lava_base/cargo) -"ft" = ( -/obj/effect/turf_decal/box/white/corners, -/obj/structure/closet/crate, -/obj/item/reagent_containers/food/drinks/waterbottle/large{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/drinks/waterbottle/large{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/drinks/waterbottle/large, -/obj/item/reagent_containers/food/drinks/waterbottle/large, -/obj/item/reagent_containers/food/drinks/waterbottle/large{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/reagent_containers/food/drinks/waterbottle/large{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/ruin/syndicate_lava_base/cargo) "fu" = ( /obj/machinery/light/small/directional/west, /obj/machinery/airalarm/syndicate{ @@ -912,10 +812,6 @@ }, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/cargo) -"fv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/cargo) "fw" = ( /obj/effect/turf_decal/stripes/corner, /obj/machinery/firealarm/directional/east, @@ -926,24 +822,6 @@ /obj/structure/sign/warning/securearea, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ruin/syndicate_lava_base/cargo) -"fy" = ( -/obj/machinery/door/airlock/virology/glass{ - name = "Isolation B"; - req_access_txt = "150" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/iron/white, -/area/ruin/syndicate_lava_base/virology) -"fz" = ( -/obj/machinery/door/airlock/virology/glass{ - name = "Isolation A"; - req_access_txt = "150" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/iron/white, -/area/ruin/syndicate_lava_base/virology) "fA" = ( /obj/structure/table/glass, /obj/item/book/manual/wiki/infections{ @@ -1000,15 +878,6 @@ dir = 1 }, /area/ruin/syndicate_lava_base/main) -"fI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/white/side{ - dir = 1 - }, -/area/ruin/syndicate_lava_base/main) "fO" = ( /turf/open/floor/iron/white/side{ dir = 1 @@ -1092,6 +961,25 @@ }, /turf/open/floor/plating, /area/ruin/syndicate_lava_base/cargo) +"gi" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/closet/crate, +/obj/item/vending_refill/snack{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/vending_refill/snack{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/vending_refill/coffee, +/obj/item/vending_refill/cola, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron/dark, +/area/ruin/syndicate_lava_base/bar) "gj" = ( /turf/closed/wall/mineral/plastitanium/explosive, /area/ruin/syndicate_lava_base/virology) @@ -1101,251 +989,10 @@ }, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ruin/syndicate_lava_base/engineering) -"gp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white, -/area/ruin/syndicate_lava_base/virology) -"gq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/ruin/syndicate_lava_base/virology) -"gr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/ruin/syndicate_lava_base/virology) -"gs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white, -/area/ruin/syndicate_lava_base/virology) -"gt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/iron/white/side{ - dir = 9 - }, -/area/ruin/syndicate_lava_base/virology) -"gu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/ruin/syndicate_lava_base/virology) -"gv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/virology) -"gw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/white/side{ - dir = 4 - }, -/area/ruin/syndicate_lava_base/virology) -"gy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/main) -"gz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/main) -"gA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology{ - frequency = 1449; - id_tag = "lavaland_syndie_virology_exterior"; - name = "Virology Lab Exterior Airlock"; - req_access_txt = "150" - }, -/obj/machinery/door_buttons/access_button{ - idDoor = "lavaland_syndie_virology_exterior"; - idSelf = "lavaland_syndie_virology_control"; - name = "Virology Access Button"; - pixel_y = -24; - req_access_txt = "150" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/main) -"gB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/main) -"gF" = ( -/obj/machinery/light/small/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/main) -"gG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/main) -"gI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/main) -"gJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/main) -"gK" = ( -/obj/machinery/light/small/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/main) -"gL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 9 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/main) -"gM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/main) -"gN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, +"gD" = ( +/obj/effect/turf_decal/stripes/red/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/main) "gO" = ( @@ -1364,13 +1011,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/cargo) -"gR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/cargo) "gS" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -1384,15 +1024,6 @@ }, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/cargo) -"gT" = ( -/obj/machinery/door/airlock/virology/glass{ - name = "Monkey Pen"; - req_access_txt = "150" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/iron/white, -/area/ruin/syndicate_lava_base/virology) "gU" = ( /obj/machinery/airalarm/syndicate{ dir = 8; @@ -1415,15 +1046,6 @@ /obj/structure/chair/office/light, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/virology) -"gW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/virology) "gX" = ( /obj/machinery/door_buttons/airlock_controller{ idExterior = "lavaland_syndie_virology_exterior"; @@ -1449,24 +1071,6 @@ dir = 4 }, /area/ruin/syndicate_lava_base/virology) -"gY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/door_buttons/access_button{ - idDoor = "lavaland_syndie_virology_interior"; - idSelf = "lavaland_syndie_virology_control"; - name = "Virology Access Button"; - pixel_x = -24; - pixel_y = 8; - req_access_txt = "150" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/main) "gZ" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 @@ -1491,15 +1095,6 @@ }, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/main) -"hc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/main) "hd" = ( /obj/effect/turf_decal/tile/red, /turf/open/floor/iron, @@ -1536,19 +1131,6 @@ }, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/main) -"hi" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/main) -"hj" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/main) "hk" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/mining/glass{ @@ -1593,15 +1175,6 @@ dir = 9 }, /area/ruin/syndicate_lava_base/virology) -"hq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/iron/white/side{ - dir = 1 - }, -/area/ruin/syndicate_lava_base/virology) "hr" = ( /mob/living/carbon/human/species/monkey{ faction = list("neutral","Syndicate") @@ -1672,23 +1245,6 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/ruin/syndicate_lava_base/main) -"hx" = ( -/obj/machinery/airalarm/syndicate{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/main) "hy" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ @@ -1780,19 +1336,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/ruin/syndicate_lava_base/main) -"hL" = ( -/obj/machinery/light/small/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/main) "hM" = ( /obj/structure/table/wood, /obj/item/ammo_box/magazine/m9mm, @@ -1825,13 +1368,6 @@ }, /turf/open/floor/iron/grimy, /area/ruin/syndicate_lava_base/dormitories) -"hR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/main) "hS" = ( /obj/structure/table/reinforced, /obj/item/folder, @@ -1903,41 +1439,13 @@ }, /turf/open/floor/plating, /area/ruin/syndicate_lava_base/main) -"hZ" = ( -/obj/machinery/firealarm/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/effect/decal/cleanable/dirt, +"ie" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 8 + dir = 5 }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, /turf/open/floor/iron, -/area/ruin/syndicate_lava_base/main) -"ia" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/main) -"ic" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/iron/grimy, -/area/ruin/syndicate_lava_base/dormitories) -"if" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/main) +/area/ruin/syndicate_lava_base/cargo) "ig" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -1968,41 +1476,12 @@ }, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/main) -"ij" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/main) "ik" = ( /obj/effect/turf_decal/tile/red{ dir = 4 }, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/main) -"il" = ( -/obj/machinery/door/airlock{ - name = "Cabin 2" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/dormitories) -"in" = ( -/obj/machinery/door/airlock{ - name = "Cabin 4" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/dormitories) -"ip" = ( -/obj/effect/turf_decal/stripes/red/corner, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/main) "iq" = ( /obj/structure/sign/warning/securearea, /turf/closed/wall/mineral/plastitanium/nodiagonal, @@ -2048,13 +1527,6 @@ }, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/main) -"ix" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/main) "iy" = ( /obj/machinery/door/airlock/public/glass{ name = "Dormitories" @@ -2068,54 +1540,10 @@ }, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/dormitories) -"iA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/dormitories) -"iB" = ( -/obj/machinery/airalarm/syndicate{ - dir = 1; - pixel_y = 24 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/dormitories) "iC" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/dormitories) -"iD" = ( -/obj/machinery/light/small/directional/north, -/obj/machinery/firealarm/directional/north, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/dormitories) -"iE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/dormitories) "iG" = ( /obj/machinery/firealarm/directional/west, /obj/effect/decal/cleanable/dirt, @@ -2127,24 +1555,6 @@ }, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/main) -"iH" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 4 - }, -/obj/effect/turf_decal/caution/red{ - dir = 8 - }, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/main) -"iJ" = ( -/turf/open/floor/circuit/red, -/area/ruin/syndicate_lava_base/main) -"iK" = ( -/obj/machinery/syndicatebomb/self_destruct{ - anchored = 1 - }, -/turf/open/floor/circuit/red, -/area/ruin/syndicate_lava_base/main) "iM" = ( /obj/machinery/light/small/directional/east, /turf/open/floor/plating/lavaland_atmos, @@ -2165,107 +1575,17 @@ }, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/main) -"iP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/main) -"iR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Dormitories" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/dormitories) -"iS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/dormitories) -"iT" = ( -/obj/machinery/light/small/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/ruin/syndicate_lava_base/dormitories) -"iU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/dormitories) -"iV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/power/apc/syndicate{ - name = "Dormitories APC"; - pixel_y = -25 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/dormitories) -"iW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 1 +"iQ" = ( +/obj/machinery/door/window/southleft{ + base_state = "right"; + dir = 1; + icon_state = "right"; + name = "Bar" }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/dormitories) -"iX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/ruin/syndicate_lava_base/dormitories) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/wood, +/area/ruin/syndicate_lava_base/bar) "iZ" = ( /obj/structure/extinguisher_cabinet/directional/west, /obj/effect/decal/cleanable/dirt, @@ -2277,21 +1597,11 @@ }, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/main) -"ja" = ( -/obj/effect/turf_decal/stripes/red/corner{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "syndie_lavaland_vault"; - name = "Vault Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 24; - pixel_y = 8; - req_access_txt = "150"; - specialfunctions = 4 - }, +"jb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /turf/open/floor/iron, -/area/ruin/syndicate_lava_base/main) +/area/ruin/syndicate_lava_base/medbay) "jc" = ( /obj/machinery/light/small/directional/south, /turf/open/floor/circuit/red, @@ -2303,31 +1613,6 @@ /obj/effect/mapping_helpers/no_lava, /turf/open/floor/plating/lavaland_atmos, /area/lavaland/surface/outdoors) -"jf" = ( -/obj/machinery/door/airlock{ - name = "Cabin 1" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/dormitories) -"jg" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ruin/syndicate_lava_base/dormitories) -"jh" = ( -/obj/machinery/door/airlock{ - name = "Cabin 3" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/dormitories) "ji" = ( /obj/machinery/power/apc/syndicate{ dir = 8; @@ -2343,9 +1628,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/main) -"jj" = ( -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/main) "jk" = ( /obj/effect/mapping_helpers/no_lava, /turf/open/floor/plating/lavaland_atmos, @@ -2371,28 +1653,6 @@ }, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/main) -"jo" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/iron/grimy, -/area/ruin/syndicate_lava_base/dormitories) -"jp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ruin/syndicate_lava_base/main) -"js" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/main) "ju" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ruin/syndicate_lava_base/engineering) @@ -2450,80 +1710,6 @@ }, /turf/open/floor/iron/grimy, /area/ruin/syndicate_lava_base/dormitories) -"jE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/main) -"jF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/airlock/engineering{ - name = "Engineering"; - req_access_txt = "150" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/main) -"jG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/engineering) -"jH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes{ - dir = 1 - }, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/engineering) -"jI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/light/small/directional/east, -/obj/machinery/airalarm/syndicate{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/engineering) "jM" = ( /obj/machinery/light/small/directional/north, /obj/structure/chair{ @@ -2544,12 +1730,6 @@ "jP" = ( /turf/closed/wall/mineral/plastitanium/explosive, /area/ruin/syndicate_lava_base/bar) -"jQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ruin/syndicate_lava_base/main) "jR" = ( /obj/machinery/light/small/directional/west, /obj/effect/turf_decal/tile/red{ @@ -2557,12 +1737,6 @@ }, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/main) -"jS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/main) "jT" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/sign/departments/engineering, @@ -2580,29 +1754,6 @@ /obj/structure/closet/radiation, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/engineering) -"jV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/radiation/rad_area{ - pixel_y = -32 - }, -/obj/effect/turf_decal/stripes, -/obj/structure/closet/radiation, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/engineering) -"jW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/engineering) "jY" = ( /obj/structure/chair{ dir = 1 @@ -2633,68 +1784,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/ruin/syndicate_lava_base/main) -"kc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ruin/syndicate_lava_base/main) -"ke" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ruin/syndicate_lava_base/main) -"kf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ruin/syndicate_lava_base/main) -"kg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ruin/syndicate_lava_base/main) -"kh" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ruin/syndicate_lava_base/main) -"ki" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/main) "kj" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ dir = 8 @@ -2704,47 +1793,18 @@ }, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/main) -"kk" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/door/airlock/engineering{ - name = "Engineering"; - req_access_txt = "150" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/engineering) -"kl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer4, -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ruin/syndicate_lava_base/engineering) -"km" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/layer_manifold/visible{ - name = "CO2" - }, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/engineering) "kp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ dir = 10 }, /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/bar) -"kr" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "150" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +"kq" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/turf/open/floor/plating, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/bar) "ks" = ( /obj/structure/reagent_dispensers/fueltank, @@ -2762,9 +1822,6 @@ }, /turf/open/floor/plating, /area/ruin/syndicate_lava_base/main) -"ku" = ( -/turf/open/floor/iron/white/side, -/area/ruin/syndicate_lava_base/main) "kv" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/white/side, @@ -2810,86 +1867,12 @@ /obj/structure/cable, /turf/open/floor/plating, /area/ruin/syndicate_lava_base/engineering) -"kz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/engineering) -"kA" = ( -/obj/machinery/light/small/directional/north, -/obj/machinery/power/apc/syndicate{ - dir = 1; - name = "Engineering APC"; - pixel_y = 25 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/engineering) -"kB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/components/binary/pump{ - name = "CO2" - }, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/engineering) -"kC" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos{ - dir = 1 - }, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/engineering) -"kD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/engineering) -"kE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - frequency = 1442; - id_tag = "syndie_lavaland_co2_out"; - internal_pressure_bound = 5066; - name = "CO2 out" - }, -/turf/open/floor/engine/co2, -/area/ruin/syndicate_lava_base/engineering) -"kF" = ( -/obj/machinery/meter/turf, -/turf/open/floor/engine/n2, -/area/ruin/syndicate_lava_base/engineering) "kH" = ( /obj/structure/chair{ dir = 8 }, /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/bar) -"kI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/ruin/syndicate_lava_base/bar) -"kK" = ( -/obj/structure/chair/stool/bar/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/ruin/syndicate_lava_base/bar) "kM" = ( /obj/machinery/firealarm/directional/east, /obj/machinery/vending/cigarette{ @@ -2907,13 +1890,6 @@ }, /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/bar) -"kO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/ruin/syndicate_lava_base/bar) "kP" = ( /obj/structure/reagent_dispensers/watertank, /obj/effect/decal/cleanable/dirt, @@ -2972,49 +1948,10 @@ /obj/structure/cable, /turf/open/floor/plating, /area/ruin/syndicate_lava_base/engineering) -"kX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/engineering) -"kY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/engineering) -"kZ" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/engineering) "la" = ( /obj/machinery/portable_atmospherics/canister/tier_3, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/engineering) -"lb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/visible{ - dir = 4; - name = "O2 Layer Manifold" - }, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/engineering) -"lc" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/visible{ - dir = 4 - }, -/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium, -/turf/open/floor/plating, -/area/ruin/syndicate_lava_base/engineering) "ld" = ( /turf/open/floor/engine/co2, /area/ruin/syndicate_lava_base/engineering) @@ -3032,6 +1969,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/bar) +"lg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/engineering) "lh" = ( /obj/structure/table/wood, /turf/open/floor/wood, @@ -3046,17 +1991,6 @@ icon_state = "wood-broken4" }, /area/ruin/syndicate_lava_base/bar) -"lj" = ( -/obj/machinery/door/window/southleft{ - base_state = "right"; - dir = 1; - icon_state = "right"; - name = "Bar" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/wood, -/area/ruin/syndicate_lava_base/bar) "lk" = ( /obj/structure/table/wood, /obj/machinery/light/small/directional/east, @@ -3075,13 +2009,6 @@ /obj/item/reagent_containers/food/drinks/shaker, /turf/open/floor/wood, /area/ruin/syndicate_lava_base/bar) -"ll" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/structure/reagent_dispensers/beerkeg, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/ruin/syndicate_lava_base/bar) "lm" = ( /obj/structure/closet/secure_closet/medical1{ req_access = null; @@ -3120,31 +2047,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/ruin/syndicate_lava_base/engineering) -"lr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/engineering) -"ls" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/engineering) -"lt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/visible{ - name = "O2 to Mix" - }, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/engineering) -"lu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/visible{ - dir = 4; - name = "N2 to Mix" - }, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/engineering) "lv" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -3164,11 +2066,6 @@ "lA" = ( /turf/open/floor/wood, /area/ruin/syndicate_lava_base/bar) -"lB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/wood, -/area/ruin/syndicate_lava_base/bar) "lC" = ( /obj/structure/table/wood, /obj/machinery/reagentgrinder, @@ -3182,25 +2079,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/bar) -"lF" = ( -/obj/machinery/light/small/directional/east, -/obj/structure/closet/crate, -/obj/item/vending_refill/snack{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/vending_refill/snack{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/vending_refill/coffee, -/obj/item/vending_refill/cola, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/ruin/syndicate_lava_base/bar) "lG" = ( /obj/structure/table, /obj/item/storage/box/syringes, @@ -3257,21 +2135,6 @@ /obj/machinery/portable_atmospherics/pump, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/engineering) -"lN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer4{ - dir = 9 - }, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/engineering) -"lO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/engineering) -"lR" = ( -/obj/machinery/meter/turf, -/turf/open/floor/engine/o2, -/area/ruin/syndicate_lava_base/engineering) "lS" = ( /obj/machinery/porta_turret/syndicate{ dir = 9 @@ -3296,74 +2159,6 @@ /obj/structure/cable, /turf/open/floor/wood, /area/ruin/syndicate_lava_base/bar) -"lY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/ruin/syndicate_lava_base/bar) -"lZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/ruin/syndicate_lava_base/bar) -"ma" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/airlock{ - name = "Bar Storage"; - req_access_txt = "150" - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/ruin/syndicate_lava_base/bar) -"mb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/ruin/syndicate_lava_base/bar) -"mc" = ( -/obj/item/storage/box/donkpockets{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/storage/box/donkpockets{ - pixel_y = 3 - }, -/obj/item/storage/box/donkpockets{ - pixel_x = 2 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/freezer/kitchen/maintenance{ - req_access = null - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/ruin/syndicate_lava_base/bar) "md" = ( /obj/machinery/sleeper/syndie{ dir = 4 @@ -3396,48 +2191,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/engineering) -"mh" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/structure/cable, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/engineering) -"mi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/engineering) -"mj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "O2 to Mix" - }, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/engineering) -"mk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/visible{ - name = "O2 to Mix" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/engineering) -"ml" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/visible{ - dir = 4; - name = "O2 to Mix" - }, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/engineering) -"mm" = ( -/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium, -/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ruin/syndicate_lava_base/engineering) "mo" = ( /turf/closed/wall/mineral/plastitanium/explosive, /area/ruin/syndicate_lava_base/arrivals) @@ -3503,14 +2256,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/bar) -"mz" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ruin/syndicate_lava_base/main) "mA" = ( /obj/machinery/light/small/directional/west, /obj/structure/bed/roller, @@ -3522,25 +2267,6 @@ dir = 8 }, /area/ruin/syndicate_lava_base/medbay) -"mB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/medbay) -"mC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/medbay) -"mD" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/medbay) "mE" = ( /obj/structure/table/reinforced, /obj/item/scalpel, @@ -3567,32 +2293,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/engineering) -"mH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/engineering) -"mI" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/light/small/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Plasma to Mix" - }, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/engineering) -"mJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ - dir = 10; - name = "Plasma to Mix" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/engineering) "mS" = ( /obj/machinery/door/airlock/external/ruin{ req_access_txt = "150" @@ -3630,16 +2330,6 @@ }, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/arrivals) -"mY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron/white/side{ - dir = 4 - }, -/area/ruin/syndicate_lava_base/arrivals) "mZ" = ( /obj/machinery/sleeper/syndie{ dir = 4 @@ -3647,12 +2337,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/medbay) -"na" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/medbay) "nb" = ( /obj/structure/table/optable, /obj/item/surgical_drapes, @@ -3675,48 +2359,10 @@ /obj/structure/cable, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/engineering) -"ne" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_syndicatelava{ - pixel_x = -8; - pixel_y = -26 - }, -/obj/machinery/button/ignition/incinerator/syndicatelava{ - pixel_x = 6; - pixel_y = -24 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/button/door/incinerator_vent_syndicatelava_aux{ - pixel_x = -8; - pixel_y = -40 - }, -/obj/machinery/button/door/incinerator_vent_syndicatelava_main{ - pixel_x = 6; - pixel_y = -40 - }, -/obj/machinery/portable_atmospherics/canister/tier_3, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/engineering) "nf" = ( /obj/structure/sign/warning/fire, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ruin/syndicate_lava_base/engineering) -"ng" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ - dir = 5; - name = "Plasma to Mix" - }, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/engineering) -"nn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/arrivals) "no" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -3756,122 +2402,6 @@ }, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/arrivals) -"ns" = ( -/obj/structure/closet/emcloset/anchored, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/arrivals) -"nt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/syndicate{ - dir = 1; - name = "Arrival Hallway APC"; - pixel_y = 25 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/arrivals) -"nu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/arrivals) -"nv" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/arrivals) -"nw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/white/side{ - dir = 4 - }, -/area/ruin/syndicate_lava_base/arrivals) -"nx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay" - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/ruin/syndicate_lava_base/medbay) -"ny" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/white/side{ - dir = 8 - }, -/area/ruin/syndicate_lava_base/medbay) -"nz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/medbay) "nA" = ( /obj/structure/cable, /turf/open/floor/iron/white/corner, @@ -3903,150 +2433,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ruin/syndicate_lava_base/engineering) -"nM" = ( -/obj/machinery/light/small/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/arrivals) -"nN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/arrivals) -"nO" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/arrivals) -"nP" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/caution/stand_clear{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/arrivals) -"nQ" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/light/small/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/arrivals) -"nR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/arrivals) -"nS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/machinery/firealarm/directional/north, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/arrivals) -"nT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/arrivals) -"nU" = ( -/obj/machinery/light/small/directional/north, -/obj/machinery/airalarm/syndicate{ - dir = 1; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/arrivals) -"nV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 9 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/arrivals) "nW" = ( /turf/open/floor/iron, /area/ruin/syndicate_lava_base/arrivals) @@ -4100,19 +2486,6 @@ /obj/structure/cable, /turf/open/floor/engine, /area/ruin/syndicate_lava_base/engineering) -"of" = ( -/obj/machinery/light/small/directional/east, -/obj/machinery/atmospherics/components/binary/pump/on{ - target_pressure = 4500 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 8 - }, -/obj/machinery/airlock_sensor/incinerator_syndicatelava{ - pixel_x = 22 - }, -/turf/open/floor/engine, -/area/ruin/syndicate_lava_base/engineering) "ol" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -4135,18 +2508,6 @@ }, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/arrivals) -"on" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/arrivals) "oo" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ @@ -4191,6 +2552,15 @@ }, /turf/open/floor/plating, /area/ruin/syndicate_lava_base/arrivals) +"oy" = ( +/obj/structure/table, +/obj/structure/bedsheetbin, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ruin/syndicate_lava_base/dormitories) "oz" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber{ dir = 1 @@ -4201,16 +2571,6 @@ /obj/machinery/igniter/incinerator_syndicatelava, /turf/open/floor/engine/vacuum, /area/ruin/syndicate_lava_base/engineering) -"oB" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos{ - dir = 1; - id = "syndie_lavaland_inc_in" - }, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/turf/open/floor/engine/vacuum, -/area/ruin/syndicate_lava_base/engineering) "oC" = ( /obj/machinery/door/poddoor/incinerator_syndicatelava_aux, /turf/open/floor/engine/vacuum, @@ -4261,49 +2621,165 @@ }, /turf/open/floor/iron/grimy, /area/ruin/syndicate_lava_base/dormitories) +"oM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored{ + chamber_id = "lavalandsyndien2"; + dir = 8 + }, +/turf/open/floor/engine/n2, +/area/ruin/syndicate_lava_base/engineering) +"oO" = ( +/obj/machinery/air_sensor{ + chamber_id = "lavalandsyndieco2" + }, +/turf/open/floor/engine/co2, +/area/ruin/syndicate_lava_base/engineering) "oP" = ( /obj/structure/sign/departments/chemistry, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ruin/syndicate_lava_base/testlab) -"px" = ( -/obj/machinery/light/small/directional/west, -/obj/machinery/firealarm/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 8 - }, +"pa" = ( +/obj/effect/mapping_helpers/no_lava, +/turf/open/misc/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"pI" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 6 + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc/syndicate{ + dir = 1; + name = "Arrival Hallway APC"; + pixel_y = 25 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 }, -/obj/effect/turf_decal/tile/neutral/fourcorners, /obj/structure/cable, -/turf/open/floor/iron/dark, -/area/ruin/syndicate_lava_base/cargo) -"pJ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/arrivals) +"pM" = ( +/obj/structure/toilet{ + pixel_y = 18 + }, +/obj/structure/sink{ dir = 8; - frequency = 1442; - id_tag = "syndie_lavaland_n2_out"; - internal_pressure_bound = 5066; - name = "Nitrogen Out" + pixel_x = 11 }, -/turf/open/floor/engine/n2, -/area/ruin/syndicate_lava_base/engineering) -"pQ" = ( -/obj/structure/sign/warning/explosives/alt{ - pixel_x = 32 - }, -/turf/open/floor/circuit/red, -/area/ruin/syndicate_lava_base/main) -"pZ" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/mirror/directional/east, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/ruin/syndicate_lava_base/cargo) +/area/ruin/syndicate_lava_base/dormitories) +"qk" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ruin/syndicate_lava_base/bar) +"qm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 9 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/main) +"qq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/dormitories) +"qw" = ( +/obj/machinery/door/airlock{ + name = "Cabin 2" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/dormitories) +"qI" = ( +/obj/machinery/door/airlock{ + name = "Cabin 3" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/dormitories) +"qU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/main) +"qW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/iron/white/side, +/area/ruin/syndicate_lava_base/main) "rg" = ( /obj/machinery/light/small/directional/east, /turf/open/floor/engine/n2, /area/ruin/syndicate_lava_base/engineering) +"ro" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/modular_map_root/syndicatebase{ + key = "commswilding" + }, +/turf/open/floor/iron/dark, +/area/ruin/syndicate_lava_base/arrivals) +"rp" = ( +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/misc/asteroid/basalt/lava_land_surface, +/area/ruin/syndicate_lava_base/virology) +"rv" = ( +/obj/machinery/airalarm/syndicate{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/chair/stool/directional/south, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ruin/syndicate_lava_base/bar) +"ry" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/main) "rE" = ( /obj/machinery/light/small/directional/north, /obj/machinery/button/door{ @@ -4317,14 +2793,22 @@ dir = 1 }, /area/ruin/syndicate_lava_base/chemistry) -"rF" = ( -/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/plating/airless, -/area/ruin/syndicate_lava_base/engineering) "sc" = ( /turf/open/floor/engine/o2, /area/ruin/syndicate_lava_base/engineering) +"sd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron/white/corner{ + dir = 1 + }, +/area/ruin/syndicate_lava_base/virology) +"si" = ( +/turf/open/misc/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) "sl" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, @@ -4350,21 +2834,65 @@ /obj/structure/cable, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ruin/syndicate_lava_base/engineering) -"ta" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange{ - dir = 8 +"sT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/main) +"tf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron/white/side{ + dir = 4 + }, +/area/ruin/syndicate_lava_base/virology) +"tp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/red/line{ + dir = 10 }, -/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium, -/turf/open/floor/plating/airless, -/area/ruin/syndicate_lava_base/engineering) -"tx" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, +/area/ruin/syndicate_lava_base/main) +"tu" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/plating, +/area/ruin/syndicate_lava_base/main) +"tT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/chair/stool/bar/directional/east, +/turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/bar) -"tW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ruin/syndicate_lava_base/engineering) +"um" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/wood, +/area/ruin/syndicate_lava_base/bar) +"ur" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/dormitories) "uB" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ dir = 5 @@ -4372,20 +2900,105 @@ /obj/structure/cable, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ruin/syndicate_lava_base/engineering) -"vj" = ( +"va" = ( +/obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/red/line{ - dir = 9 +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 }, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/engineering) +"vg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/arrivals) +"vh" = ( +/obj/effect/turf_decal/box/white/corners{ + dir = 1 + }, +/obj/structure/closet/crate/internals, +/obj/item/tank/internals/oxygen/yellow, +/obj/item/tank/internals/oxygen/yellow, +/obj/item/tank/internals/oxygen/yellow, +/obj/item/tank/internals/emergency_oxygen/double, +/obj/item/tank/internals/emergency_oxygen/double, +/obj/item/tank/internals/emergency_oxygen/double, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/space/basic, +/area/ruin/syndicate_lava_base/cargo) +"vA" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/main) +"vB" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump/on/cyan/visible/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump/on/orange/visible/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump/off/general/visible{ + dir = 8 + }, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/engineering) +"vI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron/white/side{ + dir = 10 + }, +/area/ruin/syndicate_lava_base/chemistry) +"vK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron/white/side{ + dir = 1 + }, +/area/ruin/syndicate_lava_base/main) +"vM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/wood, +/area/ruin/syndicate_lava_base/bar) +"vU" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/ruin/syndicate_lava_base/main) -"vX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/layer_manifold/visible{ - dir = 4; - name = "Plasma Layer Manifold" - }, +/area/ruin/syndicate_lava_base/cargo) +"wa" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/engineering) "wi" = ( @@ -4395,9 +3008,38 @@ }, /turf/open/floor/plating/lavaland_atmos, /area/ruin/syndicate_lava_base/main) -"wj" = ( -/turf/open/misc/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) +"wv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/engineering) +"wA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/main) +"wE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron/white/side{ + dir = 8 + }, +/area/ruin/syndicate_lava_base/medbay) +"wX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/engineering) "xf" = ( /obj/effect/mob_spawn/ghost_role/human/lavaland_syndicate{ dir = 4 @@ -4407,98 +3049,391 @@ "xn" = ( /turf/open/floor/engine/n2, /area/ruin/syndicate_lava_base/engineering) +"xr" = ( +/obj/item/storage/box/donkpockets{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/storage/box/donkpockets{ + pixel_y = 3 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 2 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/freezer/kitchen/maintenance{ + req_access = null + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron/dark, +/area/ruin/syndicate_lava_base/bar) +"xt" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ruin/syndicate_lava_base/bar) +"xA" = ( +/obj/structure/extinguisher_cabinet/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/arrivals) "xD" = ( -/obj/structure/disposaloutlet{ +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 9 + }, +/obj/effect/turf_decal/tile/red{ dir = 1 }, -/obj/structure/disposalpipe/trunk, -/turf/open/misc/asteroid/basalt/lava_land_surface, -/area/ruin/syndicate_lava_base/virology) -"xU" = ( -/obj/structure/table, -/obj/structure/bedsheetbin, -/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/arrivals) +"xF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/plating, +/area/ruin/syndicate_lava_base/main) +"xI" = ( /obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/main) +"xM" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/caution/stand_clear{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/arrivals) +"ya" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restrooms" + }, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/dormitories) -"yg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 8; - frequency = 1442; - id_tag = "syndie_lavaland_o2_out"; - internal_pressure_bound = 5066; - name = "Oxygen Out" +"ye" = ( +/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium, +/obj/machinery/atmospherics/pipe/layer_manifold{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ruin/syndicate_lava_base/engineering) +"yk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/medbay) +"yl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/ruin/syndicate_lava_base/cargo) +"yp" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/virology) +"ys" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/main) +"yO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/main) +"yS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/chemistry) +"zK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/arrivals) +"Ab" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored{ + chamber_id = "lavalandsyndieo2"; + dir = 8 }, /turf/open/floor/engine/o2, /area/ruin/syndicate_lava_base/engineering) -"Aq" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/lighter{ - pixel_x = 7; - pixel_y = 6 - }, -/obj/item/storage/fancy/cigarettes/cigpack_syndicate{ - pixel_x = -3 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ruin/syndicate_lava_base/bar) -"AH" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ +"Ae" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/tile/neutral{ dir = 4 }, /turf/open/floor/iron, +/area/ruin/syndicate_lava_base/dormitories) +"Ag" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Chemistry Lab"; + req_access_txt = "150" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron/white, +/area/ruin/syndicate_lava_base/chemistry) +"Ao" = ( +/obj/machinery/atmospherics/components/trinary/mixer/layer2{ + dir = 8 + }, +/turf/open/floor/iron, /area/ruin/syndicate_lava_base/engineering) -"BC" = ( -/obj/machinery/meter/turf, -/turf/open/floor/engine/co2, +"AD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/vending/assist, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ruin/syndicate_lava_base/cargo) +"AQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/medbay) +"AX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron/white/side{ + dir = 4 + }, +/area/ruin/syndicate_lava_base/arrivals) +"Bb" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/main) +"Bj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, /area/ruin/syndicate_lava_base/engineering) +"Bt" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/main) +"BD" = ( +/obj/effect/turf_decal/box/white/corners{ + dir = 4 + }, +/obj/structure/closet/crate, +/obj/item/storage/box/donkpockets{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/storage/box/donkpockets{ + pixel_y = 3 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 2 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ruin/syndicate_lava_base/cargo) "BF" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/chair/stool/bar/directional/east, -/turf/open/floor/iron/dark, -/area/ruin/syndicate_lava_base/bar) -"Cd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/red/line{ - dir = 5 +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 6 }, -/obj/structure/filingcabinet, -/obj/item/folder/syndicate/mining, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/plating, /area/ruin/syndicate_lava_base/main) -"Cf" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/bottle/beer, +"BG" = ( +/obj/structure/bookcase/random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/bar) -"CS" = ( -/obj/machinery/airalarm/syndicate{ - dir = 8; - pixel_x = -24 +"BX" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 }, -/obj/structure/chair/stool/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/components/unary/outlet_injector{ + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/ruin/syndicate_lava_base/engineering) +"Cc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/reagent_dispensers/beerkeg, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/bar) -"Da" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/red/line{ - dir = 10 +"Ck" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 9 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/structure/cable, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, +/area/ruin/syndicate_lava_base/cargo) +"Cn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron/white, +/area/ruin/syndicate_lava_base/virology) +"Cu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron/white/side{ + dir = 9 + }, +/area/ruin/syndicate_lava_base/virology) +"Cz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/iron/white/side{ + dir = 1 + }, +/area/ruin/syndicate_lava_base/medbay) +"CA" = ( +/obj/machinery/air_sensor{ + chamber_id = "lavalandsyndieplasma" + }, +/turf/open/floor/engine/plasma, +/area/ruin/syndicate_lava_base/engineering) +"CR" = ( +/obj/effect/turf_decal/box/white/corners{ + dir = 8 + }, +/obj/structure/closet/crate, +/obj/item/storage/box/stockparts/deluxe, +/obj/item/storage/box/stockparts/deluxe, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/circuitboard/machine/processor, +/obj/item/circuitboard/machine/gibber, +/obj/item/circuitboard/machine/deep_fryer, +/obj/item/circuitboard/machine/cell_charger, +/obj/item/circuitboard/machine/smoke_machine, +/obj/item/stack/sheet/plasteel/fifty, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/ruin/syndicate_lava_base/cargo) +"Dh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/components/binary/pump/off/general/visible, +/obj/machinery/portable_atmospherics/canister/tier_3, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/engineering) +"Dj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/medbay) +"Dm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, /area/ruin/syndicate_lava_base/main) -"DD" = ( -/obj/effect/turf_decal/box/white/corners, +"DF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer4, +/turf/closed/wall/mineral/plastitanium/nodiagonal, +/area/ruin/syndicate_lava_base/main) +"DL" = ( +/obj/machinery/door/airlock/virology/glass{ + name = "Monkey Pen"; + req_access_txt = "150" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron/white, +/area/ruin/syndicate_lava_base/virology) +"DP" = ( /obj/structure/closet/crate/medical, /obj/item/storage/medkit/fire{ pixel_x = 3; @@ -4511,9 +3446,13 @@ }, /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/cargo) -"DF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer4, -/turf/closed/wall/mineral/plastitanium/nodiagonal, +"DY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/red/line{ + dir = 9 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/main) "Ec" = ( /obj/machinery/light/small/directional/south, @@ -4522,18 +3461,26 @@ }, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/engineering) -"Ed" = ( -/obj/machinery/portable_atmospherics/canister/tier_3, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, +"Eg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/engineering) -"Er" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/ruin/syndicate_lava_base/cargo) +"Eo" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/main) "Ev" = ( /obj/structure/table/wood, /obj/item/reagent_containers/glass/rag{ @@ -4547,6 +3494,32 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/ruin/syndicate_lava_base/bar) +"ET" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/layer_manifold/orange/visible{ + dir = 8 + }, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/engineering) +"EV" = ( +/obj/structure/closet/emcloset/anchored, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/arrivals) "EZ" = ( /obj/machinery/door/airlock/external/ruin{ req_access_txt = "150" @@ -4555,24 +3528,92 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/ruin/syndicate_lava_base/arrivals) -"Fd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ +"Ff" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/cargo) +"Fs" = ( +/obj/machinery/door/airlock/virology/glass{ + name = "Isolation B"; + req_access_txt = "150" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron/white, +/area/ruin/syndicate_lava_base/virology) +"FC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/grimy, +/area/ruin/syndicate_lava_base/dormitories) +"FI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/turf/open/floor/iron/grimy, +/area/ruin/syndicate_lava_base/dormitories) +"FW" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/main) +"GQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/main) +"Hm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/plating, +/area/ruin/syndicate_lava_base/main) +"HP" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/plating, +/area/ruin/syndicate_lava_base/dormitories) +"HQ" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/arrivals) +"HS" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ruin/syndicate_lava_base/bar) -"Hu" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/visible{ - dir = 9; - name = "N2 to Mix" - }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, /turf/open/floor/iron, -/area/ruin/syndicate_lava_base/engineering) +/area/ruin/syndicate_lava_base/arrivals) "HX" = ( /obj/effect/mob_spawn/ghost_role/human/lavaland_syndicate{ dir = 4 @@ -4583,6 +3624,41 @@ }, /turf/open/floor/iron/grimy, /area/ruin/syndicate_lava_base/dormitories) +"Ir" = ( +/obj/machinery/washing_machine, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ruin/syndicate_lava_base/dormitories) +"IB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology{ + frequency = 1449; + id_tag = "lavaland_syndie_virology_exterior"; + name = "Virology Lab Exterior Airlock"; + req_access_txt = "150" + }, +/obj/machinery/door_buttons/access_button{ + idDoor = "lavaland_syndie_virology_exterior"; + idSelf = "lavaland_syndie_virology_control"; + name = "Virology Access Button"; + pixel_y = -24; + req_access_txt = "150" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/main) +"IF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/chemistry) "IH" = ( /obj/effect/spawner/structure/window/reinforced/plasma/plastitanium, /turf/open/floor/plating/airless, @@ -4593,86 +3669,170 @@ }, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ruin/syndicate_lava_base/engineering) +"IP" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/engineering) +"IQ" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/bottle/beer, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ruin/syndicate_lava_base/bar) "IU" = ( /obj/effect/baseturf_helper/lava_land/surface, /turf/template_noop, /area/template_noop) -"Jc" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/door/airlock/mining/glass{ - name = "Warehouse"; - req_access_txt = "150" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/ruin/syndicate_lava_base/cargo) -"Jj" = ( -/obj/structure/chair/stool/bar/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ruin/syndicate_lava_base/bar) -"Jp" = ( -/obj/effect/mapping_helpers/no_lava, -/turf/open/misc/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"JB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ - dir = 8; - name = "Plasma to Mix" - }, -/turf/open/floor/iron, -/area/ruin/syndicate_lava_base/engineering) -"JU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/chair/stool/bar/directional/east, -/turf/open/floor/iron/dark, -/area/ruin/syndicate_lava_base/bar) -"Ln" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/mining/glass{ - name = "Warehouse"; - req_access_txt = "150" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/ruin/syndicate_lava_base/cargo) -"Lp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow, -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ruin/syndicate_lava_base/engineering) -"LB" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/table, -/obj/item/storage/medkit/fire, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/white/side{ - dir = 5 - }, -/area/ruin/syndicate_lava_base/medbay) -"Ma" = ( +"Jo" = ( /obj/structure/closet/emcloset/anchored, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/dormitories) -"Ms" = ( +"Jp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/dormitories) +"JE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump/on/cyan/visible/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump/off/general/visible{ + dir = 8 + }, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/engineering) +"JM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/dormitories) +"JQ" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/power/apc/syndicate{ + dir = 1; + name = "Engineering APC"; + pixel_y = 25 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/engineering) +"JV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored{ + chamber_id = "lavalandsyndieco2" + }, +/turf/open/floor/engine/co2, +/area/ruin/syndicate_lava_base/engineering) +"Kf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/engineering) +"Kg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/arrivals) +"Kj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron/white, +/area/ruin/syndicate_lava_base/medbay) +"Kp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/plating, +/area/ruin/syndicate_lava_base/main) +"Kr" = ( +/obj/effect/turf_decal/stripes/red/corner{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "syndie_lavaland_vault"; + name = "Vault Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 24; + pixel_y = 8; + req_access_txt = "150"; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/main) +"Kz" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/arrivals) +"KI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/virology) +"KR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/main) +"KS" = ( /obj/structure/table, /obj/item/storage/medkit/regular, /obj/effect/decal/cleanable/dirt, @@ -4680,32 +3840,126 @@ dir = 4 }, /area/ruin/syndicate_lava_base/medbay) -"MA" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/modular_map_root/syndicatebase{ - key = "commswilding" +"KU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/engineering) +"Lp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow, +/turf/closed/wall/mineral/plastitanium/nodiagonal, +/area/ruin/syndicate_lava_base/engineering) +"Ly" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 4 }, -/turf/open/floor/iron/dark, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/plating, +/area/ruin/syndicate_lava_base/main) +"LG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/light/small/directional/east, +/obj/machinery/airalarm/syndicate{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/engineering) +"LI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/closed/wall/mineral/plastitanium/nodiagonal, +/area/ruin/syndicate_lava_base/engineering) +"Mr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/wood, +/area/ruin/syndicate_lava_base/bar) +"Ms" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/turf/open/floor/iron, /area/ruin/syndicate_lava_base/arrivals) -"Ng" = ( -/obj/machinery/atmospherics/components/trinary/mixer/airmix/flipped{ +"Mt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/main) +"Nh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ dir = 4 }, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/engineering) -"NF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, +"Nk" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, /turf/open/floor/iron, -/area/ruin/syndicate_lava_base/engineering) -"NH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/red/line{ - dir = 6 +/area/ruin/syndicate_lava_base/medbay) +"Nx" = ( +/obj/machinery/door/airlock/vault{ + id_tag = "syndie_lavaland_vault"; + req_access_txt = "150" }, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer4, /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/main) +"Ny" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/main) +"NQ" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/chair/stool/bar/directional/east, +/turf/open/floor/iron/dark, +/area/ruin/syndicate_lava_base/bar) +"NU" = ( +/obj/machinery/air_sensor{ + chamber_id = "lavalandsyndieo2" + }, +/turf/open/floor/engine/o2, +/area/ruin/syndicate_lava_base/engineering) +"Ob" = ( +/obj/machinery/airalarm/syndicate{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/main) "Oq" = ( /obj/effect/spawner/random/vending/colavend{ hacked = 1 @@ -4719,87 +3973,277 @@ }, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/main) -"Po" = ( -/obj/structure/bookcase/random, +"Or" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/light/small/directional/south, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/engineering) +"Ot" = ( +/obj/structure/sign/warning/fire, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/closed/wall/mineral/plastitanium/nodiagonal, +/area/ruin/syndicate_lava_base/engineering) +"OE" = ( +/obj/machinery/syndicatebomb/self_destruct{ + anchored = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer4, +/turf/open/floor/circuit/red, +/area/ruin/syndicate_lava_base/main) +"OQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 5 + }, /obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron/white, +/area/ruin/syndicate_lava_base/virology) +"OW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/airlock/engineering{ + name = "Engineering"; + req_access_txt = "150" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/main) +"OX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/cargo) +"Pb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/ruin/syndicate_lava_base/cargo) +"Pl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/main) +"Pw" = ( +/obj/machinery/airalarm/syndicate{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/vending/coffee{ + extended_inventory = 1 + }, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/bar) -"PK" = ( -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/vault{ - id_tag = "syndie_lavaland_vault"; +"PE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/engineering) +"PJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ruin/syndicate_lava_base/bar) +"PR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron/white, +/area/ruin/syndicate_lava_base/virology) +"PT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Bar Storage"; req_access_txt = "150" }, -/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, /turf/open/floor/iron/dark, -/area/ruin/syndicate_lava_base/main) -"Qm" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" +/area/ruin/syndicate_lava_base/bar) +"Qb" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ruin/syndicate_lava_base/dormitories) +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/engineering) "Qv" = ( /obj/structure/closet/firecloset/full{ anchored = 1 }, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/main) -"QT" = ( -/obj/machinery/washing_machine, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ruin/syndicate_lava_base/dormitories) -"Rh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 +"Qy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Warehouse"; + req_access_txt = "150" }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, /obj/structure/cable, -/turf/open/floor/iron/dark, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/iron, /area/ruin/syndicate_lava_base/cargo) +"QG" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, +/obj/effect/turf_decal/caution/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/main) +"QS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/door_buttons/access_button{ + idDoor = "lavaland_syndie_virology_interior"; + idSelf = "lavaland_syndie_virology_control"; + name = "Virology Access Button"; + pixel_x = -24; + pixel_y = 8; + req_access_txt = "150" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/main) +"QV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/cargo) +"Rc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer4, +/obj/effect/turf_decal/stripes/red/line{ + dir = 8 + }, +/turf/open/floor/circuit/red, +/area/ruin/syndicate_lava_base/main) +"Rh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/engineering) "Rl" = ( /obj/machinery/light/small/directional/east, /turf/open/floor/engine/o2, /area/ruin/syndicate_lava_base/engineering) -"Rq" = ( -/obj/machinery/meter/turf, +"Rn" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/plating, +/area/ruin/syndicate_lava_base/main) +"Ry" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored{ + chamber_id = "lavalandsyndieplasma"; + dir = 8 + }, /turf/open/floor/engine/plasma, /area/ruin/syndicate_lava_base/engineering) -"RE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ +"RH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ dir = 9 }, -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/ruin/syndicate_lava_base/engineering) +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron{ + heat_capacity = 1e+006 + }, +/area/ruin/syndicate_lava_base/dormitories) "RK" = ( /turf/open/floor/iron, /area/ruin/syndicate_lava_base/engineering) -"RP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 +"RO" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "150" }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/effect/decal/cleanable/dirt, /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/plating, +/area/ruin/syndicate_lava_base/bar) +"RP" = ( +/obj/structure/closet/crate/secure/gear{ + req_access_txt = "150" + }, +/obj/item/clothing/gloves/combat, +/obj/item/clothing/gloves/combat, +/obj/item/clothing/under/syndicate/combat, +/obj/item/clothing/under/syndicate/combat, +/obj/item/storage/belt/military, +/obj/item/storage/belt/military, +/obj/item/clothing/shoes/combat, +/obj/item/clothing/shoes/combat, +/obj/item/clothing/mask/gas/syndicate, +/obj/item/clothing/mask/gas/syndicate, +/obj/item/clothing/glasses/night, +/obj/item/clothing/glasses/night, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/cargo) -"RV" = ( -/obj/structure/sign/warning/fire, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/closed/wall/mineral/plastitanium/nodiagonal, +"Se" = ( +/obj/machinery/door/airlock{ + name = "Cabin 4" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/dormitories) +"Sk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron/white, +/area/ruin/syndicate_lava_base/virology) +"Sm" = ( +/obj/machinery/air_sensor{ + chamber_id = "lavalandsyndien2" + }, +/turf/open/floor/engine/n2, /area/ruin/syndicate_lava_base/engineering) "St" = ( /obj/structure/fans/tiny, @@ -4811,33 +4255,207 @@ }, /turf/open/floor/plating, /area/ruin/syndicate_lava_base/arrivals) -"Ty" = ( +"SA" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ruin/syndicate_lava_base/bar) +/obj/machinery/atmospherics/components/trinary/mixer/flipped/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/engineering) +"Tt" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/arrivals) +"Tu" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/virology{ + frequency = 1449; + id_tag = "lavaland_syndie_virology_interior"; + name = "Virology Lab Interior Airlock"; + req_access_txt = "150" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron/white, +/area/ruin/syndicate_lava_base/virology) "TG" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/portables_connector/visible, /obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/engineering) +"TY" = ( +/obj/machinery/firealarm/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/main) +"Ub" = ( +/obj/structure/closet/crate, +/obj/item/storage/toolbox/electrical{ + pixel_y = 4 + }, +/obj/item/storage/toolbox/mechanical, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ruin/syndicate_lava_base/cargo) +"Ue" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ruin/syndicate_lava_base/bar) +"Uk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Dormitories" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/dormitories) "Uq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/iron/white, +/area/ruin/syndicate_lava_base/medbay) +"Ut" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/vending/assist, +/obj/effect/turf_decal/stripes/red/line{ + dir = 5 + }, +/obj/structure/filingcabinet, +/obj/item/folder/syndicate/mining, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/ruin/syndicate_lava_base/cargo) -"Uv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ruin/syndicate_lava_base/cargo) +/area/ruin/syndicate_lava_base/main) +"UD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/arrivals) "Vd" = ( /turf/open/floor/engine/plasma, /area/ruin/syndicate_lava_base/engineering) -"Vn" = ( +"Vo" = ( +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron{ + heat_capacity = 1e+006 + }, +/area/ruin/syndicate_lava_base/dormitories) +"Vp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/engineering) +"Vr" = ( +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/arrivals) +"VM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/turf/open/floor/iron/white/side{ + dir = 6 + }, +/area/ruin/syndicate_lava_base/virology) +"VR" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer4, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/engineering) +"VT" = ( +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/main) +"VV" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron/white/side{ + dir = 8 + }, +/area/ruin/syndicate_lava_base/chemistry) +"Wf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer4, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/engineering) +"Wl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/main) +"Wn" = ( /obj/modular_map_root/syndicatebase{ key = "mistake" }, @@ -4850,35 +4468,39 @@ }, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ruin/syndicate_lava_base/main) -"Ww" = ( -/obj/structure/toilet{ - pixel_y = 18 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/machinery/light/small/directional/west, -/obj/structure/mirror/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ruin/syndicate_lava_base/dormitories) -"WV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ruin/syndicate_lava_base/bar) "Xd" = ( /obj/structure/closet/radiation, /obj/machinery/light/small/directional/west, /turf/open/floor/iron, /area/ruin/syndicate_lava_base/engineering) +"Xq" = ( +/obj/machinery/firealarm/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron/white/side{ + dir = 8 + }, +/area/ruin/syndicate_lava_base/chemistry) +"Xr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/engineering) +"Xy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/main) "XA" = ( /obj/effect/mob_spawn/ghost_role/human/lavaland_syndicate{ dir = 8 @@ -4889,26 +4511,244 @@ }, /turf/open/floor/iron/grimy, /area/ruin/syndicate_lava_base/dormitories) +"XK" = ( +/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium, +/obj/machinery/atmospherics/pipe/layer_manifold, +/turf/open/floor/plating/airless, +/area/ruin/syndicate_lava_base/engineering) +"XP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/color_adapter/layer2{ + dir = 8 + }, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/engineering) +"XR" = ( +/obj/machinery/door/airlock{ + name = "Cabin 1" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/dormitories) +"XU" = ( +/obj/machinery/light/small/directional/west, +/obj/machinery/firealarm/directional/west, +/obj/machinery/light/small/directional/west, +/obj/machinery/firealarm/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ruin/syndicate_lava_base/cargo) +"XW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Warehouse"; + req_access_txt = "150" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/cargo) +"Yb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 4 + }, +/obj/machinery/power/apc/syndicate{ + name = "Dormitories APC"; + pixel_y = -25 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/dormitories) +"Yh" = ( +/obj/machinery/door/airlock/virology/glass{ + name = "Isolation A"; + req_access_txt = "150" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron/white, +/area/ruin/syndicate_lava_base/virology) +"Yn" = ( +/obj/structure/chair/stool/bar/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/ruin/syndicate_lava_base/bar) "Yt" = ( /obj/machinery/light/small/directional/east, /turf/open/floor/engine/plasma, /area/ruin/syndicate_lava_base/engineering) -"Zq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, +"YJ" = ( +/obj/structure/sign/warning/explosives/alt{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer4, +/turf/open/floor/circuit/red, +/area/ruin/syndicate_lava_base/main) +"YS" = ( +/obj/effect/turf_decal/box/white/corners{ + dir = 8 + }, +/obj/structure/closet/crate/secure/weapon{ + req_access_txt = "150" + }, +/obj/item/ammo_box/c9mm{ + pixel_y = 6 + }, +/obj/item/ammo_box/c9mm, +/obj/item/ammo_box/magazine/m9mm{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/ammo_box/magazine/m9mm{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/ammo_box/magazine/m9mm{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/ammo_box/magazine/m9mm{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, /turf/open/floor/iron/dark, /area/ruin/syndicate_lava_base/cargo) +"YT" = ( +/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_syndicatelava{ + pixel_x = -8; + pixel_y = -26 + }, +/obj/machinery/button/ignition/incinerator/syndicatelava{ + pixel_x = 6; + pixel_y = -24 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/button/door/incinerator_vent_syndicatelava_aux{ + pixel_x = -8; + pixel_y = -40 + }, +/obj/machinery/button/door/incinerator_vent_syndicatelava_main{ + pixel_x = 6; + pixel_y = -40 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/engineering) +"YU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/plating, +/area/ruin/syndicate_lava_base/main) +"Za" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/engineering) +"Zv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/arrivals) +"Zz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/red/line{ + dir = 6 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ruin/syndicate_lava_base/main) +"ZD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/dormitories) +"ZG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/radiation/rad_area{ + pixel_y = -32 + }, +/obj/effect/turf_decal/stripes, +/obj/structure/closet/radiation, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/engineering) +"ZH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ruin/syndicate_lava_base/cargo) +"ZK" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/main) "ZN" = ( /obj/machinery/light/small/directional/north, /turf/open/floor/engine/co2, /area/ruin/syndicate_lava_base/engineering) +"ZO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/main) "ZU" = ( /obj/effect/spawner/structure/window/reinforced/plasma/plastitanium, /turf/open/floor/plating, /area/ruin/syndicate_lava_base/engineering) +"ZZ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/turf/open/floor/iron, +/area/ruin/syndicate_lava_base/main) (1,1,1) = {" IU @@ -5272,7 +5112,7 @@ ab ab ab ab -wj +si eh eG ff @@ -5325,9 +5165,9 @@ ab ab eh eH -fg -fy -gp +VM +Fs +OQ eI hp hE @@ -5372,14 +5212,14 @@ ab ab ab ab -wj +si eh eI eI eI -gq -gT -hq +PR +DL +de hF eh ab @@ -5422,12 +5262,12 @@ ab ab ab ab -wj +si eh eG fh eI -gr +Sk eI hr hG @@ -5475,9 +5315,9 @@ ab ab eh eH -fg -fz -gs +VM +Yh +Cn eh gj eh @@ -5498,7 +5338,7 @@ lS mT mT mo -MA +ro mT mT ab @@ -5527,7 +5367,7 @@ eh eh eI eI -gt +Cu gU hs hH @@ -5547,8 +5387,8 @@ lv lT mq mS -nn -nM +Zv +Vr mT mT ab @@ -5573,11 +5413,11 @@ ab ab ab ab -wj +si eh fi fA -gu +sd gV ht hH @@ -5597,8 +5437,8 @@ lw lT mr mS -nn -nN +Ms +Kg ol mT ab @@ -5623,12 +5463,12 @@ ab ab ab ab -xD +rp eJ fj fB -gv -gW +KI +yp hu hH ab @@ -5648,7 +5488,7 @@ jy ms mT no -nN +Kg ol mT ab @@ -5668,16 +5508,16 @@ ab ab ab ab -Jp +pa ab -Jp -Jp -Jp -Jp +pa +pa +pa +pa ae ae fC -gw +tf gX hv hH @@ -5691,14 +5531,14 @@ je jk jx jx -Cf +IQ lf -Po +BG jy jy jy np -nO +HS mT mT mT @@ -5717,17 +5557,17 @@ ab ab ab ab -Jp -Jp -Jp -Jp -Jp -Jp -Jp -Jp +pa +pa +pa +pa +pa +pa +pa +pa ae fD -ad +Tu eh eh eh @@ -5740,15 +5580,15 @@ je iv jx jx -Ty +Ue kH -tx +xt jZ -CS +rv mt mU np -nP +xM EZ oI oD @@ -5766,19 +5606,19 @@ ab ab ab ab -Jp -Jp -Jp -Jp -Jp -Jp -Jp -Jp -Jp +pa +pa +pa +pa +pa +pa +pa +pa +pa ae fE -gy -gY +Ny +QS hw hI hX @@ -5789,16 +5629,16 @@ je jk jx jx -tx +xt jZ -tx +xt jZ -tx +xt jZ -Ty +Ue mU nq -nQ +HQ mT mT mT @@ -5815,19 +5655,19 @@ ab ab ab ab -Jp -Jp -Jp -Jp -Jp -Jp -Jp -Jp -Jp -Jp +pa +pa +pa +pa +pa +pa +pa +pa +pa +pa ae fF -gz +GQ gZ hw hJ @@ -5838,17 +5678,17 @@ iM iv iv jx -Aq +cI jY -tx -kI -JU +xt +jZ +tT ly -BF +NQ mu mU nr -nR +cq om mT ab @@ -5865,19 +5705,19 @@ aa ab ab ab -Jp -Jp -Jp -Jp -Jp -Jp -Jp -Jp -Jp -Jp +pa +pa +pa +pa +pa +pa +pa +pa +pa +pa ae ae -gA +IB ha ha hK @@ -5889,17 +5729,17 @@ ha ha jP jM -tx +xt jZ -Jj +bZ lh Ev lW mv jy jy -nS -on +zK +xA mT ab ab @@ -5915,19 +5755,19 @@ aa ab ab ab -Jp -Jp -Jp -Jp -Jp -Jp -Jp -Jp -Jp -Jp -Jp +pa +pa +pa +pa +pa +pa +pa +pa +pa +pa +pa ae -gB +ry hb ha iN @@ -5938,18 +5778,18 @@ iO hB jl jz -tx +xt jZ -Fd -kK +qk +Yn li lA lX mw ah jy -nu -oo +vg +Tt ox ab ab @@ -5966,39 +5806,39 @@ ab ab ab ab -Jp -Jp -Jp -Jp -Jp -Jp -Jp -Jp -Jp -Jp -Vn -ix -hc -hx -hL -hZ -ij -ix -iP +pa +pa +pa +pa +pa +pa +pa +pa +pa +pa +Wn +ZO +yO +Ob +VT +TY +KR +ZO +ys hd jm jz jO -tx +xt kp -WV -lj -lB -lY +PJ +iQ +Mr +vM lA ai jP -nT +UD op ox ab @@ -6016,39 +5856,39 @@ ab ab ab ab -Jp -Jp -Jp -Jp -Jp -Jp -Jp -Jp -Jp +pa +pa +pa +pa +pa +pa +pa +pa +pa ae dQ -gF +vA hd hy hy -ia +hy ik -if -gI +Wl +wA hz hz jy jy ka -em +Pw kM lk lC -lZ +um mx jy jy -nU +cS oo ox ab @@ -6067,8 +5907,8 @@ ab ab ab ab -Jp -Jp +pa +pa ae ae aL @@ -6077,14 +5917,14 @@ ae ae oP fH -gG +sT he hz hz hz hz iy -iR +Uk hz HX jA @@ -6094,11 +5934,11 @@ jy jy jy ak -ma +PT jy jy -ns -nV +EV +xD oo ox ab @@ -6117,26 +5957,26 @@ ab ab ab ab -Jp -Jp +pa +pa as do dA -dT -er -eR -fm -fI -jS +Xq +VV +vI +Ag +vK +Mt he hz hM xf hz iz -iS -jf -jo +JM +XR +FC jB hz kb @@ -6144,10 +5984,10 @@ jy kN jZ lE -mb +bY my jy -nt +pI nW aW mT @@ -6172,32 +6012,32 @@ as as rE dB -dU +bd es eS fn fO -gG +sT hf hz hN -ic -il -iA -iT +FI +qw +Jp +Vo hz hz hz hz -kc -kr -kO -ll -lF -mc +BF +RO +kq +Cc +gi +xr jy jy -nu +vg nX oo mT @@ -6222,24 +6062,24 @@ at aM dv dC -dV +IF et eT fo fO -gG +sT hg hz hz hz hz -iB -iU -jg -jp -jp -jQ -jp +bV +qq +HP +Hm +Hm +xF +Hm jy jy jy @@ -6247,7 +6087,7 @@ jy jy jy mX -nv +Kz aQ mT mT @@ -6272,32 +6112,32 @@ at cA dw dC -dX +yS eu eU fn fH -gG +sT he -Ma +Jo hz -Ww -Qm +pM +ya iC -iV +Yb hz hz hz hz -ke -jQ -jQ -jQ -jp -jp -mz -mY -nw +YU +xF +xF +xF +Hm +Hm +Rn +AX +bq nZ mT ab @@ -6327,19 +6167,19 @@ ev eV fp fH -gI -he +wA +FW hz hz hz hz -iD -iW -jh -jo +Ae +ur +qI +FC jC hz -kf +Kp ks kP kQ @@ -6347,7 +6187,7 @@ kQ kQ kQ kT -nx +Kj kR kQ kQ @@ -6377,19 +6217,19 @@ ew as as as -gJ +qU hh hz hP -ic -in -iE -iX +FI +Se +ZD +RH hz XA jA hz -kg +Ly kt kQ kQ @@ -6397,7 +6237,7 @@ lG md mA mZ -ny +wE oa or kQ @@ -6419,35 +6259,35 @@ ab ab ab ab -wj +si as as as as as -Uq +AD dy -gK +Bb he hz hQ oK hz -QT -xU +Ir +oy hz hO hz hz -kh +tu ha kQ lm lH me -mB -na -nz +yk +AQ +Dj ob al kQ @@ -6469,15 +6309,15 @@ ab ab ab ab -wj +si dy -dK -ea -px -Er -Zq -Jc -gL +RP +YS +XU +yl +Ck +XW +qm he hz hz @@ -6489,19 +6329,19 @@ hz sw Oq jR -gI -ku -kR -ln -lI -lI -mC +wA +qW +Uq +Cz +jb +jb +jb lI nA oc kQ kQ -wj +si ab ab ab @@ -6522,13 +6362,13 @@ ab ab dy dL -eb -Rh -eX -fs +Ub +yl +vh +CR fa -gM -hi +Dm +Eo hB hB hB @@ -6536,21 +6376,21 @@ ag iG iZ ji -js -jE -jS -ki +ZZ +Pl +Mt +Mt kv kS ln lJ mf -mD +Nk lI nB kQ kQ -wj +si ab ab ab @@ -6571,35 +6411,35 @@ ab ab ab dy -dM -DD -RP +BD +DP +Ck eY -ft +cc dP -gN -hj -hj -hR -af -ip -iH -ja -jj -jj -gI +Xy +ZK +ZK +xI +Bt +gD +QG +Kr +dc +dc +wA Qv kj kw kT -LB -Ms +bC +KS ap mE nb nC kQ -wj +si ab ab ab @@ -6622,9 +6462,9 @@ ab ab dy dy -pZ -Rh -Uv +ZH +Pb +vU dy dy gO @@ -6633,11 +6473,11 @@ hC dy ha iq -PK +Nx iq ha ha -jF +OW jT ju gn @@ -6670,10 +6510,10 @@ ab ab ab ab -wj +si dy dy -Ln +Qy fa dy fY @@ -6682,12 +6522,12 @@ gQ hl hS ha -vj -iJ -Da +DY +Rc +tp ha Xd -jG +Eg jU ju kx @@ -6723,7 +6563,7 @@ ab ab dy ee -eB +aY fb fu gb @@ -6733,18 +6573,18 @@ gQ hT ha is -iK +OE jc ha jv -jH -jV +Bj +ZG ju ky kW lq lM -mh +Qb mG nd nD @@ -6773,34 +6613,34 @@ ab ab dy ef -eC -fc -fv -fv -gR +OX +ie +QV +QV +Ff gQ hl hU ha -Cd -pQ -NH +Ut +YJ +Zz ha jw -jI -jW -kk -kz -kX -lr -lN -mi -mH -ne +LG +Kf +bM +wX +wv +wv +Rh +Vp +Xr +YT nE -of +bc nE -oB +BX ju ju nf @@ -6834,21 +6674,21 @@ hV ha Wt DF -DF -DF -kl -kl -kl -kl -kA -kY -ls -lO -mj -mI -RV -tW -RE +ha +ha +ju +ju +ju +ju +JQ +RK +sl +XP +ET +Or +Ot +LI +LI ju oC nf @@ -6883,20 +6723,20 @@ hD dy dy wi -wj -wj +si +si ju ld -kE -rF -km -kB -kZ -Ng -lt -mk -mJ -ng +JV +XK +Dh +Za +KU +KU +Ao +SA +aG +Wf TG Ec ju @@ -6937,18 +6777,18 @@ ab ab ju ZN -BC +oO IH -Ed -kC -kZ -lu -RK -ml -RK -JB +la +PE RK RK +lg +Wf +RK +VR +wa +dg ju ab ab @@ -6990,15 +6830,15 @@ ju ju ju la -kD -aR -Hu -AH -lb +JE +va +IP +vB +Nh sl -vX -NF -dg +eK +sl +bt ju ab ab @@ -7040,13 +6880,13 @@ ab ab ju ju +ye ZU -lc ju +ye ZU -mm ju -ta +cB IH ju ju @@ -7090,14 +6930,14 @@ ab ab ab ju -kF -pJ +oM +Sm ju -lR -yg +Ab +NU ju -cP -Rq +Ry +CA ju ab ab diff --git a/_maps/RandomRuins/SpaceRuins/TheDerelict.dmm b/_maps/RandomRuins/SpaceRuins/TheDerelict.dmm index e4e4cb32201..5cff57eed43 100644 --- a/_maps/RandomRuins/SpaceRuins/TheDerelict.dmm +++ b/_maps/RandomRuins/SpaceRuins/TheDerelict.dmm @@ -36,6 +36,12 @@ dir = 1 }, /area/ruin/space/derelict/medical/chapel) +"ao" = ( +/obj/machinery/computer/atmos_control/noreconnect{ + atmos_chambers = list("ks13" = "Air Supply") + }, +/turf/open/floor/plating/airless, +/area/ruin/space/derelict/atmospherics) "ap" = ( /obj/machinery/power/solar{ id = "derelictsolar"; @@ -2528,14 +2534,16 @@ /turf/open/floor/plating/airless, /area/ruin/space/derelict/atmospherics) "lN" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber, +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored{ + chamber_id = "ks13" + }, /turf/open/floor/engine/air{ initial_gas_mix = "o2=20000;n2=80000;TEMP=293.15" }, /area/ruin/space/derelict/atmospherics) "lO" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos{ - name = "engine outlet injector" +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored{ + chamber_id = "ks13" }, /turf/open/floor/engine/air{ initial_gas_mix = "o2=20000;n2=80000;TEMP=293.15" @@ -3164,7 +3172,9 @@ /turf/open/floor/iron, /area/ruin/space/derelict/bridge) "pZ" = ( -/obj/machinery/air_sensor/atmos/air_tank, +/obj/machinery/air_sensor{ + chamber_id = "ks13" + }, /turf/open/floor/engine/air{ initial_gas_mix = "o2=20000;n2=80000;TEMP=293.15" }, @@ -8023,7 +8033,7 @@ gk lv lv lv -lt +ao ls lt lt diff --git a/_maps/RandomRuins/SpaceRuins/deepstorage.dmm b/_maps/RandomRuins/SpaceRuins/deepstorage.dmm index 46c3fef98f3..06b26a0b244 100644 --- a/_maps/RandomRuins/SpaceRuins/deepstorage.dmm +++ b/_maps/RandomRuins/SpaceRuins/deepstorage.dmm @@ -2066,10 +2066,9 @@ /turf/open/floor/plating, /area/ruin/space/has_grav/deepstorage/power) "fC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos{ - dir = 8; - id_tag = "o2_out_bunker"; - name = "oxygen out" +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored{ + chamber_id = "deepo2"; + dir = 8 }, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/deepstorage/power) @@ -2115,14 +2114,11 @@ /turf/open/floor/iron, /area/ruin/space/has_grav/deepstorage/power) "fJ" = ( -/obj/machinery/computer/atmos_control/tank{ - dir = 8; - input_tag = "o2_in_bunker"; - name = "Oxygen Supply Control"; - output_tag = "o2_out_bunker"; - sensors = list("o2_sensor_bunker" = "Tank") - }, /obj/effect/decal/cleanable/dirt, +/obj/machinery/computer/atmos_control/noreconnect{ + atmos_chambers = list("deepo2" = "Oxygen Supply"); + dir = 8 + }, /turf/open/floor/iron, /area/ruin/space/has_grav/deepstorage/power) "fK" = ( @@ -2132,7 +2128,7 @@ /area/ruin/space/has_grav/deepstorage/power) "fL" = ( /obj/machinery/air_sensor{ - id_tag = "o2_sensor_bunker" + chamber_id = "deepo2" }, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/deepstorage/power) @@ -2272,13 +2268,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/ruin/space/has_grav/deepstorage/power) -"gd" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos{ - dir = 8; - id = "n2_in_bunker" - }, -/turf/open/floor/plating/airless, -/area/ruin/space/has_grav/deepstorage/power) "ge" = ( /obj/machinery/door/airlock{ name = "Personal Dorm" @@ -2373,10 +2362,9 @@ /turf/open/floor/iron, /area/ruin/space/has_grav/deepstorage/power) "gv" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos{ - dir = 8; - id_tag = "n2_out_bunker"; - name = "nitrogen out" +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored{ + chamber_id = "deepn2"; + dir = 8 }, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/deepstorage/power) @@ -2429,19 +2417,16 @@ /turf/open/floor/iron, /area/ruin/space/has_grav/deepstorage/power) "gC" = ( -/obj/machinery/computer/atmos_control/tank{ - dir = 8; - input_tag = "n2_in_bunker"; - name = "Nitrogen Supply Control"; - output_tag = "n2_out_bunker"; - sensors = list("n2_sensor_bunker" = "Tank") - }, /obj/effect/decal/cleanable/dirt, +/obj/machinery/computer/atmos_control/noreconnect{ + atmos_chambers = list("deepn2" = "Nitrogen Supply"); + dir = 8 + }, /turf/open/floor/iron, /area/ruin/space/has_grav/deepstorage/power) "gD" = ( /obj/machinery/air_sensor{ - id_tag = "n2_sensor_bunker" + chamber_id = "deepn2" }, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/deepstorage/power) @@ -2495,9 +2480,9 @@ /turf/open/floor/iron, /area/ruin/space/has_grav/deepstorage/power) "gP" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos{ - dir = 8; - id = "o2_in_bunker" +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored{ + chamber_id = "deepn2"; + dir = 8 }, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/deepstorage/power) @@ -2727,6 +2712,13 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/ruin/space/has_grav/deepstorage/armory) +"qm" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored{ + chamber_id = "deepo2"; + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/ruin/space/has_grav/deepstorage/power) "rz" = ( /obj/machinery/conveyor{ dir = 6; @@ -4545,7 +4537,7 @@ fb fp fC fL -gd +qm fp gv gD diff --git a/_maps/RandomRuins/SpaceRuins/mrow_thats_right.dmm b/_maps/RandomRuins/SpaceRuins/mrow_thats_right.dmm index 73a1f1bb099..082e1cbd3b0 100644 --- a/_maps/RandomRuins/SpaceRuins/mrow_thats_right.dmm +++ b/_maps/RandomRuins/SpaceRuins/mrow_thats_right.dmm @@ -140,7 +140,8 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/old, /obj/machinery/light/small/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored{ + chamber_id = "catstation1"; dir = 1 }, /turf/open/floor/plating, @@ -155,7 +156,8 @@ /area/ruin/space/has_grav/powered/cat_man) "aB" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored{ + chamber_id = "catstation2"; dir = 1 }, /turf/open/floor/plating, @@ -390,7 +392,8 @@ /area/ruin/space/has_grav/powered/cat_man) "bk" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored{ + chamber_id = "catstation3"; dir = 4 }, /turf/open/floor/plating, @@ -459,6 +462,10 @@ /obj/effect/turf_decal/tile/neutral{ dir = 4 }, +/obj/machinery/computer/atmos_control/noreconnect{ + atmos_chambers = list("catstation1" = "Chamber 1", "catstation2" = "Chamber 2", "catstation3" = "Chamber 3", "catstation4" = "Chamber 4", "catstation5" = "Chamber 5", "catstation6" = "Chamber 6", "catstationsupply" = "Supply"); + dir = 8 + }, /turf/open/floor/iron, /area/ruin/space/has_grav/powered/cat_man) "bw" = ( @@ -541,7 +548,8 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/old, /obj/machinery/light/small/directional/south, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored{ + chamber_id = "catstation4"; dir = 4 }, /turf/open/floor/plating, @@ -614,6 +622,9 @@ "bP" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored{ + chamber_id = "catstation6" + }, /turf/open/floor/plating, /area/ruin/space/has_grav/powered/cat_man) "bQ" = ( @@ -654,9 +665,6 @@ "bV" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small/directional/south, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, /turf/open/floor/plating, /area/ruin/space/has_grav/powered/cat_man) "bW" = ( @@ -768,10 +776,9 @@ /turf/open/floor/plating, /area/ruin/space/has_grav/powered/cat_man) "cl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos{ - dir = 8; - id_tag = "n2o_out_cat"; - name = "n2o out" +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored{ + chamber_id = "catstationsupply"; + dir = 8 }, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/powered/cat_man) @@ -802,10 +809,9 @@ /turf/open/floor/plating/airless, /area/ruin/space/has_grav/powered/cat_man) "cs" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos{ +/obj/machinery/atmospherics/components/unary/vent_pump/siphon{ dir = 1; - id_tag = "o2_out_cat"; - name = "freezer vent" + id_tag = "o2_out_cat" }, /obj/structure/closet/crate/freezer{ name = "cat hide" @@ -892,6 +898,13 @@ /obj/item/organ/tail/cat, /turf/open/floor/iron/freezer, /area/ruin/space/has_grav/powered/cat_man) +"jc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored{ + chamber_id = "catstation5" + }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/powered/cat_man) "Bl" = ( /obj/machinery/door/airlock/external/ruin, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ @@ -1506,7 +1519,7 @@ bv bh bG bO -ay +jc bX as cb diff --git a/_maps/RandomRuins/SpaceRuins/thelizardsgas.dmm b/_maps/RandomRuins/SpaceRuins/thelizardsgas.dmm index 07ff0703243..298bc296556 100644 --- a/_maps/RandomRuins/SpaceRuins/thelizardsgas.dmm +++ b/_maps/RandomRuins/SpaceRuins/thelizardsgas.dmm @@ -114,8 +114,8 @@ /turf/open/floor/iron/white, /area/ruin/space/has_grav/thelizardsgas) "kS" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/plasma_output{ - internal_pressure_bound = 750 +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored{ + chamber_id = "lizardgas" }, /turf/open/floor/engine/plasma{ initial_gas_mix = "plasma=35000;TEMP=293.15" @@ -312,9 +312,9 @@ }, /area/ruin/space/has_grav/thelizardsgas) "FJ" = ( -/obj/machinery/computer/atmos_control/tank/plasma_tank{ - dir = 8; - output_info = null +/obj/machinery/computer/atmos_control/noreconnect{ + atmos_chambers = list("lizardgas" = "Plasma Supply"); + dir = 8 }, /turf/open/floor/iron/dark/smooth_edge{ dir = 4 @@ -491,7 +491,8 @@ /turf/closed/wall/r_wall, /area/ruin/space/has_grav/thelizardsgas) "Uh" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/plasma_input{ +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored{ + chamber_id = "lizardgas"; dir = 4 }, /turf/open/floor/engine/plasma{ @@ -541,7 +542,9 @@ /turf/template_noop, /area/ruin/space/has_grav/thelizardsgas) "WY" = ( -/obj/machinery/air_sensor/atmos/plasma_tank, +/obj/machinery/air_sensor{ + chamber_id = "lizardgas" + }, /turf/open/floor/engine/plasma{ initial_gas_mix = "plasma=35000;TEMP=293.15" }, diff --git a/_maps/RandomZLevels/snowdin.dmm b/_maps/RandomZLevels/snowdin.dmm index 27ac5ebe7a0..8e28c75b022 100644 --- a/_maps/RandomZLevels/snowdin.dmm +++ b/_maps/RandomZLevels/snowdin.dmm @@ -6282,12 +6282,9 @@ /turf/open/floor/iron, /area/awaymission/snowdin/post/engineering) "qX" = ( -/obj/machinery/computer/atmos_control/tank{ - dir = 1; - frequency = 1442; - name = "Toxins Supply Control"; - output_tag = "snowdin_toxins_out"; - sensors = list("snowdin_toxins" = "Tank") +/obj/machinery/computer/atmos_control/noreconnect{ + atmos_chambers = list("snowdinmix" = "Mix Chamber"); + dir = 1 }, /turf/open/floor/plating{ icon_state = "platingdmg1" @@ -6309,31 +6306,25 @@ /turf/open/floor/iron, /area/awaymission/snowdin/post/engineering) "ra" = ( -/obj/machinery/computer/atmos_control/tank{ - dir = 1; - frequency = 1442; - name = "Oxygen Supply Control"; - output_tag = "snowdin_oxygen_out"; - sensors = list("snowdin_oxygen" = "Tank") - }, /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/yellow{ dir = 8 }, +/obj/machinery/computer/atmos_control/noreconnect{ + atmos_chambers = list("snowdino2" = "Oxygen Supply"); + dir = 1 + }, /turf/open/floor/iron, /area/awaymission/snowdin/post/engineering) "rb" = ( -/obj/machinery/computer/atmos_control/tank{ - dir = 1; - frequency = 1442; - name = "Nitrogen Supply Control"; - output_tag = "snowdin_nitrogen_out"; - sensors = list("snowdin_nitrogen" = "Tank") - }, /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/yellow{ dir = 8 }, +/obj/machinery/computer/atmos_control/noreconnect{ + atmos_chambers = list("snowdinn2" = "Nitrogen Supply"); + dir = 1 + }, /turf/open/floor/iron, /area/awaymission/snowdin/post/engineering) "rc" = ( @@ -6486,7 +6477,7 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post) "rI" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos{ +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored{ dir = 1; piping_layer = 4; pixel_x = 5; @@ -6515,53 +6506,44 @@ /turf/open/misc/asteroid/snow/ice, /area/awaymission/snowdin/cave/cavern) "rM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 1; - frequency = 1442; - id_tag = "snowdin_toxins_out"; - name = "toxin out" +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored{ + chamber_id = "snowdinmix"; + dir = 1 }, /turf/open/floor/engine/plasma, /area/awaymission/snowdin/post/engineering) "rN" = ( -/obj/machinery/air_sensor{ - frequency = 1442; - id_tag = "snowdin_toxins"; - name = "gas sensor (toxins)" +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored{ + chamber_id = "snowdinmix"; + dir = 1 }, /turf/open/floor/engine/plasma, /area/awaymission/snowdin/post/engineering) "rO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 1; - frequency = 1442; - id_tag = "snowdin_oxygen_out"; - name = "oxygen out" +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored{ + chamber_id = "snowdino2"; + dir = 1 }, /turf/open/floor/engine/o2, /area/awaymission/snowdin/post/engineering) "rP" = ( -/obj/machinery/air_sensor{ - frequency = 1442; - id_tag = "snowdin_oxygen"; - name = "gas sensor (oxygen)" +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored{ + chamber_id = "snowdino2"; + dir = 1 }, /turf/open/floor/engine/o2, /area/awaymission/snowdin/post/engineering) "rQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 1; - frequency = 1442; - id_tag = "snowdin_nitrogen_out"; - name = "nitrogen out" +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored{ + chamber_id = "snowdinn2"; + dir = 1 }, /turf/open/floor/engine/n2, /area/awaymission/snowdin/post/engineering) "rR" = ( -/obj/machinery/air_sensor{ - frequency = 1442; - id_tag = "snowdin_nitrogen"; - name = "gas sensor (nitrogen)" +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored{ + chamber_id = "snowdinn2"; + dir = 1 }, /turf/open/floor/engine/n2, /area/awaymission/snowdin/post/engineering) @@ -6640,12 +6622,21 @@ /turf/open/floor/engine, /area/awaymission/snowdin/post/engineering) "sh" = ( +/obj/machinery/air_sensor{ + chamber_id = "snowdinmix" + }, /turf/open/floor/engine/plasma, /area/awaymission/snowdin/post/engineering) "sj" = ( +/obj/machinery/air_sensor{ + chamber_id = "snowdino2" + }, /turf/open/floor/engine/o2, /area/awaymission/snowdin/post/engineering) "sk" = ( +/obj/machinery/air_sensor{ + chamber_id = "snowdinn2" + }, /turf/open/floor/engine/n2, /area/awaymission/snowdin/post/engineering) "sl" = ( @@ -6715,6 +6706,9 @@ /turf/open/floor/engine/vacuum, /area/awaymission/snowdin/post/engineering) "sA" = ( +/obj/machinery/air_sensor{ + chamber_id = "snowdinincin" + }, /turf/open/floor/engine/vacuum, /area/awaymission/snowdin/post/engineering) "sB" = ( @@ -6725,9 +6719,9 @@ /turf/open/floor/engine/vacuum, /area/awaymission/snowdin/post/engineering) "sC" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos{ - dir = 1; - id = "snowdin_incin_in" +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored{ + chamber_id = "snowdinincin"; + dir = 1 }, /turf/open/floor/engine/vacuum, /area/awaymission/snowdin/post/engineering) @@ -7330,9 +7324,8 @@ /turf/open/floor/iron/showroomfloor, /area/awaymission/snowdin/post/cavern1) "vG" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos{ - dir = 1; - id = "snowdin_incin_in" +/obj/machinery/atmospherics/components/unary/outlet_injector{ + dir = 1 }, /turf/open/floor/plating/snowed/cavern, /area/awaymission/snowdin/post/cavern1) @@ -7933,9 +7926,7 @@ "yu" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ dir = 8; - frequency = 1442; - id_tag = "snowdin_toxins_mine_1"; - name = "toxin out" + name = "plasma vent" }, /turf/open/floor/engine/plasma, /area/awaymission/snowdin/cave) @@ -8122,9 +8113,7 @@ "za" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ dir = 4; - frequency = 1442; - id_tag = "snowdin_toxins_mine_1"; - name = "toxin out" + name = "plasma vent" }, /turf/open/floor/engine/plasma, /area/awaymission/snowdin/cave) @@ -9992,9 +9981,7 @@ "Hp" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ dir = 1; - frequency = 1442; - id_tag = "snowdin_toxins_mine_1"; - name = "toxin out" + name = "plasma vent" }, /turf/open/floor/engine/plasma, /area/awaymission/snowdin/outside) @@ -12550,6 +12537,10 @@ id = "snowdinturbinegas"; name = "Turbine Gas Release" }, +/obj/machinery/computer/atmos_control/fixed{ + atmos_chambers = list("snowdinincin" = "Incinerator Chamber"); + dir = 1 + }, /turf/open/floor/plating{ icon_state = "platingdmg1" }, diff --git a/_maps/RandomZLevels/undergroundoutpost45.dmm b/_maps/RandomZLevels/undergroundoutpost45.dmm index 9db40655a36..a78cd24ed1d 100644 --- a/_maps/RandomZLevels/undergroundoutpost45.dmm +++ b/_maps/RandomZLevels/undergroundoutpost45.dmm @@ -7259,7 +7259,7 @@ /area/awaymission/undergroundoutpost45/engineering) "pa" = ( /obj/machinery/air_sensor{ - id_tag = "UO45_air_sensor" + chamber_id = "uo45air" }, /turf/open/floor/engine/air, /area/awaymission/undergroundoutpost45/engineering) @@ -7527,15 +7527,14 @@ }, /area/awaymission/undergroundoutpost45/engineering) "pE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/atmos{ - id_tag = "UO45_air_out"; - name = "air out" +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored{ + chamber_id = "uo45air" }, /turf/open/floor/engine/air, /area/awaymission/undergroundoutpost45/engineering) "pF" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos{ - id = "UO45_air_in" +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored{ + chamber_id = "uo45air" }, /turf/open/floor/engine/air, /area/awaymission/undergroundoutpost45/engineering) @@ -8033,18 +8032,15 @@ /area/awaymission/undergroundoutpost45/engineering) "qK" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/computer/atmos_control/tank{ - input_tag = "UO45_air_in"; - name = "Mixed Air Supply Control"; - output_tag = "UO45_air_out"; - sensors = list("UO45_air_sensor" = "Tank") - }, /obj/effect/turf_decal/tile/blue{ dir = 4 }, /obj/effect/turf_decal/tile/blue{ dir = 8 }, +/obj/machinery/computer/atmos_control/noreconnect{ + atmos_chambers = list("uo45air" = "Air Supply") + }, /turf/open/floor/iron/white/corner{ dir = 1; heat_capacity = 1e+006 @@ -8369,9 +8365,8 @@ /area/awaymission/undergroundoutpost45/engineering) "rq" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, -/obj/machinery/meter/atmos{ - id_tag = "UO45_distro_meter"; - name = "Distribution Loop" +/obj/machinery/meter/monitored{ + chamber_id = "uo45distro" }, /turf/open/floor/iron{ heat_capacity = 1e+006 @@ -8994,6 +8989,10 @@ /obj/effect/turf_decal/tile/green{ dir = 4 }, +/obj/machinery/computer/atmos_control/noreconnect{ + atmos_chambers = list("uo45mix" = "Mix Chamber"); + dir = 8 + }, /turf/open/floor/iron{ heat_capacity = 1e+006 }, @@ -9011,10 +9010,9 @@ }, /area/awaymission/undergroundoutpost45/engineering) "sr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 8; - id_tag = "UO45_mix_in"; - name = "distro out" +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored{ + chamber_id = "uo45mix"; + dir = 8 }, /turf/open/floor/engine/vacuum, /area/awaymission/undergroundoutpost45/engineering) @@ -9373,13 +9371,6 @@ }, /area/awaymission/undergroundoutpost45/engineering) "tc" = ( -/obj/machinery/computer/atmos_control/tank{ - dir = 8; - input_tag = "UO45_mix_in"; - name = "Gas Mix Tank Control"; - output_tag = "UO45_mix_in"; - sensors = list("UO45_mix_sensor" = "Tank") - }, /obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ dir = 6 }, @@ -9408,15 +9399,15 @@ }, /area/awaymission/undergroundoutpost45/engineering) "te" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos{ - dir = 8; - id = "UO45_mix_in" +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored{ + chamber_id = "uo45mix"; + dir = 8 }, /turf/open/floor/engine/vacuum, /area/awaymission/undergroundoutpost45/engineering) "tf" = ( /obj/machinery/air_sensor{ - id_tag = "UO45_mix_sensor" + chamber_id = "uo45mix" }, /turf/open/floor/engine/vacuum, /area/awaymission/undergroundoutpost45/engineering) @@ -9684,9 +9675,8 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ dir = 8 }, -/obj/machinery/meter/atmos{ - id_tag = "UO45_waste_meter"; - name = "Waste Loop" +/obj/machinery/meter/monitored{ + chamber_id = "uo45waste" }, /turf/open/floor/iron{ heat_capacity = 1e+006 @@ -10017,13 +10007,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ dir = 4 }, -/obj/machinery/computer/atmos_control/tank{ - dir = 1; - input_tag = "UO45_n2_in"; - name = "Nitrogen Supply Control"; - output_tag = "UO45_n2_out"; - sensors = list("UO45_n2_sensor" = "Tank") - }, /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ @@ -10032,6 +10015,10 @@ /obj/effect/turf_decal/tile/red{ dir = 8 }, +/obj/machinery/computer/atmos_control/noreconnect{ + atmos_chambers = list("uo45n2" = "Nitrogen Supply"); + dir = 1 + }, /turf/open/floor/iron{ heat_capacity = 1e+006 }, @@ -10066,13 +10053,6 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/computer/atmos_control/tank{ - dir = 1; - input_tag = "UO45_o2_in"; - name = "Oxygen Supply Control"; - output_tag = "UO45_o2_out"; - sensors = list("UO45_o2_sensor" = "Tank") - }, /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -10080,6 +10060,10 @@ /obj/effect/turf_decal/tile/blue{ dir = 8 }, +/obj/machinery/computer/atmos_control/noreconnect{ + atmos_chambers = list("uo45o2" = "Oxygen Supply"); + dir = 1 + }, /turf/open/floor/iron{ heat_capacity = 1e+006 }, @@ -10157,17 +10141,17 @@ /area/awaymission/undergroundoutpost45/crew_quarters) "uA" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/computer/atmos_control{ - dir = 4; - name = "Tank Monitor"; - sensors = list("UO45_n2_sensor" = "Nitrogen", "UO45_o2_sensor" = "Oxygen", "UO45_mix_sensor" = "Gas Mix Tank") - }, /obj/effect/turf_decal/tile/yellow{ dir = 4 }, /obj/effect/turf_decal/tile/yellow{ dir = 8 }, +/obj/machinery/computer/atmos_control/fixed{ + atmos_chambers = list("uo45air" = "Air Supply", "uo45mix" = "Mix Chamber", "uo45n2" = "Nitrogen Supply", "uo45o2" = "Oxygen Supply"); + dir = 4; + name = "Chamber Atmospherics Monitoring" + }, /turf/open/floor/iron/dark/corner{ dir = 1; heat_capacity = 1e+006 @@ -10337,14 +10321,14 @@ /area/awaymission/undergroundoutpost45/crew_quarters) "uU" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/computer/atmos_control{ - dir = 4; - name = "Distribution and Waste Monitor"; - sensors = list("UO45_air_sensor" = "Mixed Air Supply Tank", "UO45_distro_meter" = "Distribution Loop", "UO45_waste_meter" = "Waste Loop") - }, /obj/effect/turf_decal/tile/yellow{ dir = 8 }, +/obj/machinery/computer/atmos_control/fixed{ + atmos_chambers = list("uo45waste", "uo45distro"); + dir = 4; + name = "Distribution and Waste Monitoring" + }, /turf/open/floor/iron/dark/corner{ dir = 1; heat_capacity = 1e+006 @@ -10457,32 +10441,30 @@ }, /area/awaymission/undergroundoutpost45/engineering) "vd" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos{ - dir = 1; - id = "UO45_n2_in" +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored{ + chamber_id = "uo45n2"; + dir = 1 }, /turf/open/floor/engine/n2, /area/awaymission/undergroundoutpost45/engineering) "ve" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos{ - dir = 1; - id_tag = "UO45_n2_out"; - name = "nitrogen out" +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored{ + chamber_id = "uo45n2"; + dir = 1 }, /turf/open/floor/engine/n2, /area/awaymission/undergroundoutpost45/engineering) "vf" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos{ - dir = 1; - id = "UO45_o2_in" +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored{ + chamber_id = "uo45o2"; + dir = 1 }, /turf/open/floor/engine/o2, /area/awaymission/undergroundoutpost45/engineering) "vg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos{ - dir = 1; - id_tag = "UO45_o2_out"; - name = "oxygen out" +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored{ + chamber_id = "uo45o2"; + dir = 1 }, /turf/open/floor/engine/o2, /area/awaymission/undergroundoutpost45/engineering) @@ -10680,10 +10662,10 @@ }, /area/awaymission/undergroundoutpost45/engineering) "vD" = ( -/obj/machinery/air_sensor{ - id_tag = "UO45_n2_sensor" - }, /obj/machinery/light/small/directional/south, +/obj/machinery/air_sensor{ + chamber_id = "uo45n2" + }, /turf/open/floor/engine/n2, /area/awaymission/undergroundoutpost45/engineering) "vE" = ( @@ -10691,10 +10673,10 @@ /turf/open/floor/engine/n2, /area/awaymission/undergroundoutpost45/engineering) "vF" = ( -/obj/machinery/air_sensor{ - id_tag = "UO45_o2_sensor" - }, /obj/machinery/light/small/directional/south, +/obj/machinery/air_sensor{ + chamber_id = "uo45o2" + }, /turf/open/floor/engine/o2, /area/awaymission/undergroundoutpost45/engineering) "vG" = ( diff --git a/_maps/map_files/Deltastation/DeltaStation2.dmm b/_maps/map_files/Deltastation/DeltaStation2.dmm index abb8476918c..49383cfb9ba 100644 --- a/_maps/map_files/Deltastation/DeltaStation2.dmm +++ b/_maps/map_files/Deltastation/DeltaStation2.dmm @@ -1978,6 +1978,13 @@ icon_state = "chapel" }, /area/service/chapel) +"aAh" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/meter/layer4, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) "aAi" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line{ @@ -3239,13 +3246,6 @@ /obj/item/storage/bag/tray/cafeteria, /turf/open/floor/plating, /area/security/prison) -"aPx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/incinerator_input{ - dir = 4 - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) "aPF" = ( /obj/structure/cable, /obj/effect/turf_decal/stripes/line{ @@ -5451,6 +5451,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/cafeteria, /area/service/cafeteria) +"bsL" = ( +/obj/machinery/air_sensor/carbon_tank, +/turf/open/floor/engine/co2, +/area/engineering/atmos) "bsM" = ( /obj/machinery/camera/motion/directional/west{ c_tag = "Bridge - Captain's Emergency Escape"; @@ -9378,6 +9382,22 @@ /obj/machinery/firealarm/directional/east, /turf/open/floor/iron/dark, /area/service/bar) +"cjY" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/computer/atmos_control/oxygen_tank{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible, +/turf/open/floor/iron, +/area/engineering/atmos) "ckd" = ( /obj/machinery/status_display/evac/directional/east, /obj/machinery/camera/directional/east{ @@ -9724,6 +9744,13 @@ }, /turf/open/floor/iron, /area/tcommsat/server) +"cok" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/incinerator_input{ + dir = 4 + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) "cov" = ( /obj/structure/chair{ dir = 1; @@ -10695,20 +10722,6 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, /area/hallway/secondary/command) -"cyy" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/obj/machinery/computer/atmos_control/tank/plasma_tank{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/engineering/atmos) "cyz" = ( /obj/structure/chair/office{ dir = 8 @@ -17066,6 +17079,18 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron/dark, /area/science/genetics) +"dwr" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/computer/atmos_control/nocontrol/incinerator{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/maintenance/disposal/incinerator) "dwv" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/siding/purple{ @@ -22069,6 +22094,12 @@ /obj/effect/turf_decal/caution/stand_clear, /turf/open/floor/iron, /area/security/checkpoint/escape) +"eeU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrous_output{ + dir = 4 + }, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) "efb" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, /turf/closed/wall/r_wall, @@ -22851,6 +22882,12 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) +"eoW" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/air_input{ + dir = 4 + }, +/turf/open/floor/engine/air, +/area/engineering/atmos) "eoX" = ( /obj/machinery/door/poddoor/shutters/radiation/preopen{ id = "engsm"; @@ -23391,10 +23428,6 @@ /obj/structure/chair/stool/bar/directional/east, /turf/open/floor/iron, /area/commons/lounge) -"exE" = ( -/obj/machinery/air_sensor/atmos/ordnance_mixing_tank, -/turf/open/floor/engine/vacuum, -/area/science/mixing/chamber) "exG" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -23532,6 +23565,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/ai_monitored/aisat/exterior) +"eAg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/oxygen_output{ + dir = 4 + }, +/turf/open/floor/engine/o2, +/area/engineering/atmos) "eAi" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, @@ -24153,17 +24192,6 @@ /obj/machinery/firealarm/directional/north, /turf/open/floor/iron/dark, /area/service/library) -"eIR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/supply/visible, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/meter, -/turf/open/floor/iron/dark/corner, -/area/engineering/atmos/pumproom) "eIV" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -24469,6 +24497,19 @@ }, /turf/open/floor/iron, /area/security/prison/safe) +"eOK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/meter/monitored/waste_loop, +/turf/open/floor/iron/dark/corner, +/area/engineering/atmos/pumproom) "ePb" = ( /obj/machinery/hydroponics/constructable, /obj/effect/turf_decal/tile/green, @@ -25243,6 +25284,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood, /area/service/theater/abandoned) +"faC" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/mix_input{ + dir = 4 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) "faI" = ( /obj/item/kirbyplants/random, /obj/machinery/camera/directional/east{ @@ -25758,6 +25805,10 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/medical/medbay/central) +"fhK" = ( +/obj/machinery/air_sensor/nitrogen_tank, +/turf/open/floor/engine/n2, +/area/engineering/atmos) "fhN" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -26410,23 +26461,6 @@ /obj/machinery/status_display/evac/directional/east, /turf/open/floor/iron/grimy, /area/service/library) -"ftn" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/computer/atmos_control/tank/nitrogen_tank{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/engineering/atmos) "ftA" = ( /obj/machinery/portable_atmospherics/canister, /obj/effect/turf_decal/bot, @@ -28903,6 +28937,23 @@ }, /turf/open/floor/iron, /area/security/prison) +"geL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "External Docking Port"; + space_dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/secondary/entry) "geO" = ( /obj/machinery/rnd/experimentor, /turf/open/floor/engine, @@ -30375,6 +30426,10 @@ }, /turf/open/floor/iron, /area/engineering/storage/tech) +"gAv" = ( +/obj/machinery/air_sensor/plasma_tank, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) "gAy" = ( /obj/item/kirbyplants/random, /turf/open/floor/iron/dark, @@ -31210,6 +31265,12 @@ /obj/machinery/recharge_station, /turf/open/floor/iron/dark, /area/security/warden) +"gLQ" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/carbon_input{ + dir = 4 + }, +/turf/open/floor/engine/co2, +/area/engineering/atmos) "gLT" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment, @@ -31635,12 +31696,6 @@ }, /turf/open/floor/iron, /area/hallway/secondary/entry) -"gSF" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/air_input{ - dir = 4 - }, -/turf/open/floor/engine/air, -/area/engineering/atmos) "gSG" = ( /obj/effect/turf_decal/tile/neutral, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -34056,6 +34111,22 @@ /obj/machinery/light/small/directional/south, /turf/open/floor/iron/white, /area/maintenance/fore) +"hCL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "External Docking Port" + }, +/turf/open/floor/iron, +/area/hallway/secondary/entry) "hCP" = ( /obj/structure/table/wood, /obj/machinery/door/firedoor, @@ -36591,19 +36662,6 @@ /obj/item/radio/intercom/directional/south, /turf/open/floor/iron/grimy, /area/command/bridge) -"inv" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/obj/machinery/computer/atmos_control/tank/carbon_tank{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/engineering/atmos) "inw" = ( /obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, @@ -37110,10 +37168,6 @@ /obj/item/melee/chainofcommand, /turf/open/floor/iron/grimy, /area/command/heads_quarters/captain) -"itU" = ( -/obj/machinery/air_sensor/atmos/air_tank, -/turf/open/floor/engine/air, -/area/engineering/atmos) "iuh" = ( /obj/structure/cable, /obj/effect/turf_decal/plaque{ @@ -37855,10 +37909,6 @@ /obj/machinery/holopad, /turf/open/floor/iron/grimy, /area/service/chapel/office) -"iGx" = ( -/obj/machinery/air_sensor/atmos/carbon_tank, -/turf/open/floor/engine/co2, -/area/engineering/atmos) "iGz" = ( /obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ dir = 9 @@ -37933,6 +37983,19 @@ }, /turf/open/floor/iron, /area/security/office) +"iHE" = ( +/obj/machinery/light/directional/east, +/obj/machinery/computer/atmos_control/nocontrol/ordnancemix{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/science/mixing) "iHI" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -38356,15 +38419,6 @@ /obj/machinery/airalarm/directional/north, /turf/open/floor/iron/dark, /area/ai_monitored/security/armory) -"iPi" = ( -/obj/structure/cable, -/obj/machinery/igniter/incinerator_atmos, -/obj/machinery/air_sensor/atmos/incinerator_tank{ - pixel_x = -32; - pixel_y = 32 - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) "iPj" = ( /obj/structure/cable, /obj/effect/turf_decal/plaque{ @@ -39591,6 +39645,23 @@ }, /turf/open/floor/iron, /area/cargo/storage) +"jje" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/computer/atmos_control/nitrogen_tank{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/engineering/atmos) "jjf" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -39843,19 +39914,6 @@ /obj/machinery/light/directional/east, /turf/open/floor/iron, /area/service/hydroponics) -"jnc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/meter, -/turf/open/floor/iron/dark/corner, -/area/engineering/atmos/pumproom) "jnp" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -39864,21 +39922,6 @@ /obj/machinery/status_display/evac/directional/north, /turf/open/floor/iron/textured, /area/engineering/atmos) -"jnv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/secondary/entry) "jnA" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/landmark/start/hangover, @@ -42260,22 +42303,6 @@ /obj/item/reagent_containers/food/drinks/bottle/holywater, /turf/open/floor/iron/grimy, /area/service/chapel/office) -"jXp" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/hidden, -/obj/machinery/computer/atmos_control{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the Engine."; - dir = 4; - layer = 4; - name = "Engine Monitor"; - network = list("engine"); - pixel_x = -24 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark/textured_large, -/area/engineering/atmos/storage/gas) "jXt" = ( /obj/structure/table/wood, /obj/item/folder/red, @@ -43660,6 +43687,15 @@ }, /turf/open/floor/iron/checker, /area/service/hydroponics/garden/abandoned) +"krH" = ( +/obj/machinery/computer/atmos_control/mix_tank{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/engineering/atmos/mix) "krP" = ( /turf/open/floor/iron, /area/engineering/atmos/project) @@ -44828,12 +44864,6 @@ /obj/structure/cable, /turf/open/floor/wood, /area/service/theater/abandoned) -"kLa" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/oxygen_input{ - dir = 4 - }, -/turf/open/floor/engine/o2, -/area/engineering/atmos) "kLf" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -45524,10 +45554,6 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, /area/service/hydroponics) -"kWr" = ( -/obj/machinery/air_sensor/atmos/oxygen_tank, -/turf/open/floor/engine/o2, -/area/engineering/atmos) "kWC" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -48454,6 +48480,10 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, /area/hallway/primary/fore) +"lLn" = ( +/obj/machinery/air_sensor/air_tank, +/turf/open/floor/engine/air, +/area/engineering/atmos) "lLo" = ( /obj/effect/landmark/blobstart, /obj/structure/cable, @@ -49183,15 +49213,6 @@ }, /turf/open/floor/iron, /area/maintenance/port/fore) -"lUw" = ( -/obj/machinery/computer/atmos_control/tank/mix_tank{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/engineering/atmos/mix) "lUH" = ( /obj/structure/table, /obj/item/paper_bin, @@ -49883,6 +49904,21 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/command/gateway) +"mdC" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/computer/atmos_control/air_tank{ + dir = 4 + }, +/turf/open/floor/iron/white/corner{ + dir = 1 + }, +/area/engineering/atmos) "mdG" = ( /obj/machinery/light/small/directional/north, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, @@ -50098,6 +50134,20 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/carpet, /area/service/library) +"mgU" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/obj/machinery/computer/atmos_control/plasma_tank{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/engineering/atmos) "mgW" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -50294,6 +50344,10 @@ /obj/machinery/atmospherics/components/trinary/filter/atmos/co2, /turf/open/floor/iron/dark, /area/engineering/atmos) +"mjh" = ( +/obj/machinery/air_sensor/oxygen_tank, +/turf/open/floor/engine/o2, +/area/engineering/atmos) "mjv" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -51326,6 +51380,12 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron, /area/maintenance/port/greater) +"mAf" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/monitored/air_output{ + dir = 4 + }, +/turf/open/floor/engine/air, +/area/engineering/atmos) "mAl" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -52697,6 +52757,17 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/engineering/atmos) +"mXV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/visible, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/meter/monitored/distro_loop, +/turf/open/floor/iron/dark/corner, +/area/engineering/atmos/pumproom) "mXW" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -55606,12 +55677,6 @@ }, /turf/open/floor/iron, /area/commons/storage/primary) -"nUg" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/plasma_input{ - dir = 4 - }, -/turf/open/floor/engine/plasma, -/area/engineering/atmos) "nUj" = ( /obj/structure/table/reinforced, /obj/item/stock_parts/matter_bin{ @@ -57150,6 +57215,12 @@ /obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/commons/storage/tools) +"oqC" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/nitrogen_input{ + dir = 4 + }, +/turf/open/floor/engine/n2, +/area/engineering/atmos) "oqI" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -57257,12 +57328,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/science/research) -"orZ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/carbon_output{ - dir = 4 - }, -/turf/open/floor/engine/co2, -/area/engineering/atmos) "osb" = ( /obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ dir = 4 @@ -57329,6 +57394,21 @@ }, /turf/open/floor/carpet, /area/command/bridge) +"osI" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/obj/machinery/computer/atmos_control/nitrous_tank{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/iron/white/corner{ + dir = 1 + }, +/area/engineering/atmos) "osJ" = ( /turf/closed/wall/r_wall, /area/engineering/atmos/storage/gas) @@ -57688,12 +57768,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/fore) -"ozg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/plasma_output{ - dir = 4 - }, -/turf/open/floor/engine/plasma, -/area/engineering/atmos) "ozy" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ @@ -57923,10 +57997,6 @@ }, /turf/open/floor/iron, /area/maintenance/port/greater) -"oDi" = ( -/obj/machinery/air_sensor/atmos/nitrogen_tank, -/turf/open/floor/engine/n2, -/area/engineering/atmos) "oDy" = ( /obj/structure/cable, /obj/structure/chair/office{ @@ -58030,13 +58100,6 @@ }, /turf/open/floor/iron, /area/engineering/atmos/pumproom) -"oFC" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/meter/atmos/layer4, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) "oFG" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/landmark/start/hangover, @@ -58114,12 +58177,6 @@ /obj/structure/flora/ausbushes/leafybush, /turf/open/misc/grass, /area/hallway/primary/fore) -"oHH" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/carbon_input{ - dir = 4 - }, -/turf/open/floor/engine/co2, -/area/engineering/atmos) "oHM" = ( /turf/closed/wall, /area/cargo/lobby) @@ -58537,6 +58594,12 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, /area/commons/fitness/recreation) +"oOj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/plasma_output{ + dir = 4 + }, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) "oOB" = ( /obj/structure/chair/office{ dir = 1 @@ -59593,12 +59656,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/white, /area/maintenance/department/science) -"pfb" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/mix_output{ - dir = 4 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) "pff" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -59664,6 +59721,10 @@ }, /turf/open/floor/iron, /area/engineering/atmos/project) +"pgd" = ( +/obj/machinery/air_sensor/mix_tank, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) "pgo" = ( /obj/structure/railing, /obj/effect/turf_decal/siding/wood/corner{ @@ -59818,12 +59879,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/security/courtroom) -"pje" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrous_input{ - dir = 4 - }, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) "pjg" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -60236,6 +60291,21 @@ }, /turf/open/floor/iron, /area/engineering/main) +"prz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "External Docking Port" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/secondary/entry) "prT" = ( /obj/effect/turf_decal/tile/green, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -63538,10 +63608,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/maintenance/starboard/aft) -"qnx" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/ordnance_mixing_input, -/turf/open/floor/engine/vacuum, -/area/science/mixing/chamber) "qnz" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -63928,12 +63994,6 @@ /obj/machinery/firealarm/directional/west, /turf/open/floor/iron/white, /area/medical/surgery/theatre) -"quF" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrogen_input{ - dir = 4 - }, -/turf/open/floor/engine/n2, -/area/engineering/atmos) "quO" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -64034,6 +64094,10 @@ /obj/structure/bookcase/random/adult, /turf/open/floor/wood, /area/service/library) +"qwc" = ( +/obj/machinery/air_sensor/ordnance_mixing_tank, +/turf/open/floor/engine/vacuum, +/area/science/mixing/chamber) "qwk" = ( /obj/structure/table, /obj/item/storage/box/bodybags, @@ -65046,6 +65110,12 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/ai_monitored/command/storage/eva) +"qNa" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/carbon_output{ + dir = 4 + }, +/turf/open/floor/engine/co2, +/area/engineering/atmos) "qNv" = ( /obj/effect/turf_decal/tile/brown/half/contrasted{ dir = 8 @@ -66254,12 +66324,6 @@ }, /turf/open/floor/iron/dark, /area/security/execution/education) -"reE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrogen_output{ - dir = 4 - }, -/turf/open/floor/engine/n2, -/area/engineering/atmos) "reN" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -66375,21 +66439,6 @@ }, /turf/open/floor/carpet, /area/command/heads_quarters/captain) -"rgA" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/computer/atmos_control/tank/air_tank{ - dir = 4 - }, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/engineering/atmos) "rgB" = ( /obj/structure/cable, /obj/machinery/light/small/directional/west, @@ -66414,18 +66463,6 @@ /obj/machinery/airalarm/directional/north, /turf/open/floor/iron, /area/commons/dorms) -"rgI" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/computer/atmos_control/incinerator{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 10 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/maintenance/disposal/incinerator) "rgL" = ( /obj/structure/cable, /turf/open/floor/circuit/green, @@ -67220,6 +67257,22 @@ dir = 1 }, /area/service/bar) +"rsA" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/hidden, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the Engine."; + dir = 4; + layer = 4; + name = "Engine Monitor"; + network = list("engine"); + pixel_x = -24 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/computer/atmos_control/nocontrol/master{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/engineering/atmos/storage/gas) "rsG" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -67502,10 +67555,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/security/office) -"rwr" = ( -/obj/machinery/air_sensor/atmos/mix_tank, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) "rwx" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -70893,6 +70942,10 @@ }, /turf/open/floor/iron, /area/command/heads_quarters/cmo) +"stY" = ( +/obj/machinery/air_sensor/nitrous_tank, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) "suu" = ( /obj/machinery/computer/security/mining{ dir = 1 @@ -72696,12 +72749,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/service/abandoned_gambling_den) -"sUH" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/mix_input{ - dir = 4 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) "sUK" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -72716,23 +72763,6 @@ /obj/effect/spawner/random/structure/crate_empty, /turf/open/floor/iron, /area/maintenance/port/greater) -"sUV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port"; - space_dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/secondary/entry) "sUX" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -74770,6 +74800,12 @@ /obj/item/taperecorder, /turf/open/floor/iron/dark, /area/service/library/abandoned) +"tyA" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/nitrous_input{ + dir = 4 + }, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) "tyD" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/sign/warning/pods{ @@ -75434,6 +75470,22 @@ /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plating, /area/commons/dorms) +"tJH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "External Docking Port"; + space_dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/iron, +/area/hallway/secondary/entry) "tJL" = ( /obj/machinery/light/small/directional/north, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -76240,6 +76292,12 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, /area/security/lockers) +"tXP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/mix_output{ + dir = 4 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) "tXR" = ( /turf/closed/wall, /area/service/electronic_marketing_den) @@ -76640,12 +76698,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/primary/central/aft) -"ufD" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/atmos/air_output{ - dir = 4 - }, -/turf/open/floor/engine/air, -/area/engineering/atmos) "ufL" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/siding/thinplating/dark{ @@ -77238,22 +77290,6 @@ }, /turf/open/floor/iron, /area/science/breakroom) -"unF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port"; - space_dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/iron, -/area/hallway/secondary/entry) "uoc" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -79442,12 +79478,6 @@ /obj/effect/turf_decal/tile/blue, /turf/open/floor/iron, /area/hallway/primary/central/aft) -"uYd" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/oxygen_output{ - dir = 4 - }, -/turf/open/floor/engine/o2, -/area/engineering/atmos) "uYe" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, @@ -79606,6 +79636,10 @@ }, /turf/open/floor/iron/white, /area/command/heads_quarters/cmo) +"vaK" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/ordnance_mixing_input, +/turf/open/floor/engine/vacuum, +/area/science/mixing/chamber) "vaO" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -79775,10 +79809,6 @@ /obj/effect/turf_decal/tile/yellow, /turf/open/floor/iron, /area/engineering/lobby) -"vdU" = ( -/obj/machinery/air_sensor/atmos/plasma_tank, -/turf/open/floor/engine/plasma, -/area/engineering/atmos) "vef" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ @@ -81184,19 +81214,6 @@ }, /turf/open/floor/iron, /area/security/lockers) -"vyN" = ( -/obj/machinery/light/directional/east, -/obj/machinery/computer/atmos_control/ordnancemix{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/science/mixing) "vyP" = ( /obj/structure/cable, /turf/open/floor/engine, @@ -81359,6 +81376,23 @@ /obj/effect/turf_decal/tile/red/half/contrasted, /turf/open/floor/iron, /area/service/kitchen/abandoned) +"vBn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "External Docking Port"; + space_dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/iron, +/area/hallway/secondary/entry) "vBw" = ( /obj/machinery/meter, /obj/effect/turf_decal/tile/yellow{ @@ -83138,22 +83172,6 @@ }, /turf/open/floor/iron, /area/security/prison/safe) -"weP" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/computer/atmos_control/tank/oxygen_tank{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/engineering/atmos) "wfb" = ( /obj/effect/spawner/random/vending/colavend, /turf/open/floor/iron/cafeteria, @@ -83369,20 +83387,18 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/engineering/main) -"wkc" = ( +"wkb" = ( /obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/obj/machinery/computer/atmos_control/tank/nitrous_tank{ +/obj/machinery/computer/atmos_control/carbon_tank{ dir = 4 }, /obj/structure/window/reinforced{ dir = 8 }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron/white/corner{ - dir = 1 +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 }, +/turf/open/floor/iron/dark, /area/engineering/atmos) "wkl" = ( /obj/effect/turf_decal/tile/neutral, @@ -84828,22 +84844,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/engineering/storage_shared) -"wIp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port" - }, -/turf/open/floor/iron, -/area/hallway/secondary/entry) "wIs" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -85417,6 +85417,15 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/hallway/primary/central/fore) +"wSw" = ( +/obj/structure/cable, +/obj/machinery/igniter/incinerator_atmos, +/obj/machinery/air_sensor/incinerator_tank{ + pixel_x = -32; + pixel_y = 32 + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) "wSA" = ( /obj/structure/disposalpipe/segment{ dir = 9 @@ -85945,10 +85954,6 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron, /area/maintenance/port/fore) -"xaQ" = ( -/obj/machinery/air_sensor/atmos/nitrous_tank, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) "xaR" = ( /obj/structure/disposalpipe/segment{ dir = 6 @@ -87031,6 +87036,12 @@ }, /turf/open/floor/iron, /area/engineering/atmos/hfr_room) +"xur" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/oxygen_input{ + dir = 4 + }, +/turf/open/floor/engine/o2, +/area/engineering/atmos) "xuB" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -87925,6 +87936,12 @@ /obj/structure/table, /turf/open/floor/iron/cafeteria, /area/service/kitchen) +"xIF" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/plasma_input{ + dir = 4 + }, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) "xIG" = ( /obj/machinery/light/small/directional/north, /obj/effect/decal/cleanable/dirt, @@ -88067,6 +88084,12 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/large, /area/service/hydroponics) +"xKA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrogen_output{ + dir = 4 + }, +/turf/open/floor/engine/n2, +/area/engineering/atmos) "xKO" = ( /turf/open/floor/iron, /area/science/misc_lab/range) @@ -88885,23 +88908,6 @@ }, /turf/open/floor/iron, /area/service/abandoned_gambling_den) -"xXk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port"; - space_dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/iron, -/area/hallway/secondary/entry) "xXn" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/engine/vacuum, @@ -88910,12 +88916,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/engineering/atmos) -"xXy" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrous_output{ - dir = 4 - }, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) "xXz" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -96254,7 +96254,7 @@ bLw aaa bPC bRz -oFC +aAh krT xRo caa @@ -110595,8 +110595,8 @@ aaa aaa aRo aMu -iPi -aPx +wSw +cok aFr aaa qYo @@ -110859,37 +110859,37 @@ vVc vVc vVc vFd -uYd -kWr -kLa +eAg +mjh +xur vFd -reE -oDi -quF +xKA +fhK +oqC vFd -gSF -itU -ufD +eoW +lLn +mAf vFd aad vFd -orZ -iGx -oHH +qNa +bsL +gLQ vFd -ozg -vdU -nUg +oOj +gAv +xIF vFd -xXy -xaQ -pje +eeU +stY +tyA vFd yfC vFd -sUH -rwr -pfb +faC +pgd +tXP vFd vVc aTm @@ -111624,7 +111624,7 @@ vGg kmD qNN izH -rgI +dwr txe oAL aFr @@ -111916,7 +111916,7 @@ veJ pvP sXW bFD -lUw +krH eFo fiJ pFk @@ -112145,29 +112145,29 @@ aFr sxy rau olt -weP +cjY lyw oeR ujc -ftn +jje uBj oeR kuW -rgA +mdC gpo wZg pIC bvM nVa -inv +wkb mjf oeR cdZ -cyy +mgU ogE tZT vso -wkc +osI szD iuU gkj @@ -116288,7 +116288,7 @@ kut pvw mfi oLj -jXp +rsA wfS osJ kfN @@ -117044,12 +117044,12 @@ teR fzS iSU bNX -jnc +eOK lRf rwZ dJs gkA -eIR +mXV ocl pjg bDH @@ -122261,7 +122261,7 @@ xOo drT dtm xWj -vyN +iHE byh byh byh @@ -122390,14 +122390,14 @@ aaO abf adq aaO -jnv +prz aaO aeX lNY rjG agl aaO -jnv +prz aaO ads abf @@ -122772,7 +122772,7 @@ cOR qYo svv sfo -qnx +vaK efb hSn efb @@ -122904,14 +122904,14 @@ aad aad aad aaO -unF +tJH aaO aad aaa aaa aad aaO -xXk +vBn aaO aad aad @@ -123029,7 +123029,7 @@ cNp qYo svv oYI -exE +qwc oIE lyU fpQ @@ -127016,14 +127016,14 @@ aaO abf adq aaO -wIp +hCL aaO xdz aLX eNC rOC aaO -wIp +hCL aaO ads abf @@ -127530,14 +127530,14 @@ qYo qYo qYo aaO -sUV +geL aaO qYo aaa aaa qYo aaO -sUV +geL aaO aaa aaa diff --git a/_maps/map_files/IceBoxStation/IceBoxStation.dmm b/_maps/map_files/IceBoxStation/IceBoxStation.dmm index 3ced3db438c..811bfa3b6f2 100644 --- a/_maps/map_files/IceBoxStation/IceBoxStation.dmm +++ b/_maps/map_files/IceBoxStation/IceBoxStation.dmm @@ -279,6 +279,15 @@ "abA" = ( /turf/open/floor/plating, /area/security/prison/safe) +"abJ" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/science/mixing/hallway) "abN" = ( /obj/machinery/recharge_station, /turf/open/floor/iron/dark, @@ -511,12 +520,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron, /area/ai_monitored/security/armory) -"ado" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) "ads" = ( /obj/structure/toilet/greyscale{ dir = 4 @@ -1229,6 +1232,10 @@ }, /turf/open/floor/iron, /area/security/brig) +"aiR" = ( +/obj/structure/sign/poster/contraband/random/directional/east, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) "aiS" = ( /obj/machinery/hydroponics/soil, /obj/item/cultivator, @@ -2860,6 +2867,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/port/fore) +"atQ" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/sign/poster/official/random/directional/north, +/turf/open/floor/iron, +/area/hallway/primary/starboard) "atS" = ( /obj/effect/landmark/event_spawn, /obj/effect/turf_decal/stripes/corner{ @@ -3016,6 +3031,9 @@ /obj/structure/cable, /turf/open/floor/plating, /area/ai_monitored/security/armory) +"avC" = ( +/turf/closed/wall, +/area/cargo/lobby) "avE" = ( /obj/machinery/door/poddoor/preopen{ id = "maint3" @@ -3300,16 +3318,6 @@ "ayT" = ( /turf/closed/wall, /area/medical/surgery/aft) -"ayX" = ( -/obj/machinery/computer/atmos_control/tank/mix_tank{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/iron, -/area/engineering/atmos/pumproom) "ayY" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -3370,6 +3378,12 @@ /obj/structure/cable, /turf/open/floor/iron/white/corner, /area/hallway/secondary/entry) +"azF" = ( +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/iron/white/side{ + dir = 10 + }, +/area/science/research) "azI" = ( /obj/machinery/camera/directional/east{ c_tag = "Prison Cell Block East"; @@ -3640,11 +3654,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/hallway/secondary/entry) -"aCm" = ( -/obj/structure/flora/rock, -/obj/structure/window/reinforced/spawner, -/turf/open/misc/asteroid/snow/icemoon, -/area/maintenance/port/aft) "aCp" = ( /obj/machinery/camera/directional/east{ c_tag = "Arrivals North" @@ -3665,18 +3674,6 @@ /obj/item/toy/gun, /turf/open/floor/iron, /area/commons/locker) -"aCD" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Gateway" - }, -/obj/structure/table, -/obj/structure/sign/warning/biohazard{ - pixel_x = -32 - }, -/obj/item/storage/medkit/regular, -/obj/item/paper/pamphlet/gateway, -/turf/open/floor/iron, -/area/command/gateway) "aCJ" = ( /obj/structure/table, /obj/machinery/door/poddoor/shutters{ @@ -4809,10 +4806,6 @@ /obj/structure/closet/firecloset, /turf/open/floor/iron, /area/hallway/primary/port) -"aPT" = ( -/obj/structure/sign/poster/contraband/random/directional/west, -/turf/open/floor/plating, -/area/maintenance/department/medical/central) "aQl" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/tile/yellow{ @@ -4865,6 +4858,16 @@ }, /turf/open/floor/iron/white, /area/science/xenobiology) +"aQz" = ( +/obj/machinery/power/smes/engineering, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/obj/structure/sign/warning/electricshock{ + pixel_y = 32 + }, +/turf/open/floor/iron/dark/textured, +/area/engineering/engine_smes) "aQG" = ( /obj/structure/sign/warning/vacuum/external{ pixel_y = 32 @@ -4950,6 +4953,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/security/prison) +"aSN" = ( +/obj/effect/turf_decal/bot_white/left, +/obj/structure/closet/crate/silvercrate, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ai_monitored/command/nuke_storage) "aTa" = ( /obj/structure/table, /obj/effect/turf_decal/tile/red, @@ -5546,6 +5555,17 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron/dark, /area/security/execution/education) +"bbI" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/cargo/lobby) "bbJ" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -5563,11 +5583,6 @@ /obj/item/clothing/mask/gas, /turf/open/floor/plating, /area/command/teleporter) -"bbV" = ( -/obj/item/chair/wood, -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/floor/wood, -/area/maintenance/port/aft) "bce" = ( /turf/open/floor/iron/dark, /area/security/execution/education) @@ -5753,6 +5768,17 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) +"beQ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 10 + }, +/obj/effect/turf_decal/siding/wideplating/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/iron, +/area/engineering/atmos/pumproom) "beX" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron, @@ -5766,29 +5792,6 @@ "bfv" = ( /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/ai_upload) -"bfD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/table, -/obj/item/storage/medkit/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/storage/medkit/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/storage/medkit/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/healthanalyzer, -/obj/item/healthanalyzer, -/obj/item/healthanalyzer, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron, -/area/science/robotics/lab) "bfF" = ( /turf/closed/wall, /area/medical/pharmacy) @@ -5833,10 +5836,6 @@ "bgc" = ( /turf/closed/wall/r_wall, /area/science/lab) -"bgd" = ( -/obj/structure/sign/poster/random/directional/south, -/turf/open/floor/iron, -/area/maintenance/starboard/fore) "bge" = ( /obj/effect/landmark/blobstart, /obj/structure/cable, @@ -6062,6 +6061,14 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) +"bjh" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/meter/layer4, +/turf/open/floor/plating, +/area/maintenance/fore/lesser) "bjI" = ( /obj/structure/chair, /obj/effect/turf_decal/stripes/line{ @@ -6105,11 +6112,28 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/circuit, /area/science/robotics/mechbay) +"bkn" = ( +/obj/machinery/piratepad/civilian, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/loading_area, +/turf/open/floor/iron, +/area/cargo/lobby) "bkA" = ( /obj/effect/landmark/event_spawn, /mob/living/simple_animal/bot/secbot/beepsky/armsky, /turf/open/floor/iron, /area/ai_monitored/security/armory) +"bkG" = ( +/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, +/obj/effect/turf_decal/siding/wideplating{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/engineering/atmos/pumproom) "bkR" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -6126,6 +6150,11 @@ }, /turf/open/floor/iron, /area/hallway/primary/port) +"blg" = ( +/obj/machinery/space_heater, +/obj/structure/sign/poster/official/random/directional/east, +/turf/open/floor/grass, +/area/maintenance/starboard/aft) "bli" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -6250,12 +6279,6 @@ }, /turf/open/floor/iron, /area/science/robotics/lab) -"bnj" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/commons/locker) "bnn" = ( /obj/structure/table, /obj/item/ai_module/supplied/quarantine, @@ -6309,14 +6332,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/ai) -"bom" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible, -/turf/open/floor/plating, -/area/engineering/atmos/pumproom) "bon" = ( /turf/closed/wall/r_wall, /area/science/genetics) @@ -6457,14 +6472,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/showroomfloor, /area/security/lockers) -"bqH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/commons/locker) "bqL" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/firedoor, @@ -6560,6 +6567,16 @@ /obj/structure/bodycontainer/morgue, /turf/open/floor/iron/dark, /area/science/robotics/lab) +"bsP" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wideplating{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/engineering/atmos/pumproom) "bsQ" = ( /turf/open/floor/iron/dark, /area/science/robotics/lab) @@ -6570,6 +6587,10 @@ }, /turf/open/floor/iron/dark, /area/science/robotics/lab) +"bsW" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/cargo/lobby) "bta" = ( /obj/structure/cable, /turf/open/floor/iron/white/side{ @@ -6793,13 +6814,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/science/misc_lab) -"bvY" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/rack, -/obj/item/storage/briefcase, -/obj/item/paicard, -/turf/open/floor/iron, -/area/commons/locker) "bwb" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -6830,6 +6844,14 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron, /area/hallway/primary/central) +"bwB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/computer/atmos_control/nocontrol/incinerator{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/maintenance/disposal/incinerator) "bwE" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -6936,6 +6958,10 @@ }, /turf/open/floor/iron, /area/maintenance/disposal/incinerator) +"byA" = ( +/obj/machinery/air_sensor/nitrogen_tank, +/turf/open/floor/engine/n2, +/area/engineering/atmos) "byH" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -7095,6 +7121,10 @@ /obj/structure/cable, /turf/open/floor/iron, /area/hallway/primary/central) +"bBo" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/closed/wall, +/area/maintenance/starboard/fore) "bBp" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -7164,6 +7194,15 @@ /obj/structure/filingcabinet/chestdrawer, /turf/open/floor/iron, /area/command/heads_quarters/hop) +"bCT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating{ + dir = 4 + }, +/turf/open/floor/iron, +/area/engineering/atmos/pumproom) "bCV" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ @@ -7190,20 +7229,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/hallway/primary/port) -"bDg" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/iron, -/area/cargo/sorting) "bDi" = ( /obj/effect/turf_decal/siding/wood, /obj/effect/turf_decal/siding/wood{ @@ -7456,26 +7481,13 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating/icemoon, /area/maintenance/solars/port/aft) -"bGJ" = ( -/obj/machinery/air_sensor/atmos/incinerator_tank{ - pixel_x = -32; - pixel_y = -32 - }, -/obj/machinery/igniter{ - id = "Incinerator" - }, +"bGO" = ( +/obj/structure/closet/secure_closet/engineering_chief, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"bGS" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/incinerator_input{ - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) +/turf/open/floor/iron/dark, +/area/command/heads_quarters/ce) "bGU" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/iron, @@ -7570,11 +7582,6 @@ /obj/structure/plasticflaps/opaque, /turf/open/floor/iron, /area/maintenance/starboard/upper) -"bIk" = ( -/obj/structure/table, -/obj/item/storage/medkit/regular, -/turf/open/floor/iron, -/area/commons/fitness) "bIv" = ( /obj/structure/railing{ dir = 4 @@ -7599,6 +7606,16 @@ /obj/structure/cable, /turf/open/floor/plating, /area/engineering/lobby) +"bIF" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/iron/white/smooth_large, +/area/service/kitchen/diner) "bIM" = ( /obj/effect/landmark/event_spawn, /obj/structure/disposalpipe/segment{ @@ -7753,6 +7770,10 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron/white, /area/science/xenobiology) +"bLh" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/iron, +/area/cargo/lobby) "bLq" = ( /turf/closed/indestructible/riveted{ desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; @@ -7798,20 +7819,6 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/science/xenobiology) -"bMt" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4; - name = "Unfiltered & Air to Mix" - }, -/turf/open/floor/iron, -/area/engineering/atmos/pumproom) "bMu" = ( /obj/machinery/door/poddoor/incinerator_ordmix, /turf/open/floor/engine/vacuum, @@ -7938,17 +7945,6 @@ }, /turf/open/floor/iron, /area/engineering/atmos) -"bPj" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 5; - height = 7; - id = "supply_home"; - name = "Cargo Bay"; - width = 12 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) "bPs" = ( /obj/machinery/light/small/directional/west, /turf/open/floor/iron/dark, @@ -8091,6 +8087,11 @@ /obj/structure/grille/broken, /turf/open/floor/plating, /area/maintenance/port/aft) +"bSq" = ( +/obj/machinery/module_duplicator, +/obj/structure/sign/poster/official/random/directional/south, +/turf/open/floor/iron, +/area/science/misc_lab) "bSs" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, @@ -8177,16 +8178,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/tcommsat/computer) -"bTU" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible{ - dir = 4 +"bUd" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Mix Outlet Pump" }, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/obj/effect/turf_decal/siding/wideplating{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, +/turf/open/floor/glass/reinforced, /area/engineering/atmos/pumproom) "bUt" = ( /obj/structure/cable, @@ -8260,6 +8257,17 @@ /obj/machinery/atmospherics/components/unary/portables_connector/visible, /turf/open/floor/plating, /area/maintenance/port/aft) +"bVG" = ( +/obj/item/clothing/suit/hooded/wintercoat, +/obj/effect/decal/remains/human, +/obj/item/clothing/head/beanie/orange{ + pixel_y = 8 + }, +/obj/item/clothing/shoes/wheelys/skishoes{ + pixel_y = -8 + }, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) "bVJ" = ( /turf/closed/wall/r_wall, /area/tcommsat/computer) @@ -8366,6 +8374,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/maintenance/port/aft) +"bXy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/kirbyplants/random, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/sign/poster/official/random/directional/south, +/turf/open/floor/iron/dark, +/area/science/breakroom) "bXz" = ( /obj/machinery/telecomms/processor/preset_four, /turf/open/floor/iron/dark/telecomms, @@ -8422,6 +8439,10 @@ }, /turf/open/floor/iron, /area/cargo/sorting) +"bYp" = ( +/obj/structure/statue/snow/snowman, +/turf/open/misc/asteroid/snow/standard_air, +/area/science/research) "bYr" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" @@ -8496,6 +8517,12 @@ }, /turf/open/floor/engine, /area/science/misc_lab) +"bZe" = ( +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/iron, +/area/commons/locker) "bZj" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, /turf/open/floor/plating, @@ -8863,12 +8890,6 @@ }, /turf/open/floor/iron, /area/tcommsat/computer) -"ceJ" = ( -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/command/gateway) "ceQ" = ( /obj/structure/training_machine, /obj/effect/landmark/blobstart, @@ -8893,6 +8914,10 @@ }, /turf/open/floor/iron/cafeteria, /area/service/kitchen) +"cfl" = ( +/obj/structure/cable, +/turf/open/floor/wood/parquet, +/area/service/bar/atrium) "cfv" = ( /obj/machinery/door/airlock/maintenance{ name = "Firefighting Equipment"; @@ -8959,16 +8984,6 @@ /obj/structure/closet/firecloset, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"chI" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/structure/sign/poster/official/random/directional/north, -/turf/open/floor/wood, -/area/hallway/secondary/service) "chN" = ( /obj/structure/cable, /turf/open/floor/plating, @@ -8981,20 +8996,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/solars/port/aft) -"chU" = ( -/obj/docking_port/stationary/random/icemoon{ - dir = 4; - id = "pod_4_lavaland"; - name = "lavaland" - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"cie" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/commons/locker) "ciB" = ( /obj/structure/railing/corner, /obj/machinery/firealarm/directional/west, @@ -9055,6 +9056,17 @@ /obj/structure/sign/warning/electricshock, /turf/closed/wall/r_wall, /area/maintenance/starboard/aft) +"cjK" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/fire{ + pixel_x = 32 + }, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/iron, +/area/science/mixing) "cks" = ( /obj/structure/cable, /turf/open/floor/plating, @@ -9215,12 +9227,6 @@ }, /turf/open/floor/iron/white, /area/science/genetics) -"cnD" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/commons/locker) "cnF" = ( /obj/structure/bookcase{ name = "Forbidden Knowledge" @@ -9233,6 +9239,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark/textured, /area/science/mixing) +"coa" = ( +/obj/effect/spawner/random/trash/mess, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/sign/poster/contraband/random/directional/east, +/turf/open/floor/iron, +/area/maintenance/starboard/fore) "cob" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, @@ -9385,6 +9397,11 @@ }, /turf/open/floor/iron/white, /area/maintenance/port/fore) +"cqH" = ( +/obj/machinery/modular_computer/console/preset/cargochat/engineering, +/obj/effect/turf_decal/tile/brown/fourcorners, +/turf/open/floor/iron/dark, +/area/engineering/lobby) "cqN" = ( /obj/effect/landmark/start/assistant, /obj/structure/chair/pew{ @@ -9417,6 +9434,16 @@ /obj/item/storage/fancy/cigarettes, /turf/open/floor/plating, /area/maintenance/port/aft) +"crF" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "Air to Mix" + }, +/obj/effect/turf_decal/siding/wideplating{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/engineering/atmos/pumproom) "crG" = ( /obj/item/clothing/suit/apron/surgical, /turf/open/floor/plating{ @@ -9434,12 +9461,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/central) -"crV" = ( -/obj/effect/spawner/random/trash/mess, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/iron, -/area/maintenance/port/aft) "csa" = ( /obj/structure/disposalpipe/segment{ dir = 9 @@ -9642,6 +9663,10 @@ "cuj" = ( /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/aisat_interior) +"cul" = ( +/obj/structure/grille/broken, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) "cum" = ( /obj/machinery/recharge_station, /turf/open/floor/plating, @@ -9849,15 +9874,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat/hallway) -"cvD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/cargo/lobby) "cvI" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -9992,6 +10008,14 @@ }, /turf/open/floor/iron, /area/ai_monitored/security/armory) +"cxB" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/hallway/primary/port) "cxJ" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 8 @@ -10064,13 +10088,6 @@ }, /turf/open/floor/iron/white, /area/science/xenobiology) -"cyC" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engineering/atmos/pumproom) "cyD" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -10091,11 +10108,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/medical/medbay/central) -"cyP" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/command/heads_quarters/ce) "cyR" = ( /obj/machinery/airalarm/directional/west, /obj/effect/turf_decal/trimline/blue/filled/line{ @@ -10129,6 +10141,12 @@ }, /turf/open/floor/iron, /area/engineering/atmos) +"czB" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) "czL" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -10324,13 +10342,6 @@ /obj/item/flashlight, /turf/open/floor/plating, /area/construction) -"cCc" = ( -/obj/machinery/vending/assist, -/obj/structure/sign/poster/random/directional/west, -/turf/open/floor/iron/cafeteria{ - dir = 8 - }, -/area/science/research) "cCd" = ( /turf/open/floor/iron, /area/construction) @@ -10401,11 +10412,15 @@ }, /turf/open/floor/iron, /area/hallway/primary/central) -"cEF" = ( -/obj/machinery/space_heater, -/obj/structure/sign/poster/official/random/directional/east, -/turf/open/floor/grass, -/area/maintenance/starboard/aft) +"cEJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/fore/lesser) "cFA" = ( /obj/structure/table/optable, /obj/machinery/light/directional/east, @@ -10451,12 +10466,6 @@ }, /turf/open/floor/iron/white, /area/science/mixing) -"cGd" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/random/maintenance, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/iron, -/area/cargo/lobby) "cGj" = ( /obj/structure/rack, /obj/effect/spawner/random/maintenance/three, @@ -10521,18 +10530,6 @@ }, /turf/open/floor/iron, /area/engineering/atmos/project) -"cHH" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 3; - height = 15; - id = "arrivals_stationary"; - name = "arrivals"; - roundstart_template = /datum/map_template/shuttle/arrival/box; - width = 7 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) "cHK" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/research/glass{ @@ -10726,6 +10723,24 @@ }, /turf/open/floor/plating, /area/service/hydroponics) +"cKz" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/engineering/atmos/pumproom) +"cKA" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/meter/layer4, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) "cKH" = ( /obj/structure/table, /obj/item/storage/toolbox/mechanical{ @@ -10860,18 +10875,6 @@ }, /turf/open/floor/iron, /area/engineering/atmos) -"cNd" = ( -/obj/item/airlock_painter, -/obj/structure/closet, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"cNh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/commons/locker) "cNw" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -10884,10 +10887,6 @@ }, /turf/open/floor/iron/white, /area/medical/medbay/aft) -"cNC" = ( -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) "cNW" = ( /turf/closed/wall, /area/maintenance/starboard/aft) @@ -10904,11 +10903,6 @@ "cOe" = ( /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cOk" = ( -/obj/machinery/atmospherics/components/binary/thermomachine/heater/on, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron, -/area/engineering/atmos/pumproom) "cOp" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -10930,15 +10924,6 @@ /obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/maintenance/fore/greater) -"cOJ" = ( -/obj/machinery/computer/atmos_control/tank/air_tank{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/white/corner, -/area/engineering/atmos) "cOT" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -11030,10 +11015,6 @@ /obj/machinery/newscaster/directional/east, /turf/open/floor/iron/white, /area/medical/cryo) -"cRg" = ( -/obj/item/stack/cable_coil, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) "cRN" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -11045,6 +11026,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/commons/dorms) +"cRQ" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) "cSo" = ( /obj/structure/ladder, /obj/effect/turf_decal/stripes/box, @@ -11183,6 +11168,11 @@ /obj/machinery/newscaster/directional/west, /turf/open/floor/iron, /area/hallway/primary/aft) +"cVB" = ( +/obj/structure/flora/rock, +/obj/structure/window/reinforced/spawner, +/turf/open/misc/asteroid/snow/icemoon, +/area/maintenance/port/aft) "cVC" = ( /obj/structure/closet/crate, /obj/effect/spawner/random/maintenance/two, @@ -11204,12 +11194,6 @@ }, /turf/open/floor/iron, /area/security/office) -"cVU" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) "cWt" = ( /turf/open/floor/plating, /area/maintenance/department/medical/central) @@ -11301,6 +11285,17 @@ /obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/iron/grimy, /area/ai_monitored/turret_protected/aisat_interior) +"cYK" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 5; + height = 7; + id = "supply_home"; + name = "Cargo Bay"; + width = 12 + }, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) "cZv" = ( /obj/machinery/computer/security/telescreen/entertainment/directional/north, /obj/structure/cable, @@ -11418,12 +11413,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/fore) -"daI" = ( -/obj/structure/sign/poster/contraband/random/directional/west, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/aft) "daL" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 4 @@ -11539,6 +11528,11 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/engineering/atmos) +"dcZ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/structure/sign/poster/random/directional/west, +/turf/open/floor/iron, +/area/engineering/atmos) "ddb" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -11548,13 +11542,6 @@ }, /turf/open/floor/iron/white, /area/science/robotics/lab) -"ddh" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/atmos/pumproom) "ddn" = ( /obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, @@ -11617,13 +11604,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/fore/greater) -"dfc" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Mix Outlet Pump" - }, -/turf/open/floor/glass/reinforced, -/area/engineering/atmos/pumproom) "dfh" = ( /turf/open/floor/carpet, /area/command/heads_quarters/hos) @@ -11653,12 +11633,6 @@ /obj/structure/chair, /turf/open/floor/iron/large, /area/service/kitchen/diner) -"dfE" = ( -/obj/effect/turf_decal/bot_white/left, -/obj/structure/closet/crate/silvercrate, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ai_monitored/command/nuke_storage) "dfM" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plating, @@ -11803,17 +11777,6 @@ icon_state = "panelscorched" }, /area/maintenance/port/aft) -"djp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/light/small/built/directional/south, -/obj/structure/mirror/directional/west, -/obj/structure/sign/poster/contraband/random/directional/south, -/turf/open/floor/iron/white, -/area/maintenance/port/fore) "dju" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ dir = 9 @@ -11832,13 +11795,6 @@ }, /turf/open/floor/iron, /area/commons/fitness) -"djM" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Mix to Filter" - }, -/turf/open/floor/glass/reinforced, -/area/engineering/atmos/pumproom) "djT" = ( /obj/effect/turf_decal/tile/red{ dir = 8 @@ -11846,17 +11802,6 @@ /obj/machinery/light/directional/south, /turf/open/floor/iron, /area/security/brig) -"dkb" = ( -/obj/machinery/computer/station_alert{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen/ce{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/command/heads_quarters/ce) "dki" = ( /obj/structure/table/wood, /obj/item/storage/box/matches, @@ -11881,6 +11826,16 @@ }, /turf/open/floor/iron, /area/commons/locker) +"dkC" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/sign/poster/contraband/random/directional/east, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/maintenance/starboard/fore) "dkQ" = ( /obj/machinery/door/airlock/atmos{ name = "Atmospherics Maintenance"; @@ -11947,6 +11902,13 @@ }, /turf/open/floor/iron/large, /area/medical/break_room) +"dlN" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ai_monitored/turret_protected/aisat/service) "dlO" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -11961,6 +11923,28 @@ /obj/structure/closet/emcloset, /turf/open/floor/plating, /area/maintenance/aft/greater) +"dmE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark/textured_large, +/area/science/storage) +"dnf" = ( +/obj/machinery/camera/directional/west{ + c_tag = "MiniSat External SouthEast"; + network = list("minisat"); + start_active = 1 + }, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"dno" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible, +/turf/open/floor/plating, +/area/engineering/atmos/pumproom) "dnp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -12166,6 +12150,10 @@ /obj/machinery/firealarm/directional/south, /turf/open/floor/iron/dark, /area/science/genetics) +"dsi" = ( +/obj/machinery/air_sensor/air_tank, +/turf/open/floor/engine/air, +/area/engineering/atmos) "dsK" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -12216,6 +12204,20 @@ }, /turf/open/floor/iron/white, /area/medical/treatment_center) +"duF" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/iron, +/area/cargo/sorting) "duH" = ( /obj/structure/railing{ dir = 4 @@ -12245,6 +12247,13 @@ }, /turf/open/floor/iron, /area/engineering/atmos) +"dvF" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark/textured_large, +/area/science/storage) "dvJ" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/yellow{ @@ -12346,13 +12355,13 @@ /obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/engineering/main) -"dyY" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/machinery/light/small/directional/north, -/turf/open/misc/asteroid/snow/icemoon, -/area/engineering/main) +"dzl" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/iron/dark/textured_large, +/area/science/storage) "dzn" = ( /obj/item/radio/intercom/directional/west, /obj/effect/turf_decal/tile/red{ @@ -12386,14 +12395,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/engineering/storage/tech) -"dzJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/atmos/pumproom) "dzP" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 1 @@ -12453,14 +12454,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/security/checkpoint/engineering) -"dAX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/supply/visible{ - dir = 1 - }, -/obj/machinery/newscaster/directional/north, -/obj/effect/turf_decal/siding/wideplating, -/turf/open/floor/iron, -/area/engineering/atmos/pumproom) "dBj" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -12502,6 +12495,12 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/engineering/atmos/project) +"dBN" = ( +/obj/structure/closet/bombcloset, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/structure/sign/poster/official/random/directional/north, +/turf/open/floor/iron/white, +/area/science/mixing) "dBX" = ( /obj/machinery/light/small/directional/east, /turf/open/floor/plating, @@ -12534,19 +12533,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron, /area/service/hydroponics) -"dCW" = ( -/obj/effect/spawner/random/entertainment/arcade{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/sign/poster/random/directional/west, -/turf/open/floor/iron/cafeteria, -/area/hallway/secondary/exit/departure_lounge) "dCY" = ( /obj/effect/landmark/start/security_officer, /obj/effect/turf_decal/tile/red{ @@ -12687,6 +12673,13 @@ /obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, /turf/open/floor/iron/cafeteria, /area/engineering/atmos) +"dFX" = ( +/obj/machinery/computer/piratepad_control/civilian{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/iron, +/area/cargo/lobby) "dFZ" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 @@ -12699,22 +12692,13 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/maintenance/port/aft) -"dGz" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/cable, -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/grenade/chem_grenade/smart_metal_foam, -/obj/item/grenade/chem_grenade/smart_metal_foam, -/turf/open/floor/iron/dark, -/area/engineering/engine_smes) "dGF" = ( /turf/closed/wall/r_wall, /area/science/mixing/chamber) +"dHb" = ( +/obj/structure/sign/poster/random/directional/south, +/turf/open/floor/iron, +/area/maintenance/starboard/fore) "dHe" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 8 @@ -12779,23 +12763,6 @@ }, /turf/open/floor/iron/dark, /area/medical/storage) -"dIZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/hallway/primary/central) -"dJx" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/machinery/suit_storage_unit/engine, -/turf/open/floor/iron/dark/textured, -/area/engineering/engine_smes) "dJA" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -12828,6 +12795,18 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/command/heads_quarters/rd) +"dKj" = ( +/obj/structure/safe, +/obj/item/clothing/head/bearpelt, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/gun/ballistic/revolver/russian, +/obj/item/ammo_box/a357, +/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka, +/obj/effect/turf_decal/bot_white/left, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ai_monitored/command/nuke_storage) "dKt" = ( /obj/structure/marker_beacon/burgundy, /turf/open/floor/plating/snowed/icemoon, @@ -12904,6 +12883,15 @@ }, /turf/open/floor/wood, /area/maintenance/aft/greater) +"dLJ" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "Waste In" + }, +/obj/effect/turf_decal/siding/wideplating{ + dir = 4 + }, +/turf/open/floor/iron, +/area/engineering/atmos/pumproom) "dLZ" = ( /obj/effect/turf_decal/tile/yellow{ dir = 1 @@ -12934,6 +12922,36 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) +"dME" = ( +/obj/item/storage/medkit/regular{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/medkit/regular, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/white, +/area/security/medical) +"dMP" = ( +/obj/structure/table/glass, +/obj/item/storage/medkit/brute{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/medkit/brute, +/obj/item/storage/medkit/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/blue/full, +/turf/open/floor/iron/dark/smooth_large, +/area/maintenance/department/medical) "dNq" = ( /obj/machinery/airalarm/directional/south, /obj/machinery/light/directional/south, @@ -13003,6 +13021,14 @@ }, /turf/open/floor/iron/white, /area/medical/surgery/fore) +"dOY" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/machinery/suit_storage_unit/engine, +/turf/open/floor/iron/dark/textured, +/area/engineering/engine_smes) "dPc" = ( /obj/structure/table, /obj/item/storage/box/monkeycubes{ @@ -13102,11 +13128,26 @@ /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, /area/maintenance/fore/lesser) +"dRM" = ( +/obj/structure/filingcabinet, +/obj/item/folder/documents, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ai_monitored/command/nuke_storage) "dRN" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/ai_monitored/command/storage/eva) +"dRO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/iron, +/area/commons/locker) "dRT" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp/green{ @@ -13181,6 +13222,10 @@ "dTN" = ( /turf/closed/wall/r_wall, /area/maintenance/department/medical/central) +"dUi" = ( +/obj/structure/grille, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) "dUo" = ( /obj/structure/sign/warning/nosmoking{ pixel_x = 32 @@ -13189,6 +13234,13 @@ dir = 10 }, /area/science/research) +"dVF" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/rack, +/obj/item/storage/briefcase, +/obj/item/paicard, +/turf/open/floor/iron, +/area/commons/locker) "dVN" = ( /obj/effect/landmark/start/assistant, /turf/open/floor/iron, @@ -13315,15 +13367,6 @@ /obj/machinery/camera/autoname/directional/east, /turf/open/floor/iron, /area/engineering/storage/tech) -"dZo" = ( -/obj/machinery/firealarm/directional/north, -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/airalarm/directional/east, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron, -/area/cargo/lobby) "dZu" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -13515,6 +13558,14 @@ "eeM" = ( /turf/open/floor/iron, /area/commons/storage/mining) +"eeS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/sign/poster/contraband/random/directional/east, +/turf/open/floor/plating, +/area/maintenance/port/aft) "eeY" = ( /obj/structure/closet/crate, /obj/item/target/alien, @@ -13557,6 +13608,10 @@ icon_state = "platingdmg3" }, /area/maintenance/starboard/aft) +"egk" = ( +/obj/effect/turf_decal/arrows, +/turf/open/floor/iron, +/area/cargo/lobby) "egw" = ( /obj/structure/cable, /turf/open/floor/plating, @@ -13615,12 +13670,6 @@ /obj/effect/landmark/start/depsec/science, /turf/open/floor/iron/dark, /area/security/checkpoint/science) -"ehm" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/mix_input{ - dir = 8 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) "ehA" = ( /obj/machinery/computer/message_monitor{ dir = 4 @@ -13725,12 +13774,6 @@ }, /turf/open/floor/iron/white, /area/maintenance/aft/greater) -"eja" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/glass/reinforced, -/area/engineering/atmos/pumproom) "eje" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -13768,6 +13811,14 @@ /obj/machinery/light/small/directional/south, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat_interior) +"ekb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible/layer4, +/obj/machinery/meter/layer4, +/turf/open/floor/plating, +/area/maintenance/fore/lesser) "ekt" = ( /obj/structure/window/reinforced{ dir = 4 @@ -13806,15 +13857,6 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/iron, /area/security/prison/safe) -"elq" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/science/mixing/hallway) "elr" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, @@ -13840,6 +13882,17 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) +"elx" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"elL" = ( +/obj/machinery/atmospherics/components/binary/thermomachine/heater/on, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron, +/area/engineering/atmos/pumproom) "elO" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -13877,14 +13930,6 @@ /obj/machinery/atmospherics/pipe/smart/simple/green/visible, /turf/open/floor/iron, /area/engineering/atmos) -"emx" = ( -/obj/machinery/camera/directional/east{ - c_tag = "MiniSat External NorthWest"; - network = list("minisat"); - start_active = 1 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) "emD" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -13998,12 +14043,10 @@ /obj/structure/cable, /turf/open/floor/iron, /area/security/prison) -"eoK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/poster/random/directional/north, +"eoG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible, /turf/open/floor/iron, -/area/hallway/primary/starboard) +/area/engineering/atmos/pumproom) "eoR" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, @@ -14110,12 +14153,6 @@ dir = 4 }, /area/engineering/transit_tube) -"ers" = ( -/obj/machinery/computer/station_alert, -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/engineering/engine_smes) "ert" = ( /obj/machinery/door/firedoor/heavy, /obj/effect/decal/cleanable/dirt, @@ -14127,6 +14164,13 @@ }, /turf/open/floor/plating/snowed/smoothed/icemoon, /area/icemoon/surface/outdoors/nospawn) +"erZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/meter/layer4, +/turf/open/floor/plating, +/area/maintenance/port/fore) "ese" = ( /obj/effect/landmark/event_spawn, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -14156,19 +14200,6 @@ /obj/machinery/light/small/directional/south, /turf/open/floor/engine/n2, /area/engineering/atmos) -"esN" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Chief Engineer"; - req_access_txt = "56" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark, -/area/command/heads_quarters/ce) "esO" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -14240,39 +14271,6 @@ /obj/machinery/recharge_station, /turf/open/floor/iron/freezer, /area/commons/toilet) -"evh" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/suit/armor/riot, -/obj/item/clothing/suit/armor/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/machinery/light/directional/north, -/obj/item/clothing/head/helmet/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/head/helmet/riot, -/obj/item/clothing/head/helmet/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/shield/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/shield/riot, -/obj/item/shield/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ai_monitored/security/armory) "evn" = ( /obj/machinery/computer/secure_data, /turf/open/floor/carpet, @@ -14397,11 +14395,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood, /area/service/lawoffice) -"eyk" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron/dark, -/area/commons/fitness) "eyy" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -14415,6 +14408,13 @@ /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, /area/maintenance/department/medical/central) +"eyH" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ai_monitored/turret_protected/aisat/atmos) "eyK" = ( /obj/effect/turf_decal/tile/yellow{ dir = 1 @@ -14443,6 +14443,25 @@ dir = 8 }, /area/service/chapel) +"ezB" = ( +/obj/machinery/camera/directional/north{ + c_tag = "MiniSat External South"; + network = list("minisat"); + start_active = 1 + }, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) +"ezW" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera/directional/south{ + c_tag = "Ordnance Lab South"; + network = list("ss13","rd") + }, +/obj/structure/sign/poster/random/directional/south, +/turf/open/floor/iron/dark/textured, +/area/science/mixing) "ezY" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -14514,9 +14533,25 @@ }, /turf/closed/wall, /area/engineering/transit_tube) +"eBO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/meter/layer4, +/turf/open/floor/plating, +/area/maintenance/fore/lesser) "eBR" = ( /turf/closed/wall/r_wall, /area/maintenance/central/greater) +"eBV" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/air_sensor/ordnance_mixing_tank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/vacuum, +/area/science/mixing/chamber) "eCe" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/directional/south, @@ -14564,6 +14599,10 @@ /obj/structure/grille, /turf/open/floor/plating, /area/maintenance/fore/greater) +"eDQ" = ( +/obj/structure/sign/poster/official/random/directional/east, +/turf/open/floor/iron, +/area/hallway/primary/central) "eEb" = ( /obj/structure/table, /obj/item/toy/cards/deck, @@ -14618,20 +14657,23 @@ /obj/effect/decal/cleanable/blood/old, /turf/open/floor/iron, /area/maintenance/port/fore) +"eGm" = ( +/obj/effect/landmark/carpspawn, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) "eGp" = ( /obj/structure/table/wood, /obj/effect/spawner/random/maintenance/four, /turf/open/floor/wood, /area/maintenance/port/aft) -"eGz" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access_txt = "10" +"eGB" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/bot{ + dir = 1 }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/cable, -/turf/open/misc/asteroid/snow/icemoon, -/area/maintenance/solars/port/fore) +/obj/machinery/power/port_gen/pacman, +/turf/open/floor/iron/dark, +/area/engineering/engine_smes) "eGI" = ( /obj/effect/turf_decal/loading_area{ dir = 8 @@ -14752,6 +14794,12 @@ /obj/effect/spawner/random/maintenance/eight, /turf/open/floor/plating, /area/maintenance/starboard/aft) +"eJt" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/oxygen_input{ + dir = 1 + }, +/turf/open/floor/engine/o2, +/area/engineering/atmos) "eJy" = ( /obj/machinery/door/poddoor/preopen{ id = "maint1" @@ -14811,6 +14859,11 @@ }, /turf/open/floor/iron/white, /area/medical/pharmacy) +"eLE" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/command/gateway) "eLP" = ( /obj/machinery/light_switch/directional/north, /turf/open/floor/circuit, @@ -14851,15 +14904,6 @@ }, /turf/open/floor/iron, /area/command/heads_quarters/hop) -"eNr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 8 - }, -/obj/effect/turf_decal/siding/wideplating{ - dir = 4 - }, -/turf/open/floor/iron, -/area/engineering/atmos/pumproom) "eNs" = ( /turf/open/floor/iron, /area/maintenance/port/fore) @@ -14936,6 +14980,10 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/upper) +"eQf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible, +/turf/open/floor/glass/reinforced, +/area/engineering/atmos/pumproom) "eQN" = ( /obj/effect/turf_decal/trimline/blue/filled/warning{ dir = 1 @@ -14954,27 +15002,6 @@ /obj/effect/landmark/xeno_spawn, /turf/open/floor/iron, /area/science/storage) -"eRs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/obj/machinery/holopad, -/obj/effect/landmark/start/depsec/medical, -/obj/machinery/button/door/directional/west{ - id = "MedbayFoyer"; - name = "Medbay Doors Control"; - normaldoorcontrol = 1; - pixel_x = -35; - pixel_y = -56 - }, -/turf/open/floor/iron/dark/smooth_large, -/area/security/checkpoint/medical) "eRC" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -15015,16 +15042,6 @@ /obj/effect/turf_decal/tile/blue/full, /turf/open/floor/iron/large, /area/medical/treatment_center) -"eRW" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 6 - }, -/obj/effect/turf_decal/siding/wideplating{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/engineering/atmos/pumproom) "eSj" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment, @@ -15097,22 +15114,6 @@ /obj/item/kirbyplants/random, /turf/open/floor/iron, /area/hallway/primary/starboard) -"eUI" = ( -/obj/item/storage/medkit/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/medkit/regular, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/white, -/area/security/medical) "eUL" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -15189,12 +15190,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white/side, /area/science/research) -"eWO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/atmos/air_output{ - dir = 1 - }, -/turf/open/floor/engine/air, -/area/engineering/atmos) "eWX" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -15259,6 +15254,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit, /area/ai_monitored/command/nuke_storage) +"eYJ" = ( +/obj/effect/turf_decal/bot_white/right, +/obj/machinery/ore_silo, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ai_monitored/command/nuke_storage) "eYL" = ( /obj/machinery/light/directional/east, /obj/machinery/status_display/evac/directional/east, @@ -15289,13 +15290,6 @@ /obj/effect/turf_decal/tile/red, /turf/open/floor/iron, /area/hallway/primary/fore) -"eZm" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/cargo/lobby) "eZt" = ( /obj/structure/table, /obj/machinery/cell_charger{ @@ -15387,13 +15381,6 @@ icon_state = "wood-broken3" }, /area/maintenance/port/fore) -"fck" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/iron/dark/textured_large, -/area/science/storage) "fco" = ( /obj/machinery/requests_console/directional/south{ department = "Tech Storage"; @@ -15538,6 +15525,27 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) +"ffN" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/iron, +/area/engineering/atmos/pumproom) "fgz" = ( /obj/machinery/light/directional/west, /obj/effect/turf_decal/stripes/corner{ @@ -15637,6 +15645,13 @@ /obj/machinery/rnd/production/circuit_imprinter/department/science, /turf/open/floor/iron/white, /area/science/robotics/lab) +"fiD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron, +/area/commons/locker) "fiN" = ( /obj/machinery/light/directional/west, /obj/structure/cable, @@ -15816,6 +15831,23 @@ /obj/structure/chair/stool/directional/north, /turf/open/floor/iron, /area/command/gateway) +"fnS" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/table, +/obj/item/crowbar/red, +/obj/item/stock_parts/cell/high{ + pixel_x = 6; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/sign/poster/random/directional/west, +/turf/open/floor/iron, +/area/hallway/primary/aft) "fnW" = ( /obj/structure/closet/secure_closet/freezer/kitchen/maintenance, /obj/effect/decal/cleanable/cobweb, @@ -15914,18 +15946,6 @@ /obj/machinery/light/small/directional/north, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"fqK" = ( -/obj/machinery/air_sensor/atmos/nitrous_tank, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) -"fqL" = ( -/obj/docking_port/stationary/random/icemoon{ - dir = 4; - id = "pod_3_lavaland"; - name = "lavaland" - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) "fqX" = ( /obj/structure/table/glass, /obj/machinery/computer/med_data/laptop, @@ -16038,6 +16058,12 @@ }, /turf/open/floor/iron, /area/cargo/storage) +"fvo" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/iron/dark/textured_large, +/area/science/storage) "fvu" = ( /turf/open/openspace, /area/medical/medbay/central) @@ -16082,20 +16108,6 @@ }, /turf/open/floor/plating, /area/cargo/sorting) -"fwD" = ( -/obj/machinery/light/directional/east, -/obj/structure/table, -/obj/item/toner, -/obj/item/hand_labeler, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/storage/box, -/obj/item/storage/box, -/obj/item/storage/box, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/iron, -/area/cargo/lobby) "fwM" = ( /obj/structure/chair, /turf/open/floor/iron/cafeteria, @@ -16145,11 +16157,6 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"fxl" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/commons/fitness) "fxo" = ( /obj/structure/table/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -16185,12 +16192,6 @@ /obj/structure/girder, /turf/open/floor/plating, /area/maintenance/port/aft) -"fxY" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/plating, -/area/maintenance/port/aft) "fya" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/tile/yellow{ @@ -16304,6 +16305,12 @@ "fzZ" = ( /turf/closed/wall, /area/command/teleporter) +"fAi" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/ordnance, +/obj/item/storage/medkit/toxin, +/turf/open/floor/iron, +/area/science/mixing) "fAD" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -16317,16 +16324,17 @@ }, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) +"fAO" = ( +/obj/machinery/power/tracker, +/obj/structure/cable, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) "fAP" = ( /obj/item/radio/intercom/directional/north, /turf/open/floor/iron/dark/corner{ dir = 1 }, /area/hallway/primary/starboard) -"fAQ" = ( -/obj/machinery/air_sensor/atmos/carbon_tank, -/turf/open/floor/engine/co2, -/area/engineering/atmos) "fBe" = ( /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/yellow{ @@ -16448,14 +16456,6 @@ }, /turf/open/floor/iron, /area/commons/storage/primary) -"fEZ" = ( -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/ai_monitored/turret_protected/ai_upload) "fFg" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -16468,13 +16468,6 @@ }, /turf/open/floor/iron/white, /area/medical/cryo) -"fFl" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/atmos/pumproom) "fFp" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 @@ -16790,12 +16783,6 @@ "fMZ" = ( /turf/open/floor/plating, /area/maintenance/port/greater) -"fNX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ - dir = 4 - }, -/turf/open/floor/glass/reinforced, -/area/engineering/atmos/pumproom) "fNY" = ( /obj/machinery/holopad, /turf/open/floor/iron, @@ -16819,6 +16806,17 @@ }, /turf/open/floor/iron, /area/engineering/atmos/storage/gas) +"fOy" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 6 + }, +/turf/open/floor/plating, +/area/engineering/atmos/pumproom) +"fOE" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron, +/area/cargo/lobby) "fOZ" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -16906,6 +16904,13 @@ /obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, /turf/closed/wall/r_wall, /area/engineering/atmos) +"fRe" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/rack, +/obj/effect/spawner/random/clothing/costume, +/obj/item/crowbar, +/turf/open/floor/iron, +/area/commons/locker) "fRg" = ( /obj/structure/window/reinforced{ dir = 1 @@ -17652,16 +17657,24 @@ }, /turf/open/floor/plating, /area/engineering/lobby) -"ghu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"ghz" = ( +/obj/item/stack/rods/fifty, +/obj/structure/rack, +/obj/item/stack/cable_coil{ + pixel_x = -3; + pixel_y = 3 }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/meter/atmos/layer4, -/turf/open/floor/plating, -/area/maintenance/fore/lesser) +/obj/item/stack/cable_coil{ + amount = 5 + }, +/obj/item/stack/sheet/mineral/plasma{ + amount = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/obj/structure/sign/poster/contraband/random/directional/north, +/turf/open/floor/iron, +/area/maintenance/department/electrical) "ghC" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -17679,10 +17692,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/grimy, /area/ai_monitored/turret_protected/aisat_interior) -"gim" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/cargo/lobby) "gip" = ( /obj/structure/sink/kitchen{ dir = 8; @@ -17696,24 +17705,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/command/teleporter) -"giH" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "packageSort2" - }, -/obj/machinery/requests_console/directional/west{ - department = "Cargo Bay"; - departmentType = 2; - name = "Cargo Bay Requests Console" - }, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/iron, -/area/cargo/sorting) "giZ" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 @@ -17735,6 +17726,44 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron/white/smooth_large, /area/service/kitchen/diner) +"gjh" = ( +/obj/structure/table/glass, +/obj/item/storage/medkit/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/medkit/toxin, +/obj/item/storage/medkit/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/northleft{ + icon_state = "right"; + name = "First-Aid Supplies"; + red_alert_access = 1; + req_access_txt = "5" + }, +/obj/effect/turf_decal/tile/blue/full, +/turf/open/floor/iron/dark/smooth_large, +/area/medical/storage) +"gjk" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/firealarm/directional/west, +/obj/structure/sign/poster/official/random/directional/south, +/turf/open/floor/iron, +/area/hallway/secondary/exit/departure_lounge) "gjy" = ( /obj/structure/table, /obj/machinery/light/directional/east, @@ -17745,16 +17774,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/hallway/secondary/exit/departure_lounge) -"gjJ" = ( -/obj/effect/turf_decal/tile/red/full, -/obj/structure/chair, -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/obj/structure/sign/poster/random/directional/west, -/turf/open/floor/iron/large, -/area/service/kitchen/diner) "gjM" = ( /obj/structure/ladder, /obj/effect/turf_decal/stripes/box, @@ -17839,6 +17858,17 @@ /obj/machinery/light/small/directional/east, /turf/open/floor/plating/snowed/icemoon, /area/cargo/miningdock) +"glW" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/camera/directional/north, +/turf/open/floor/plating, +/area/cargo/sorting) "gmc" = ( /obj/structure/sink{ dir = 8; @@ -17851,13 +17881,6 @@ /obj/structure/cable, /turf/open/floor/iron/freezer, /area/commons/toilet/locker) -"gmh" = ( -/obj/structure/closet/secure_closet/engineering_chief, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/command/heads_quarters/ce) "gmp" = ( /obj/structure/chair{ dir = 1 @@ -18107,11 +18130,6 @@ icon_state = "platingdmg2" }, /area/maintenance/department/medical/central) -"gsw" = ( -/obj/machinery/vending/wardrobe/gene_wardrobe, -/obj/structure/sign/poster/official/random/directional/north, -/turf/open/floor/iron/dark, -/area/science/genetics) "gsx" = ( /obj/structure/disposalpipe/trunk{ dir = 8 @@ -18151,6 +18169,27 @@ }, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) +"gtm" = ( +/obj/structure/table/reinforced, +/obj/item/assembly/timer{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/assembly/timer{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/assembly/timer{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/assembly/timer{ + pixel_x = -2; + pixel_y = -4 + }, +/obj/structure/sign/poster/official/random/directional/south, +/turf/open/floor/iron, +/area/science/mixing) "gtv" = ( /obj/structure/chair/office, /turf/open/floor/iron/grimy, @@ -18211,6 +18250,17 @@ }, /turf/open/floor/plating, /area/security/processing) +"gvM" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/engineering/glass{ + name = "Server Room"; + req_access_txt = "61" + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/tcommsat/computer) "gvP" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -18223,6 +18273,12 @@ icon_state = "damaged2" }, /area/icemoon/surface/outdoors/nospawn) +"gwW" = ( +/obj/machinery/meter/monitored/distro_loop, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, +/obj/effect/turf_decal/siding/wideplating, +/turf/open/floor/iron, +/area/engineering/atmos/pumproom) "gxu" = ( /obj/machinery/airalarm/directional/north, /obj/structure/rack, @@ -18266,19 +18322,32 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron/dark, /area/tcommsat/computer) -"gyI" = ( -/obj/machinery/computer/atmos_control{ +"gye" = ( +/obj/machinery/computer/atmos_control/oxygen_tank{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ dir = 8 }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/engineering/atmos/storage/gas) +/turf/open/floor/iron, +/area/engineering/atmos) +"gyg" = ( +/obj/structure/sign/poster/contraband/random/directional/east, +/turf/open/floor/plating, +/area/maintenance/fore/lesser) "gyJ" = ( /obj/machinery/power/terminal, /obj/machinery/light/small/directional/east, /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) +"gyM" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/nitrogen_input{ + dir = 1 + }, +/turf/open/floor/engine/n2, +/area/engineering/atmos) "gyT" = ( /obj/structure/closet/secure_closet/medical2, /turf/open/floor/iron, @@ -18323,6 +18392,11 @@ /obj/item/clothing/suit/ianshirt, /turf/open/floor/iron, /area/maintenance/starboard/fore) +"gAl" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron, +/area/commons/locker) "gAG" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -18449,6 +18523,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/engine, /area/science/mixing/chamber) +"gDk" = ( +/obj/docking_port/stationary/random/icemoon{ + dir = 8; + id = "pod_lavaland"; + name = "lavaland" + }, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/unexplored/rivers/no_monsters) "gDl" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -18505,10 +18587,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/wood, /area/hallway/secondary/service) -"gEB" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/commons/fitness) "gEX" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -18567,21 +18645,6 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, /area/commons/vacant_room/commissary) -"gFM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/atmos/glass{ - name = "Distribution Loop"; - req_access_txt = "24" - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/engineering/atmos/pumproom) "gFU" = ( /obj/structure/table/glass, /obj/structure/window/reinforced{ @@ -18633,12 +18696,12 @@ /obj/structure/cable, /turf/open/floor/iron, /area/commons/fitness) -"gHx" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/air_input{ +"gHC" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/ordnance_mixing_input{ dir = 1 }, -/turf/open/floor/engine/air, -/area/engineering/atmos) +/turf/open/floor/engine/vacuum, +/area/science/mixing/chamber) "gIb" = ( /obj/structure/rack, /obj/structure/disposalpipe/segment{ @@ -18656,21 +18719,6 @@ /obj/item/trash/popcorn, /turf/open/floor/plating, /area/maintenance/port/aft) -"gIr" = ( -/obj/machinery/light/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/commons/locker) -"gIt" = ( -/obj/structure/rack, -/obj/machinery/firealarm/directional/north, -/obj/item/gun/energy/e_gun/dragnet, -/obj/item/gun/energy/e_gun/dragnet, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ai_monitored/security/armory) "gIF" = ( /obj/structure/tank_dispenser{ pixel_x = -1 @@ -18711,12 +18759,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/science/storage) -"gJz" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/plasma_input{ - dir = 8 - }, -/turf/open/floor/engine/plasma, -/area/engineering/atmos) "gJL" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, @@ -18862,6 +18904,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/tcommsat/computer) +"gMl" = ( +/obj/structure/table/optable{ + name = "Robotics Operating Table" + }, +/obj/effect/landmark/event_spawn, +/obj/structure/sign/poster/official/random/directional/south, +/turf/open/floor/iron/dark, +/area/science/robotics/lab) "gMw" = ( /obj/structure/table/glass, /obj/item/storage/box/gloves{ @@ -18891,6 +18941,20 @@ /obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/maintenance/aft/greater) +"gNf" = ( +/obj/structure/rack, +/obj/item/storage/box/teargas{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/box/handcuffs, +/obj/item/storage/box/flashbangs{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ai_monitored/security/armory) "gNt" = ( /obj/structure/toilet{ dir = 4 @@ -18905,6 +18969,15 @@ /obj/item/clothing/under/costume/jabroni, /turf/open/floor/iron, /area/maintenance/starboard/fore) +"gNK" = ( +/obj/machinery/computer/atmos_control/nitrous_tank{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/iron/white/corner, +/area/engineering/atmos) "gNP" = ( /obj/machinery/airalarm/directional/east, /turf/open/floor/iron, @@ -19149,11 +19222,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark, /area/maintenance/starboard/aft) -"gTo" = ( -/obj/machinery/nuclearbomb/selfdestruct, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ai_monitored/command/nuke_storage) "gTp" = ( /obj/machinery/power/apc/auto_name/directional/west, /obj/structure/disposalpipe/segment, @@ -19276,21 +19344,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/science/misc_lab) -"gVB" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/fire{ - pixel_x = 32 - }, -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/iron, -/area/science/mixing) -"gVH" = ( -/obj/structure/sign/poster/contraband/random/directional/west, -/turf/open/floor/plating, -/area/maintenance/port/greater) "gVO" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -19322,6 +19375,14 @@ }, /turf/open/floor/iron/white, /area/science/mixing) +"gWp" = ( +/obj/machinery/computer/apc_control{ + dir = 4 + }, +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/command/heads_quarters/ce) "gWy" = ( /obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, /obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible{ @@ -19408,9 +19469,6 @@ /obj/effect/turf_decal/trimline/purple/filled/line, /turf/open/floor/iron/white, /area/science/mixing) -"gXW" = ( -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) "gYm" = ( /obj/machinery/door/airlock/maintenance{ name = "Security Maintenance"; @@ -19441,12 +19499,6 @@ /obj/item/storage/backpack/duffelbag/med/surgery, /turf/open/floor/iron/white, /area/medical/surgery/fore) -"gYw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/portable_atmospherics/canister/plasma, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark/textured_large, -/area/science/storage) "gYG" = ( /obj/structure/table/glass, /obj/machinery/light/directional/north, @@ -19545,12 +19597,6 @@ /obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/security/processing) -"gZz" = ( -/obj/effect/turf_decal/bot_white/right, -/obj/machinery/ore_silo, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ai_monitored/command/nuke_storage) "gZC" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -19582,6 +19628,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/science/misc_lab) +"hat" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engineering/atmos/pumproom) "hax" = ( /obj/effect/landmark/start/hangover, /turf/open/floor/iron/freezer, @@ -19610,6 +19663,29 @@ icon_state = "panelscorched" }, /area/maintenance/port/aft) +"hbg" = ( +/obj/structure/rack, +/obj/item/storage/box/rubbershot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/box/rubbershot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/box/rubbershot, +/obj/item/storage/box/rubbershot, +/obj/item/storage/box/rubbershot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/storage/box/rubbershot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ai_monitored/security/armory) "hbB" = ( /obj/machinery/door/airlock/mining/glass{ name = "Mining Dock"; @@ -19687,13 +19763,6 @@ }, /turf/open/floor/iron, /area/science/misc_lab) -"hdT" = ( -/obj/structure/filingcabinet, -/obj/item/folder/documents, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ai_monitored/command/nuke_storage) "hdW" = ( /turf/open/floor/wood/parquet, /area/service/bar/atrium) @@ -19738,6 +19807,15 @@ }, /turf/open/floor/iron/dark, /area/command/heads_quarters/cmo) +"heQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/port/greater) "heT" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, @@ -19865,6 +19943,35 @@ /obj/machinery/iv_drip, /turf/open/floor/iron/white, /area/medical/treatment_center) +"hgy" = ( +/obj/structure/sign/poster/contraband/random/directional/north, +/turf/open/floor/plating, +/area/maintenance/port/greater) +"hgK" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Science Ordnance Launch"; + network = list("ss13","rd") + }, +/obj/structure/table, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/item/computer_hardware/hard_drive/portable{ + pixel_x = -5; + pixel_y = 8 + }, +/obj/item/computer_hardware/hard_drive/portable{ + pixel_x = -2 + }, +/obj/item/computer_hardware/hard_drive/portable{ + pixel_x = 7; + pixel_y = 2 + }, +/obj/item/computer_hardware/hard_drive/portable{ + pixel_x = -8; + pixel_y = -3 + }, +/turf/open/floor/iron, +/area/science/mixing/launch) "hgT" = ( /obj/effect/landmark/start/librarian, /obj/structure/chair/office, @@ -19885,16 +19992,6 @@ /obj/effect/landmark/start/depsec/medical, /turf/open/floor/iron/dark/smooth_large, /area/security/checkpoint/medical) -"hhj" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/light/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/nosmoking{ - pixel_y = 32 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/iron/dark/textured_large, -/area/science/storage) "hhl" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, @@ -19940,6 +20037,12 @@ }, /turf/open/floor/iron, /area/science/lab) +"hka" = ( +/obj/structure/sign/warning/securearea{ + pixel_x = 32 + }, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) "hkc" = ( /obj/structure/table, /turf/open/floor/carpet, @@ -19960,14 +20063,6 @@ /obj/structure/rack, /turf/open/floor/plating, /area/maintenance/department/medical/central) -"hlN" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/floor/plating, -/area/maintenance/port/aft) "hlZ" = ( /obj/machinery/meter, /obj/effect/turf_decal/delivery, @@ -19987,6 +20082,15 @@ /obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/iron, /area/service/hydroponics/garden) +"hmi" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/iron/dark, +/area/engineering/engine_smes) "hmj" = ( /obj/structure/cable, /turf/open/floor/iron, @@ -20060,6 +20164,10 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/engineering/lobby) +"hoG" = ( +/obj/machinery/air_sensor/plasma_tank, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) "hoM" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" @@ -20146,6 +20254,11 @@ }, /turf/open/floor/iron, /area/cargo/office) +"hqr" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/sign/poster/contraband/random/directional/east, +/turf/open/floor/plating, +/area/maintenance/port/aft) "hqx" = ( /obj/effect/spawner/random/trash/mess, /turf/open/floor/iron, @@ -20295,10 +20408,20 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) +"htI" = ( +/obj/machinery/light/directional/north, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/iron/freezer, +/area/service/kitchen/coldroom) "htS" = ( /obj/structure/chair/stool/directional/north, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) +"htU" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/maintenance/aft/greater) "hua" = ( /turf/closed/wall/r_wall, /area/engineering/supermatter) @@ -20316,12 +20439,6 @@ /obj/structure/closet/crate/freezer/surplus_limbs, /turf/open/floor/iron/white, /area/medical/cryo) -"huy" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrogen_input{ - dir = 1 - }, -/turf/open/floor/engine/n2, -/area/engineering/atmos) "huA" = ( /obj/structure/table, /obj/machinery/firealarm/directional/north, @@ -20401,11 +20518,6 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron/freezer, /area/commons/toilet) -"hvU" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, -/area/commons/fitness) "hwc" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -20512,27 +20624,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"hyQ" = ( -/obj/structure/table/reinforced, -/obj/item/assembly/timer{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/item/assembly/timer{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/assembly/timer{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/assembly/timer{ - pixel_x = -2; - pixel_y = -4 - }, -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/iron, -/area/science/mixing) "hyR" = ( /obj/effect/landmark/start/hangover, /obj/effect/turf_decal/tile/blue{ @@ -20562,6 +20653,15 @@ /obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron, /area/commons/dorms) +"hzq" = ( +/obj/machinery/computer/atmos_control/air_tank{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron/white/corner, +/area/engineering/atmos) "hzM" = ( /obj/machinery/door/airlock{ id_tag = "AuxToilet4"; @@ -20574,6 +20674,13 @@ /obj/structure/cable, /turf/open/floor/iron/white, /area/medical/storage) +"hzW" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/iron/dark/textured_large, +/area/science/storage) "hAb" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers, /obj/machinery/portable_atmospherics/canister/carbon_dioxide, @@ -20747,12 +20854,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, /turf/closed/wall, /area/engineering/atmos) -"hFo" = ( -/obj/machinery/portable_atmospherics/canister/plasma, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark/textured_large, -/area/science/storage) +"hFn" = ( +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/components/binary/tank_compressor{ + dir = 4 + }, +/turf/open/floor/iron, +/area/science/mixing) "hFq" = ( /obj/item/trash/pistachios, /turf/open/floor/plating, @@ -20763,20 +20871,23 @@ }, /turf/open/floor/plating, /area/engineering/storage/tech) -"hFx" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/chair{ - dir = 8 +"hFE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/machinery/duct, +/obj/structure/cable, +/obj/structure/sign/poster/official/random/directional/east, +/turf/open/floor/iron, +/area/hallway/secondary/service) +"hFM" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_y = 4 }, +/obj/machinery/firealarm/directional/west, /obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/door/window/southleft{ - name = "Court Cell"; - req_access_txt = "2" - }, /turf/open/floor/iron/dark, -/area/security/courtroom) +/area/ai_monitored/turret_protected/aisat_interior) "hFZ" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=8"; @@ -20891,31 +21002,6 @@ /obj/effect/turf_decal/tile/neutral/full, /turf/open/floor/iron/dark/smooth_large, /area/command/heads_quarters/ce) -"hIN" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Science Ordnance Launch"; - network = list("ss13","rd") - }, -/obj/structure/table, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/item/computer_hardware/hard_drive/portable{ - pixel_x = -5; - pixel_y = 8 - }, -/obj/item/computer_hardware/hard_drive/portable{ - pixel_x = -2 - }, -/obj/item/computer_hardware/hard_drive/portable{ - pixel_x = 7; - pixel_y = 2 - }, -/obj/item/computer_hardware/hard_drive/portable{ - pixel_x = -8; - pixel_y = -3 - }, -/turf/open/floor/iron, -/area/science/mixing/launch) "hIO" = ( /obj/structure/railing{ dir = 1 @@ -20924,15 +21010,6 @@ /obj/structure/closet/crate, /turf/open/floor/plating, /area/maintenance/department/medical/central) -"hJm" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/structure/sign/warning/electricshock{ - pixel_y = 32 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) "hJo" = ( /obj/machinery/portable_atmospherics/pump, /obj/effect/turf_decal/stripes/line{ @@ -21106,26 +21183,6 @@ /obj/machinery/door/airlock/external, /turf/open/floor/plating, /area/maintenance/fore/greater) -"hMM" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore/lesser) -"hMR" = ( -/obj/item/clothing/suit/hooded/wintercoat, -/obj/effect/decal/remains/human, -/obj/item/clothing/head/beanie/orange{ - pixel_y = 8 - }, -/obj/item/clothing/shoes/wheelys/skishoes{ - pixel_y = -8 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) "hMS" = ( /obj/item/radio/intercom/directional/east, /obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ @@ -21156,6 +21213,24 @@ }, /turf/open/floor/iron/dark, /area/security/prison/safe) +"hNZ" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Atmospherics North East" + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Distro to Waste" + }, +/obj/effect/turf_decal/siding/wideplating, +/turf/open/floor/iron, +/area/engineering/atmos/pumproom) +"hOj" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/random/maintenance/four, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/plating, +/area/construction) "hOt" = ( /turf/open/floor/iron, /area/commons/storage/primary) @@ -21256,6 +21331,16 @@ /obj/structure/bedsheetbin, /turf/open/floor/iron, /area/maintenance/port/fore) +"hSr" = ( +/obj/machinery/computer/atmos_control/carbon_tank{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron, +/area/engineering/atmos) "hSA" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -21266,9 +21351,6 @@ }, /turf/open/floor/iron/dark, /area/engineering/supermatter/room) -"hSB" = ( -/turf/closed/wall, -/area/cargo/lobby) "hSM" = ( /turf/closed/wall/r_wall, /area/command/heads_quarters/ce) @@ -21320,25 +21402,9 @@ }, /turf/open/floor/iron, /area/command/gateway) -"hUD" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red/full, -/obj/effect/turf_decal/siding/white{ - dir = 9 - }, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/iron/large, -/area/service/kitchen/diner) "hVo" = ( /turf/open/floor/glass/reinforced, /area/medical/treatment_center) -"hVO" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/iron/freezer, -/area/service/kitchen/coldroom) "hVW" = ( /obj/machinery/camera/directional/west{ c_tag = "Xenobiology Pens Observation - Port Fore"; @@ -21374,12 +21440,16 @@ }, /turf/open/floor/iron/dark, /area/engineering/lobby) -"hWM" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrous_input{ +"hWP" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ dir = 8 }, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) +/obj/effect/turf_decal/siding/wideplating{ + dir = 4 + }, +/turf/open/floor/iron, +/area/engineering/atmos/pumproom) "hXf" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -21442,14 +21512,6 @@ /obj/item/radio/intercom/directional/west, /turf/open/floor/iron, /area/hallway/primary/aft) -"hXT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/south, -/obj/machinery/computer/atmos_control/ordnancemix{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/science/mixing) "hXU" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -21503,6 +21565,17 @@ /obj/machinery/atmospherics/pipe/smart/simple/green/visible, /turf/closed/wall/r_wall, /area/engineering/atmos) +"hZm" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/flora/grass/brown, +/turf/open/misc/asteroid/snow/standard_air, +/area/science/research) +"hZB" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/mix_output{ + dir = 8 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) "hZC" = ( /obj/machinery/door/airlock/security/glass{ name = "Isolation Cell"; @@ -21526,6 +21599,14 @@ dir = 5 }, /area/science/research) +"hZQ" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/ai_monitored/turret_protected/ai_upload) "hZR" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line{ @@ -21622,13 +21703,11 @@ /obj/machinery/firealarm/directional/east, /turf/open/floor/iron/white, /area/science/mixing) -"ibV" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Mix to Distro" - }, -/turf/open/floor/glass/reinforced, -/area/engineering/atmos/pumproom) +"icl" = ( +/obj/item/chair/wood, +/obj/structure/sign/poster/contraband/random/directional/east, +/turf/open/floor/wood, +/area/maintenance/port/aft) "icF" = ( /obj/machinery/door/airlock/external{ name = "External Access" @@ -21693,10 +21772,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/cargo/qm) -"idq" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engineering/atmos/pumproom) "idW" = ( /obj/machinery/power/apc/auto_name/directional/west, /obj/machinery/portable_atmospherics/scrubber, @@ -21751,12 +21826,6 @@ }, /turf/open/floor/iron, /area/security/prison) -"ieW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/mix_output{ - dir = 8 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) "ifh" = ( /obj/machinery/power/emitter/welded{ dir = 8 @@ -21782,6 +21851,11 @@ /obj/effect/spawner/structure/window/reinforced/plasma, /turf/open/floor/plating, /area/engineering/supermatter/room) +"ifE" = ( +/obj/structure/marker_beacon/burgundy, +/obj/structure/fluff/fokoff_sign, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) "ifP" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -21894,11 +21968,6 @@ /obj/item/wrench, /turf/open/floor/iron, /area/engineering/atmos) -"iid" = ( -/obj/machinery/modular_computer/console/preset/engineering, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/engineering/engine_smes) "iil" = ( /obj/effect/turf_decal/tile/brown{ dir = 8 @@ -22130,14 +22199,6 @@ }, /turf/open/floor/iron, /area/service/hydroponics) -"iru" = ( -/obj/machinery/modular_computer/console/preset/civilian{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/sign/poster/contraband/random/directional/south, -/turf/open/floor/iron, -/area/maintenance/starboard/fore) "irN" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -22197,6 +22258,20 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/security/processing) +"isO" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/computer/med_data/laptop{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/medical/psychology) "ity" = ( /obj/structure/table, /obj/item/book/manual/wiki/security_space_law, @@ -22269,16 +22344,6 @@ }, /turf/open/floor/grass, /area/maintenance/starboard/aft) -"ivI" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 5 - }, -/obj/effect/turf_decal/siding/wideplating{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/engineering/atmos/pumproom) "ivR" = ( /obj/effect/turf_decal/tile/red{ dir = 8 @@ -22320,12 +22385,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/port/fore) -"iwJ" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 5 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) "iwQ" = ( /obj/structure/table, /obj/item/aicard, @@ -22344,10 +22403,12 @@ /obj/structure/flora/ausbushes/leafybush, /turf/open/floor/grass, /area/maintenance/starboard/aft) -"ixv" = ( -/obj/effect/landmark/carpspawn, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) +"ixx" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/iron, +/area/cargo/lobby) "ixD" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -22388,14 +22449,6 @@ /obj/machinery/light_switch/directional/east, /turf/open/floor/iron, /area/commons/storage/art) -"ixT" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, -/turf/open/floor/plating, -/area/engineering/atmos/pumproom) "iya" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -22453,6 +22506,13 @@ "iyK" = ( /turf/open/floor/plating/icemoon, /area/icemoon/surface/outdoors/nospawn) +"iyN" = ( +/obj/machinery/power/smes/engineering, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/engineering/engine_smes) "iyP" = ( /obj/item/clothing/gloves/color/rainbow, /obj/item/clothing/head/soft/rainbow, @@ -22526,6 +22586,15 @@ /obj/effect/spawner/random/vending/snackvend, /turf/open/floor/iron, /area/hallway/primary/starboard) +"izU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/poster/contraband/random/directional/south, +/turf/open/floor/plating, +/area/maintenance/port/greater) "izY" = ( /obj/docking_port/stationary{ dir = 2; @@ -22642,13 +22711,6 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/hallway/primary/central) -"iCy" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/structure/sign/poster/official/random/directional/north, -/turf/open/floor/wood, -/area/hallway/secondary/service) "iCR" = ( /obj/machinery/button/ignition/incinerator/ordmix{ pixel_x = -8; @@ -22762,10 +22824,6 @@ dir = 8 }, /area/engineering/lobby) -"iFe" = ( -/obj/machinery/air_sensor/atmos/mix_tank, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) "iFo" = ( /obj/structure/sign/warning/securearea{ pixel_y = 32 @@ -22814,6 +22872,10 @@ /obj/machinery/light/directional/west, /turf/open/floor/iron, /area/hallway/primary/central) +"iGf" = ( +/obj/machinery/air_sensor/nitrous_tank, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) "iGC" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -22978,6 +23040,10 @@ /obj/machinery/lapvend, /turf/open/floor/iron, /area/hallway/primary/starboard) +"iJX" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron, +/area/cargo/lobby) "iKb" = ( /obj/structure/railing, /obj/effect/turf_decal/tile/neutral{ @@ -23048,6 +23114,12 @@ /obj/effect/spawner/structure/window/reinforced/plasma, /turf/open/floor/plating, /area/engineering/supermatter/room) +"iLi" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/plasma_output{ + dir = 8 + }, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) "iLp" = ( /obj/structure/disposalpipe/segment, /obj/machinery/light/small/directional/west, @@ -23071,14 +23143,6 @@ }, /turf/open/floor/iron, /area/science/xenobiology) -"iMb" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/atmos/pumproom) "iMr" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -23090,6 +23154,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/engineering/engine_smes) +"iMx" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Mix to Distro" + }, +/turf/open/floor/glass/reinforced, +/area/engineering/atmos/pumproom) "iMR" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -23168,13 +23239,10 @@ }, /turf/open/floor/plating, /area/engineering/engine_smes) -"iOk" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/fore) +"iOs" = ( +/obj/item/food/grown/carrot, +/turf/open/misc/asteroid/snow/standard_air, +/area/science/research) "iOA" = ( /obj/structure/sign/warning, /turf/closed/wall/r_wall, @@ -23194,11 +23262,6 @@ /obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/iron, /area/security/prison) -"iQm" = ( -/obj/machinery/telecomms/hub/preset, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark/telecomms, -/area/tcommsat/server) "iQo" = ( /obj/machinery/door/airlock/public/glass{ name = "Prison Cafeteria" @@ -23331,6 +23394,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/white, /area/science/mixing) +"iTu" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light_switch/directional/east, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/command/heads_quarters/ce) "iUo" = ( /obj/structure/table/wood, /obj/item/camera_film, @@ -23509,6 +23583,11 @@ /obj/item/radio/intercom/directional/south, /turf/open/floor/engine, /area/engineering/supermatter/room) +"iWo" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/commons/fitness) "iWu" = ( /obj/structure/lattice/catwalk, /obj/machinery/rnd/server/master, @@ -23541,16 +23620,6 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat_interior) -"iYa" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/engineering/atmos) "iYj" = ( /obj/machinery/light/small/directional/north, /obj/structure/chair/stool/directional/south, @@ -23628,10 +23697,6 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"jah" = ( -/obj/machinery/air_sensor/atmos/plasma_tank, -/turf/open/floor/engine/plasma, -/area/engineering/atmos) "jam" = ( /obj/effect/landmark/start/medical_doctor, /obj/machinery/holopad, @@ -23700,6 +23765,15 @@ }, /turf/open/floor/iron/white, /area/medical/pharmacy) +"jbh" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/light_construct/directional/south, +/obj/structure/sign/poster/official/random/directional/south, +/turf/open/floor/iron/white, +/area/maintenance/port/fore) "jbw" = ( /obj/structure/table/reinforced, /obj/item/reagent_containers/glass/beaker/large{ @@ -23721,17 +23795,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/commons/fitness) -"jcj" = ( +"jck" = ( +/obj/structure/rack, +/obj/machinery/airalarm/directional/north, +/obj/item/gun/energy/ionrifle, +/obj/item/gun/energy/temperature/security, +/obj/item/clothing/suit/hooded/ablative, /obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/light/small/directional/west, -/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, -/area/engineering/engine_smes) +/area/ai_monitored/security/armory) "jcy" = ( /obj/structure/table, /obj/item/toy/plush/slimeplushie{ @@ -23788,6 +23860,11 @@ /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/port/greater) +"jea" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/iron/freezer, +/area/service/kitchen/coldroom) "jei" = ( /obj/machinery/door/airlock{ id_tag = "AuxToilet2"; @@ -23895,17 +23972,6 @@ }, /turf/open/floor/iron, /area/command/heads_quarters/rd) -"jgs" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ - dir = 8 - }, -/obj/effect/turf_decal/siding/wideplating{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/engineering/atmos/pumproom) "jgu" = ( /obj/structure/cable, /turf/open/floor/plating/snowed/icemoon, @@ -23933,6 +23999,14 @@ }, /turf/open/floor/iron/white, /area/maintenance/port/fore) +"jgX" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/structure/tank_dispenser, +/turf/open/floor/iron/dark, +/area/engineering/engine_smes) "jgY" = ( /obj/machinery/light/directional/east, /obj/machinery/camera/directional/east{ @@ -23974,16 +24048,36 @@ }, /turf/open/floor/iron/white, /area/medical/treatment_center) -"jhK" = ( -/obj/machinery/computer/atmos_control/tank/carbon_tank{ - dir = 8 +"jhw" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = -3; + pixel_y = 3 }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = 3; + pixel_y = -3 }, -/turf/open/floor/iron, -/area/engineering/atmos) +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001; + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001; + pixel_x = 3; + pixel_y = -3 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Armory Motion Sensor" + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ai_monitored/security/armory) "jhN" = ( /turf/closed/wall, /area/maintenance/port/greater) @@ -24117,11 +24211,6 @@ /obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/iron, /area/engineering/storage) -"jlE" = ( -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/turf/open/floor/iron, -/area/cargo/sorting) "jlO" = ( /obj/structure/reflector/single/anchored{ dir = 9 @@ -24133,11 +24222,29 @@ /obj/structure/cable, /turf/open/floor/iron/white, /area/medical/medbay/central) +"jma" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/effect/turf_decal/siding/wideplating/corner{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/engineering/atmos/pumproom) "jmb" = ( /obj/effect/spawner/random/structure/crate, /obj/machinery/light/small/directional/east, /turf/open/floor/plating, /area/maintenance/fore/lesser) +"jmo" = ( +/obj/machinery/telecomms/hub/preset, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark/telecomms, +/area/tcommsat/server) +"jmu" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/iron, +/area/commons/locker) "jmv" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -24178,6 +24285,9 @@ }, /turf/open/floor/iron/dark/corner, /area/engineering/atmos/storage/gas) +"jnk" = ( +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) "jnr" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ @@ -24199,10 +24309,12 @@ }, /turf/open/floor/iron/white/smooth_large, /area/service/kitchen/diner) -"jnK" = ( -/obj/machinery/air_sensor/atmos/air_tank, -/turf/open/floor/engine/air, -/area/engineering/atmos) +"jnw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/sign/poster/contraband/random/directional/east, +/turf/open/floor/plating, +/area/maintenance/port/greater) "jok" = ( /obj/machinery/door/poddoor/preopen{ id = "cmoprivacy"; @@ -24320,12 +24432,6 @@ /obj/machinery/airalarm/directional/north, /turf/open/floor/plating, /area/engineering/storage/tech) -"jqE" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 9 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) "jqV" = ( /obj/structure/cable, /obj/effect/landmark/start/depsec/science, @@ -24520,6 +24626,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, /turf/open/floor/iron/dark, /area/engineering/supermatter/room) +"jwc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/hallway/primary/central) "jwv" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -24553,10 +24668,14 @@ }, /turf/open/floor/iron, /area/science/robotics/mechbay) -"jxk" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/cargo/lobby) +"jxu" = ( +/obj/docking_port/stationary/random/icemoon{ + dir = 4; + id = "pod_4_lavaland"; + name = "lavaland" + }, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) "jxH" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -24570,6 +24689,12 @@ /obj/machinery/light/directional/south, /turf/open/floor/iron, /area/hallway/primary/starboard) +"jxW" = ( +/obj/machinery/status_display/ai/directional/south, +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ai_monitored/turret_protected/aisat_interior) "jxX" = ( /obj/structure/cable, /obj/effect/turf_decal/stripes/line{ @@ -24669,12 +24794,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/security/interrogation) -"jAj" = ( -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/ordnance, -/obj/item/storage/medkit/toxin, -/turf/open/floor/iron, -/area/science/mixing) "jAn" = ( /obj/effect/landmark/event_spawn, /obj/effect/turf_decal/bot, @@ -24821,6 +24940,10 @@ /obj/structure/cable, /turf/open/floor/plating, /area/engineering/storage/tech) +"jET" = ( +/obj/machinery/air_sensor/mix_tank, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) "jEY" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -24888,13 +25011,6 @@ }, /turf/open/floor/iron, /area/engineering/storage) -"jGL" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/leather, -/obj/effect/spawner/random/maintenance/two, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/iron, -/area/maintenance/starboard/fore) "jGV" = ( /obj/machinery/computer/security/telescreen/engine{ dir = 8; @@ -25005,18 +25121,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/aft) -"jJu" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 10 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) -"jJv" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/random/maintenance/three, -/obj/structure/sign/poster/random/directional/west, -/turf/open/floor/plating, -/area/maintenance/port/greater) "jJD" = ( /turf/open/floor/carpet, /area/cargo/qm) @@ -25026,6 +25130,11 @@ /obj/structure/tank_dispenser, /turf/open/floor/iron/white, /area/science/mixing) +"jJK" = ( +/obj/machinery/flasher/portable, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ai_monitored/security/armory) "jJO" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ dir = 4 @@ -25053,6 +25162,14 @@ }, /turf/open/floor/plating, /area/cargo/sorting) +"jKu" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/iron, +/area/science/mixing) "jKR" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -25060,14 +25177,6 @@ /obj/effect/landmark/blobstart, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"jLb" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/closet/crate/solarpanel_small, -/turf/open/floor/iron/dark, -/area/engineering/engine_smes) "jLe" = ( /obj/machinery/light/directional/west, /turf/open/floor/iron, @@ -25200,12 +25309,6 @@ /obj/structure/dresser, /turf/open/floor/carpet, /area/command/heads_quarters/captain) -"jOW" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/air_sensor/atmos/ordnance_mixing_tank, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine/vacuum, -/area/science/mixing/chamber) "jPn" = ( /obj/machinery/door/poddoor/preopen{ id = "atmos"; @@ -25215,6 +25318,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, /turf/open/floor/plating, /area/engineering/atmos/storage/gas) +"jPx" = ( +/obj/structure/cable, +/obj/machinery/computer/atmos_control/nocontrol/master{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/engineering/atmos/storage/gas) "jPz" = ( /obj/machinery/holopad, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -25245,6 +25355,27 @@ }, /turf/open/floor/iron, /area/service/hydroponics) +"jPY" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/storage/medkit/o2{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/medkit/o2, +/obj/item/storage/medkit/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/blue/full, +/turf/open/floor/iron/dark/smooth_large, +/area/medical/storage) "jQr" = ( /obj/structure/chair/stool/directional/north, /turf/open/floor/plating, @@ -25442,18 +25573,6 @@ }, /turf/open/floor/iron/white, /area/medical/break_room) -"jWf" = ( -/obj/item/grenade/barrier{ - pixel_x = 4 - }, -/obj/item/grenade/barrier, -/obj/item/grenade/barrier{ - pixel_x = -4 - }, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ai_monitored/security/armory) "jWo" = ( /obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, /turf/closed/wall, @@ -25538,12 +25657,6 @@ /obj/effect/turf_decal/tile/red/full, /turf/open/floor/iron/dark/smooth_large, /area/security/checkpoint/medical) -"jYl" = ( -/obj/machinery/piratepad/civilian, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/loading_area, -/turf/open/floor/iron, -/area/cargo/lobby) "jYO" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, @@ -25559,37 +25672,6 @@ /obj/effect/turf_decal/trimline/blue/filled/line, /turf/open/floor/iron/white, /area/medical/medbay/aft) -"jZs" = ( -/obj/structure/table, -/obj/item/storage/medkit/regular{ - pixel_x = 6; - pixel_y = -5 - }, -/obj/item/multitool, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/item/trash/cheesie, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/cargo/office) -"jZI" = ( -/obj/effect/turf_decal/tile/red/full, -/obj/structure/table, -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 3 - }, -/obj/machinery/light/directional/west, -/obj/structure/sign/poster/random/directional/west, -/turf/open/floor/iron/large, -/area/service/kitchen/diner) "jZW" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -25733,6 +25815,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/maintenance/starboard/upper) +"kbV" = ( +/obj/machinery/camera/directional/east{ + c_tag = "MiniSat External NorthWest"; + network = list("minisat"); + start_active = 1 + }, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) "kcl" = ( /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 9 @@ -25821,20 +25911,6 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, /area/commons/locker) -"kdP" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/hallway/primary/port) -"kdV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/floor/plating, -/area/maintenance/port/greater) "kdZ" = ( /obj/machinery/computer/camera_advanced/xenobio, /turf/open/floor/iron, @@ -25861,6 +25937,16 @@ }, /turf/open/floor/iron/white, /area/science/mixing) +"kfs" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 9 + }, +/obj/effect/turf_decal/siding/wideplating{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/engineering/atmos/pumproom) "kfT" = ( /turf/open/floor/iron/white, /area/medical/cryo) @@ -25883,17 +25969,6 @@ /obj/effect/landmark/blobstart, /turf/open/floor/plating, /area/maintenance/port/greater) -"kgr" = ( -/obj/structure/rack, -/obj/item/lighter, -/obj/item/clothing/glasses/meson{ - pixel_y = 4 - }, -/obj/item/stock_parts/cell/high, -/obj/item/reagent_containers/pill/patch/aiuri, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/command/heads_quarters/ce) "kgs" = ( /obj/effect/spawner/random/structure/crate_abandoned, /obj/machinery/light/small/directional/south, @@ -26076,11 +26151,6 @@ }, /turf/open/floor/iron/white, /area/medical/medbay/central) -"klj" = ( -/obj/structure/marker_beacon/burgundy, -/obj/structure/fluff/fokoff_sign, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) "klk" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/effect/turf_decal/bot, @@ -26225,6 +26295,18 @@ /obj/effect/spawner/random/trash/mess, /turf/open/floor/plating, /area/maintenance/starboard/upper) +"kog" = ( +/obj/structure/table, +/obj/item/storage/box/chemimp{ + pixel_x = 6 + }, +/obj/item/storage/box/trackimp{ + pixel_x = -3 + }, +/obj/item/storage/lockbox/loyalty, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ai_monitored/security/armory) "koo" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -26289,6 +26371,10 @@ }, /turf/open/floor/iron, /area/hallway/primary/aft) +"kqu" = ( +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/plating, +/area/maintenance/aft/greater) "krh" = ( /obj/item/wrench, /obj/item/weldingtool, @@ -26369,21 +26455,13 @@ /obj/machinery/atmospherics/pipe/smart/simple/orange/visible, /turf/open/floor/plating/snowed/icemoon, /area/icemoon/surface/outdoors/nospawn) +"ksi" = ( +/turf/closed/wall/r_wall, +/area/engineering/atmos/pumproom) "ksk" = ( /obj/structure/window/reinforced, /turf/open/floor/iron, /area/science/xenobiology) -"ksw" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/camera/directional/north, -/turf/open/floor/plating, -/area/cargo/sorting) "ksN" = ( /obj/structure/rack, /obj/effect/spawner/random/maintenance/two, @@ -26422,9 +26500,6 @@ /obj/effect/landmark/start/medical_doctor, /turf/open/floor/iron/white, /area/medical/cryo) -"kut" = ( -/turf/open/floor/iron, -/area/cargo/lobby) "kuy" = ( /obj/structure/table, /obj/item/electronics/apc, @@ -26557,6 +26632,22 @@ /obj/item/stack/pipe_cleaner_coil/random, /turf/open/floor/iron, /area/commons/storage/art) +"kzp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, +/obj/structure/chair{ + pixel_y = -2 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/food_packaging, +/obj/structure/sign/poster/official/random/directional/west, +/turf/open/floor/iron, +/area/engineering/storage_shared) "kzI" = ( /obj/machinery/door/poddoor/preopen{ id = "Engineering"; @@ -26629,6 +26720,14 @@ /obj/effect/turf_decal/siding/yellow/corner, /turf/open/floor/iron/large, /area/engineering/storage) +"kBn" = ( +/obj/structure/table, +/obj/effect/spawner/random/maintenance/two, +/obj/effect/decal/cleanable/dirt, +/obj/item/stock_parts/capacitor, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/iron, +/area/maintenance/port/fore) "kBw" = ( /obj/structure/closet/wardrobe/miner, /obj/effect/turf_decal/tile/brown{ @@ -26729,13 +26828,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/aft) -"kCJ" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/command/heads_quarters/ce) "kCM" = ( /obj/machinery/holopad, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -26801,6 +26893,14 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/science/breakroom) +"kER" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/visible{ + dir = 1 + }, +/obj/machinery/newscaster/directional/north, +/obj/effect/turf_decal/siding/wideplating, +/turf/open/floor/iron, +/area/engineering/atmos/pumproom) "kFm" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/engineering{ @@ -26867,6 +26967,16 @@ }, /turf/open/floor/iron/white, /area/medical/medbay/lobby) +"kGc" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/engineering/atmos) "kGf" = ( /obj/machinery/door/airlock/security{ name = "Prison Yard" @@ -27034,10 +27144,6 @@ }, /turf/open/floor/wood, /area/command/meeting_room) -"kKS" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/science/mixing) "kLd" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ @@ -27099,6 +27205,10 @@ }, /turf/open/floor/iron/white, /area/medical/treatment_center) +"kMd" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron, +/area/science/mixing) "kMk" = ( /obj/effect/spawner/random/trash/mess, /obj/machinery/light/small/built/directional/south, @@ -27122,26 +27232,6 @@ }, /turf/open/floor/iron/dark, /area/science/breakroom) -"kMF" = ( -/obj/structure/cable, -/obj/structure/table, -/obj/item/storage/medkit/regular, -/obj/item/storage/medkit/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron/white, -/area/medical/medbay/lobby) "kNm" = ( /obj/structure/table/wood, /obj/machinery/computer/security/wooden_tv, @@ -27163,35 +27253,6 @@ /obj/machinery/smartfridge, /turf/closed/wall, /area/service/kitchen/coldroom) -"kNK" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/structure/chair/sofa/corp/left{ - dir = 4; - pixel_x = -4; - pixel_y = 8 - }, -/obj/effect/landmark/start/hangover, -/obj/machinery/light/small/directional/north, -/obj/structure/sign/poster/random{ - pixel_x = -32 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/structure/chair/sofa/corp/left{ - dir = 4; - pixel_x = -4; - pixel_y = 8 - }, -/obj/effect/landmark/start/hangover, -/obj/machinery/light/small/directional/north, -/obj/structure/sign/poster/random/directional/west, -/turf/open/floor/iron/grimy, -/area/service/bar/atrium) "kNM" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/delivery, @@ -27266,6 +27327,12 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron/white, /area/science/research) +"kPE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrogen_output{ + dir = 1 + }, +/turf/open/floor/engine/n2, +/area/engineering/atmos) "kPH" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -27367,6 +27434,15 @@ }, /turf/open/floor/plating, /area/maintenance/port/greater) +"kSk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/sign/poster/official/random/directional/north, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/engineering/transit_tube) "kSm" = ( /obj/structure/disposalpipe/segment{ dir = 9 @@ -27387,12 +27463,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/cargo/miningdock) -"kTm" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/carbon_input{ - dir = 8 - }, -/turf/open/floor/engine/co2, -/area/engineering/atmos) "kTP" = ( /obj/effect/turf_decal/tile/purple{ dir = 8 @@ -27454,11 +27524,18 @@ /obj/effect/turf_decal/stripes/corner, /turf/open/floor/iron/white, /area/medical/treatment_center) -"kVt" = ( -/obj/machinery/light/directional/east, -/obj/structure/sign/poster/official/random/directional/east, +"kVS" = ( +/obj/machinery/camera/directional/west{ + c_tag = "Gateway" + }, +/obj/structure/table, +/obj/structure/sign/warning/biohazard{ + pixel_x = -32 + }, +/obj/item/storage/medkit/regular, +/obj/item/paper/pamphlet/gateway, /turf/open/floor/iron, -/area/hallway/primary/central) +/area/command/gateway) "kVV" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -27521,14 +27598,30 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"kXE" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/mirror/directional/east, -/obj/structure/sign/poster/official/random/directional/west, -/turf/open/floor/plating{ - icon_state = "platingdmg1" +"kXN" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 }, -/area/maintenance/port/fore) +/obj/machinery/firealarm/directional/east, +/obj/structure/table/reinforced, +/obj/item/stack/wrapping_paper{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/stack/package_wrap{ + pixel_x = -1; + pixel_y = -1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/item/dest_tagger, +/turf/open/floor/iron, +/area/cargo/sorting) "kXV" = ( /obj/structure/table, /obj/item/storage/box, @@ -27596,10 +27689,6 @@ }, /turf/open/floor/iron/white, /area/medical/medbay/aft) -"kZi" = ( -/obj/machinery/air_sensor/atmos/nitrogen_tank, -/turf/open/floor/engine/n2, -/area/engineering/atmos) "kZl" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -27636,13 +27725,6 @@ /obj/effect/spawner/random/techstorage/service_all, /turf/open/floor/plating, /area/engineering/storage/tech) -"kZU" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/random/maintenance/four, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/plating, -/area/construction) "lag" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -27691,10 +27773,12 @@ }, /turf/open/floor/wood, /area/service/library) -"lbr" = ( -/obj/structure/barricade/wooden/snowed, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) +"lbg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/carbon_output{ + dir = 8 + }, +/turf/open/floor/engine/co2, +/area/engineering/atmos) "lbH" = ( /obj/effect/landmark/start/hangover, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -27753,6 +27837,12 @@ "ldi" = ( /turf/closed/wall, /area/commons/storage/emergency/port) +"ldk" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/glass/reinforced, +/area/engineering/atmos/pumproom) "lds" = ( /obj/structure/ladder{ name = "chemistry lab access" @@ -27790,14 +27880,13 @@ /mob/living/carbon/human/species/monkey, /turf/open/floor/engine, /area/science/genetics) -"ldW" = ( -/obj/machinery/camera/directional/north{ - c_tag = "MiniSat External South"; - network = list("minisat"); - start_active = 1 +"leb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) +/obj/structure/sign/poster/official/random/directional/north, +/turf/open/floor/wood, +/area/hallway/secondary/service) "len" = ( /obj/structure/chair/comfy/black{ dir = 4 @@ -27817,6 +27906,19 @@ }, /turf/open/floor/carpet, /area/commons/dorms) +"leY" = ( +/obj/machinery/computer/atmos_control/plasma_tank{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/engineering/atmos) "lfc" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/smart/simple/purple/visible, @@ -27856,6 +27958,10 @@ }, /turf/open/floor/iron/white, /area/medical/storage) +"lgl" = ( +/obj/structure/sign/poster/official/random/directional/north, +/turf/open/floor/iron, +/area/hallway/primary/starboard) "lgr" = ( /turf/open/openspace, /area/service/kitchen) @@ -27864,16 +27970,6 @@ /obj/effect/spawner/random/techstorage/tcomms_all, /turf/open/floor/plating, /area/engineering/storage/tech) -"lha" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/cargo/lobby) "lhw" = ( /obj/structure/ladder{ name = "upper dispenser access" @@ -27909,6 +28005,12 @@ /obj/structure/mirror/directional/east, /turf/open/floor/iron/freezer, /area/maintenance/starboard/fore) +"liU" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/sign/poster/random/directional/south, +/turf/open/floor/plating, +/area/construction) "liY" = ( /obj/machinery/atmospherics/pipe/smart/manifold/general/visible{ dir = 8 @@ -28052,23 +28154,6 @@ }, /turf/open/floor/iron, /area/command/bridge) -"loP" = ( -/obj/machinery/power/smes/engineering, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/obj/structure/sign/warning/electricshock{ - pixel_y = 32 - }, -/turf/open/floor/iron/dark/textured, -/area/engineering/engine_smes) -"lpa" = ( -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/components/binary/tank_compressor{ - dir = 4 - }, -/turf/open/floor/iron, -/area/science/mixing) "lps" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ cycle_id = "atmos-entrance" @@ -28092,6 +28177,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/ai_upload) +"lpO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/cargo/lobby) "lpS" = ( /obj/machinery/modular_computer/console/preset/id, /obj/machinery/light/directional/north, @@ -28234,6 +28328,12 @@ }, /turf/open/floor/iron/freezer, /area/commons/toilet) +"ltI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/sign/poster/official/random/directional/south, +/turf/open/floor/iron/white, +/area/science/robotics/lab) "ltP" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -28251,6 +28351,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/cafeteria, /area/security/prison) +"lvq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/iron, +/area/hallway/primary/starboard) "lvE" = ( /obj/structure/table, /obj/effect/landmark/start/hangover, @@ -28324,6 +28430,11 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/white, /area/science/research) +"lwP" = ( +/obj/structure/table, +/obj/item/storage/medkit/regular, +/turf/open/floor/iron, +/area/commons/fitness) "lwS" = ( /obj/structure/window/reinforced{ dir = 4 @@ -28448,25 +28559,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"lzI" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/light_construct/directional/south, -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/iron/white, -/area/maintenance/port/fore) -"lAl" = ( -/obj/machinery/computer/atmos_control/tank/nitrogen_tank{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron, -/area/engineering/atmos) "lAq" = ( /obj/structure/grille, /obj/structure/window{ @@ -28481,6 +28573,16 @@ }, /turf/open/floor/plating/snowed/icemoon, /area/icemoon/surface/outdoors/nospawn) +"lAv" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 5 + }, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/iron/white/smooth_large, +/area/service/kitchen/diner) "lAy" = ( /obj/machinery/door/firedoor, /obj/machinery/status_display/evac/directional/east, @@ -28545,12 +28647,6 @@ }, /turf/open/floor/plating, /area/construction/mining/aux_base) -"lCn" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/iron/dark/textured_large, -/area/science/storage) "lCp" = ( /obj/machinery/airalarm/directional/east, /obj/machinery/light/directional/east, @@ -28636,6 +28732,9 @@ }, /turf/open/floor/iron, /area/hallway/primary/starboard) +"lEv" = ( +/turf/open/floor/glass/reinforced, +/area/engineering/atmos/pumproom) "lEL" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 4 @@ -28643,6 +28742,15 @@ /obj/machinery/door/airlock/external, /turf/open/floor/plating, /area/maintenance/starboard/upper) +"lFt" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/iron, +/area/science/mixing) "lFx" = ( /obj/machinery/light/small/directional/north, /obj/structure/table/reinforced, @@ -28668,14 +28776,6 @@ }, /turf/open/floor/iron/white, /area/medical/medbay/lobby) -"lFI" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/machinery/power/port_gen/pacman, -/turf/open/floor/iron/dark, -/area/engineering/engine_smes) "lFQ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -28688,6 +28788,13 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/white, /area/medical/treatment_center) +"lGJ" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Mix to Filter" + }, +/turf/open/floor/glass/reinforced, +/area/engineering/atmos/pumproom) "lGT" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -28764,12 +28871,6 @@ /obj/machinery/light/directional/west, /turf/open/floor/wood, /area/command/heads_quarters/captain) -"lJh" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 10 - }, -/turf/open/floor/glass/reinforced, -/area/engineering/atmos/pumproom) "lJt" = ( /obj/machinery/airalarm/directional/south, /obj/structure/disposalpipe/segment{ @@ -28794,10 +28895,6 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/hallway/primary/aft) -"lJZ" = ( -/obj/structure/cable, -/turf/open/floor/wood/parquet, -/area/service/bar/atrium) "lKi" = ( /obj/machinery/computer/security, /obj/effect/turf_decal/tile/red, @@ -28806,6 +28903,10 @@ }, /turf/open/floor/iron, /area/command/bridge) +"lKm" = ( +/obj/structure/sign/poster/contraband/random/directional/north, +/turf/open/floor/wood, +/area/maintenance/port/aft) "lKJ" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 1 @@ -28822,6 +28923,13 @@ }, /turf/open/floor/iron, /area/engineering/storage_shared) +"lKU" = ( +/obj/machinery/vending/assist, +/obj/structure/sign/poster/random/directional/west, +/turf/open/floor/iron/cafeteria{ + dir = 8 + }, +/area/science/research) "lLb" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -28870,13 +28978,6 @@ /obj/item/crowbar, /turf/open/floor/iron, /area/command/teleporter) -"lLy" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/cargo/lobby) "lLD" = ( /obj/machinery/door/airlock/security{ name = "Interrogation"; @@ -28910,18 +29011,6 @@ dir = 1 }, /area/science/misc_lab) -"lMc" = ( -/obj/structure/safe, -/obj/item/clothing/head/bearpelt, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/gun/ballistic/revolver/russian, -/obj/item/ammo_box/a357, -/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka, -/obj/effect/turf_decal/bot_white/left, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ai_monitored/command/nuke_storage) "lMh" = ( /obj/structure/sign/poster/official/no_erp{ pixel_x = -30 @@ -28991,13 +29080,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/fore/greater) -"lOj" = ( -/obj/machinery/computer/piratepad_control/civilian{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/iron, -/area/cargo/lobby) "lOp" = ( /obj/effect/decal/cleanable/dirt, /obj/item/radio/intercom/directional/east, @@ -29121,16 +29203,16 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/ai_monitored/command/storage/eva) -"lRJ" = ( -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/iron/white/side{ - dir = 10 - }, -/area/science/research) "lRP" = ( /obj/structure/closet/crate/critter, /turf/open/floor/plating, /area/maintenance/department/medical/central) +"lRV" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/nitrous_input{ + dir = 8 + }, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) "lRX" = ( /obj/machinery/firealarm/directional/east, /turf/open/floor/iron, @@ -29140,12 +29222,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/command/bridge) -"lSK" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/mob/living/simple_animal/parrot/poly, -/turf/open/floor/iron/dark, -/area/command/heads_quarters/ce) "lTy" = ( /obj/machinery/firealarm/directional/north, /turf/open/floor/iron, @@ -29305,19 +29381,6 @@ /obj/structure/lattice/catwalk, /turf/open/openspace, /area/science/xenobiology) -"lXw" = ( -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/command/gateway) -"lXx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/machinery/duct, -/obj/structure/cable, -/obj/structure/sign/poster/official/random/directional/east, -/turf/open/floor/iron, -/area/hallway/secondary/service) "lXD" = ( /obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ dir = 4 @@ -29339,6 +29402,12 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/construction) +"lXX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/glass/reinforced, +/area/engineering/atmos/pumproom) "lYh" = ( /obj/structure/rack, /obj/item/reagent_containers/glass/bottle/fluorine{ @@ -29368,20 +29437,24 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/showroomfloor, /area/security/lockers) -"lYH" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/floor/catwalk_floor/iron_smooth, -/area/maintenance/starboard/fore) "lYU" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/engineering/storage_shared) +"lYZ" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/tcommsat/computer) +"lZb" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/structure/sign/warning/electricshock{ + pixel_y = 32 + }, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) "lZd" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" @@ -29445,6 +29518,10 @@ /obj/structure/flora/junglebush, /turf/open/floor/grass, /area/service/hydroponics) +"mbs" = ( +/obj/structure/sign/poster/contraband/random/directional/west, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) "mbC" = ( /obj/effect/decal/cleanable/cobweb, /turf/open/floor/iron, @@ -29490,6 +29567,12 @@ /obj/item/reagent_containers/food/drinks/waterbottle/empty, /turf/open/floor/iron, /area/maintenance/starboard/fore) +"mdA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron, +/area/commons/locker) "meo" = ( /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/brown{ @@ -29539,15 +29622,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/security/office) -"mfm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/kirbyplants/random, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/iron/dark, -/area/science/breakroom) "mfq" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -29645,6 +29719,17 @@ "mib" = ( /turf/open/floor/iron/cafeteria, /area/command/heads_quarters/rd) +"mii" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Pure to Mix" + }, +/obj/effect/turf_decal/siding/wideplating{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/engineering/atmos/pumproom) "miE" = ( /obj/machinery/door/airlock/research{ name = "Gas Storage"; @@ -29770,11 +29855,6 @@ /obj/machinery/newscaster/directional/north, /turf/open/floor/iron, /area/hallway/primary/central) -"mlq" = ( -/obj/machinery/light/small/directional/west, -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/floor/plating, -/area/maintenance/port/aft) "mlv" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/carpet, @@ -29844,6 +29924,12 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) +"mnz" = ( +/obj/effect/turf_decal/bot_white/right, +/obj/structure/closet/crate/goldcrate, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ai_monitored/command/nuke_storage) "mnN" = ( /obj/structure/sign/warning/radiation/rad_area, /turf/closed/wall/r_wall, @@ -29863,6 +29949,11 @@ "mnU" = ( /turf/open/floor/iron, /area/engineering/storage_shared) +"mog" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/spawner/random/engineering/tracking_beacon, +/turf/open/floor/iron/dark, +/area/commons/fitness) "mot" = ( /obj/structure/bed, /obj/item/bedsheet/captain, @@ -29964,6 +30055,9 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/science/mixing) +"mpV" = ( +/turf/open/floor/iron, +/area/cargo/lobby) "mqc" = ( /obj/machinery/requests_console/directional/west{ department = "Science"; @@ -30010,15 +30104,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/freezer, /area/commons/toilet) -"mrq" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Air to Distro" - }, -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/siding/wideplating, -/turf/open/floor/iron, -/area/engineering/atmos/pumproom) "mrv" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp/green, @@ -30052,20 +30137,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/security/interrogation) +"msZ" = ( +/obj/item/stack/rods, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) "mtb" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/light_switch/directional/east, /turf/open/floor/iron, /area/construction) -"mtn" = ( -/obj/structure/table, -/obj/item/kitchen/rollingpin, -/obj/item/reagent_containers/food/condiment/enzyme, -/obj/item/reagent_containers/food/condiment/sugar, -/obj/structure/light_construct/directional/west, -/obj/structure/sign/poster/official/random/directional/west, -/turf/open/floor/plating, -/area/maintenance/port/aft) "mtr" = ( /obj/effect/turf_decal/siding/white{ dir = 8 @@ -30105,6 +30185,14 @@ icon_state = "platingdmg1" }, /area/maintenance/port/aft) +"mul" = ( +/obj/docking_port/stationary/random/icemoon{ + dir = 8; + id = "pod_2_lavaland"; + name = "lavaland" + }, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/unexplored/rivers/no_monsters) "muM" = ( /obj/structure/cable, /obj/machinery/door/firedoor, @@ -30124,6 +30212,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/security/prison) +"mvU" = ( +/obj/machinery/modular_computer/console/preset/civilian{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/sign/poster/contraband/random/directional/south, +/turf/open/floor/iron, +/area/maintenance/starboard/fore) "mwr" = ( /obj/structure/table/glass, /obj/item/cartridge/medical{ @@ -30177,10 +30273,6 @@ /obj/structure/closet/secure_closet/freezer/fridge, /turf/open/floor/iron/cafeteria, /area/service/kitchen) -"myh" = ( -/obj/structure/marker_beacon/burgundy, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) "myD" = ( /obj/machinery/firealarm/directional/east, /obj/structure/filingcabinet/employment, @@ -30379,6 +30471,15 @@ }, /turf/open/floor/iron, /area/service/hydroponics/garden) +"mCL" = ( +/obj/machinery/computer/security/telescreen/entertainment/directional/west, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/computer/monitor{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/ai_monitored/turret_protected/aisat_interior) "mCT" = ( /obj/machinery/airalarm/directional/north, /obj/effect/turf_decal/stripes/line{ @@ -30507,14 +30608,6 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/iron, /area/commons/locker) -"mHB" = ( -/obj/effect/turf_decal/bot_white/left, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/ai_monitored/command/nuke_storage) "mHH" = ( /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -30613,11 +30706,19 @@ /obj/structure/sign/warning/docking, /turf/closed/wall/r_wall, /area/maintenance/port/greater) +"mKu" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/atmos/pumproom) "mKO" = ( /obj/machinery/light/small/directional/north, /obj/structure/chair/stool/directional/south, /turf/open/floor/plating, /area/maintenance/starboard/aft) +"mLd" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/cargo/lobby) "mLl" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -30626,12 +30727,6 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron/white, /area/science/genetics) -"mLs" = ( -/obj/structure/sign/warning/securearea{ - pixel_y = -32 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) "mLw" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/structure/crate, @@ -30727,6 +30822,14 @@ /obj/structure/cable, /turf/open/floor/iron/dark/corner, /area/engineering/atmos/storage/gas) +"mNc" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/ai_monitored/turret_protected/ai_upload) "mNe" = ( /obj/structure/bookcase/random/reference, /turf/open/floor/carpet/blue, @@ -30760,20 +30863,6 @@ "mNS" = ( /turf/open/floor/wood, /area/service/lawoffice) -"mNY" = ( -/obj/structure/table, -/obj/machinery/light/small/directional/north, -/obj/item/folder{ - pixel_x = 3 - }, -/obj/item/phone{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ai_monitored/turret_protected/aisat_interior) "mOb" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -30797,6 +30886,12 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) +"mOB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ + dir = 4 + }, +/turf/open/floor/glass/reinforced, +/area/engineering/atmos/pumproom) "mOR" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plating, @@ -30822,6 +30917,12 @@ /mob/living/carbon/human/species/monkey, /turf/open/floor/engine, /area/science/genetics) +"mPr" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/random/maintenance/three, +/obj/structure/sign/poster/random/directional/west, +/turf/open/floor/plating, +/area/maintenance/port/greater) "mPw" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -30861,6 +30962,10 @@ /obj/machinery/firealarm/directional/north, /turf/open/floor/iron/dark, /area/cargo/miningdock) +"mQa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/cargo/lobby) "mQd" = ( /obj/structure/cable, /turf/open/floor/iron, @@ -31000,15 +31105,10 @@ /obj/machinery/bounty_board/directional/west, /turf/open/floor/iron, /area/command/bridge) -"mTC" = ( -/obj/structure/rack, -/obj/machinery/airalarm/directional/north, -/obj/item/gun/energy/ionrifle, -/obj/item/gun/energy/temperature/security, -/obj/item/clothing/suit/hooded/ablative, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ai_monitored/security/armory) +"mTs" = ( +/obj/machinery/vending/wardrobe/chef_wardrobe, +/turf/open/floor/iron/cafeteria, +/area/service/kitchen) "mTE" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -31019,6 +31119,10 @@ dir = 1 }, /area/engineering/main) +"mTM" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/misc/asteroid/snow/standard_air, +/area/hallway/secondary/exit/departure_lounge) "mTO" = ( /turf/closed/wall/r_wall, /area/commons/storage/primary) @@ -31034,17 +31138,6 @@ }, /turf/open/floor/iron/white, /area/security/medical) -"mVf" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 10 - }, -/obj/effect/turf_decal/siding/wideplating/corner{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron, -/area/engineering/atmos/pumproom) "mWg" = ( /obj/structure/sign/warning/fire, /turf/closed/wall/r_wall, @@ -31061,12 +31154,6 @@ dir = 1 }, /area/hallway/secondary/exit/departure_lounge) -"mWn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/plasma_output{ - dir = 8 - }, -/turf/open/floor/engine/plasma, -/area/engineering/atmos) "mWu" = ( /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ dir = 6 @@ -31090,19 +31177,6 @@ }, /turf/open/floor/iron, /area/service/hydroponics) -"mXB" = ( -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/vault{ - name = "Vault"; - req_access_txt = "53" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/navbeacon/wayfinding, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/ai_monitored/command/nuke_storage) "mXC" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 8 @@ -31138,23 +31212,10 @@ }, /turf/open/floor/iron/dark, /area/engineering/supermatter/room) -"mYv" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/atmos/pumproom) "mYE" = ( /obj/machinery/portable_atmospherics/scrubber, /turf/open/floor/plating, /area/ai_monitored/turret_protected/aisat/maint) -"mYG" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/turf/open/floor/plating, -/area/engineering/atmos/pumproom) "mYR" = ( /obj/structure/table, /obj/item/screwdriver{ @@ -31187,14 +31248,6 @@ /obj/structure/cable, /turf/open/floor/engine, /area/engineering/supermatter/room) -"mZB" = ( -/obj/machinery/camera/directional/west{ - c_tag = "MiniSat External NorthEast"; - network = list("minisat"); - start_active = 1 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) "mZD" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -31213,16 +31266,6 @@ /obj/structure/cable, /turf/open/floor/wood, /area/command/meeting_room) -"nah" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 8 - }, -/obj/effect/turf_decal/siding/wideplating{ - dir = 4 - }, -/turf/open/floor/iron, -/area/engineering/atmos/pumproom) "naj" = ( /obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, @@ -31283,14 +31326,6 @@ }, /turf/open/floor/iron/white, /area/medical/pharmacy) -"ncG" = ( -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/computer/station_alert{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/ai_monitored/turret_protected/aisat_interior) "ncO" = ( /obj/machinery/door/airlock/security/glass{ name = "Brig Control"; @@ -31393,6 +31428,14 @@ /obj/item/kirbyplants/random, /turf/open/floor/iron, /area/hallway/primary/starboard) +"nfU" = ( +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/atmos/pumproom) "ngd" = ( /obj/structure/disposaloutlet{ dir = 4 @@ -31402,14 +31445,6 @@ }, /turf/open/floor/plating, /area/cargo/sorting) -"ngh" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/meter/atmos/layer4, -/turf/open/floor/plating, -/area/maintenance/fore/lesser) "ngk" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -31491,6 +31526,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/command/heads_quarters/cmo) +"nhh" = ( +/obj/structure/rack, +/obj/machinery/firealarm/directional/north, +/obj/item/gun/energy/e_gun/dragnet, +/obj/item/gun/energy/e_gun/dragnet, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ai_monitored/security/armory) "nhm" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" @@ -31602,16 +31645,6 @@ "nka" = ( /turf/open/openspace, /area/science/xenobiology) -"nkw" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/siding/white{ - dir = 5 - }, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/iron/white/smooth_large, -/area/service/kitchen/diner) "nkG" = ( /obj/machinery/atmospherics/pipe/smart/simple/orange/visible, /turf/closed/wall, @@ -31637,15 +31670,6 @@ }, /turf/open/floor/iron/white, /area/science/xenobiology) -"nlT" = ( -/obj/machinery/light/directional/east, -/obj/item/radio/intercom/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/command/heads_quarters/ce) "nlY" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/smart/manifold4w/pink/hidden, @@ -31712,14 +31736,6 @@ /obj/item/watertank, /turf/open/floor/iron, /area/service/hydroponics) -"nnz" = ( -/obj/machinery/camera/directional/east{ - c_tag = "MiniSat External SouthWest"; - network = list("minisat"); - start_active = 1 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) "nnL" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -31744,13 +31760,12 @@ /obj/machinery/light/small/directional/east, /turf/open/floor/iron/dark/textured_large, /area/maintenance/department/medical/central) -"nou" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 +"noo" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 6 }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ai_monitored/turret_protected/aisat/atmos) +/turf/open/floor/glass/reinforced, +/area/engineering/atmos/pumproom) "now" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/tile/blue{ @@ -31888,6 +31903,22 @@ }, /turf/open/floor/iron, /area/engineering/atmos) +"nsi" = ( +/obj/structure/table, +/obj/item/storage/medkit/regular, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron, +/area/commons/locker) "nsn" = ( /obj/structure/table, /obj/item/storage/box/lights/mixed, @@ -31918,6 +31949,13 @@ /obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/plating, /area/maintenance/starboard/upper) +"nsx" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/cargo/lobby) "nsK" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" @@ -31934,10 +31972,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/security/prison) -"nsU" = ( -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/wood, -/area/maintenance/port/aft) "nsZ" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -31954,6 +31988,12 @@ /obj/machinery/light/directional/west, /turf/open/floor/iron, /area/science/mixing) +"ntc" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/mix_input{ + dir = 8 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) "nth" = ( /obj/machinery/recharger{ pixel_y = 4 @@ -31993,15 +32033,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/commons/storage/tools) -"ntH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/sign/poster/official/random/directional/north, -/turf/open/floor/iron/dark/smooth_edge{ - dir = 4 - }, -/area/engineering/transit_tube) "ntM" = ( /obj/machinery/door/poddoor/shutters/preopen{ id = "hopqueue"; @@ -32040,11 +32071,6 @@ }, /turf/open/floor/carpet, /area/command/heads_quarters/captain) -"nuY" = ( -/obj/machinery/computer/atmos_alert, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/engineering/engine_smes) "nvH" = ( /obj/machinery/atmospherics/components/binary/pump/on{ dir = 4; @@ -32052,14 +32078,6 @@ }, /turf/open/floor/iron, /area/engineering/atmos) -"nvX" = ( -/obj/item/toy/snowball{ - pixel_x = -6; - pixel_y = -3 - }, -/mob/living/simple_animal/pet/penguin/baby, -/turf/open/misc/asteroid/snow/standard_air, -/area/science/research) "nwq" = ( /obj/structure/table/wood, /obj/item/paicard, @@ -32114,11 +32132,6 @@ }, /turf/open/floor/iron, /area/engineering/main) -"nxS" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/tcommsat/computer) "nxU" = ( /obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ dir = 10 @@ -32145,9 +32158,9 @@ /turf/open/floor/iron/white, /area/medical/treatment_center) "nyu" = ( -/obj/structure/sign/poster/random/directional/west, -/turf/open/floor/iron/dark, -/area/service/chapel) +/obj/structure/sign/departments/cargo, +/turf/closed/wall, +/area/cargo/lobby) "nyv" = ( /obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible{ dir = 4 @@ -32164,17 +32177,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/cargo/miningdock) -"nyQ" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/directional/south{ - c_tag = "Ordnance Lab South"; - network = list("ss13","rd") - }, -/obj/structure/sign/poster/random/directional/south, -/turf/open/floor/iron/dark/textured, -/area/science/mixing) "nyY" = ( /obj/machinery/computer/crew, /obj/effect/turf_decal/tile/green, @@ -32232,13 +32234,6 @@ }, /turf/open/floor/iron, /area/security/brig) -"nzZ" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/iron/dark/textured_large, -/area/science/storage) "nAm" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -32269,6 +32264,15 @@ /obj/machinery/firealarm/directional/north, /turf/open/floor/iron, /area/hallway/primary/central) +"nBq" = ( +/obj/structure/closet/bombcloset, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/light_switch/directional/east, +/obj/structure/sign/poster/official/random/directional/south, +/turf/open/floor/iron/white, +/area/science/mixing) "nBv" = ( /obj/machinery/light/directional/east, /turf/open/openspace, @@ -32319,13 +32323,6 @@ }, /turf/open/floor/iron, /area/cargo/sorting) -"nCX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible/layer4, -/turf/open/floor/plating, -/area/maintenance/fore/lesser) "nDe" = ( /obj/machinery/drone_dispenser, /turf/open/floor/plating, @@ -32393,12 +32390,6 @@ }, /turf/open/genturf, /area/icemoon/surface/outdoors/unexplored/rivers/no_monsters) -"nFK" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/turf/open/floor/iron, -/area/cargo/lobby) "nFP" = ( /obj/structure/chair/office{ dir = 4 @@ -32517,14 +32508,6 @@ }, /turf/open/floor/iron/white, /area/medical/medbay/aft) -"nIB" = ( -/obj/machinery/computer/apc_control{ - dir = 4 - }, -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/command/heads_quarters/ce) "nII" = ( /obj/effect/landmark/event_spawn, /obj/effect/landmark/blobstart, @@ -32640,6 +32623,14 @@ /obj/machinery/light/small/directional/south, /turf/open/floor/iron/dark, /area/cargo/miningdock) +"nNp" = ( +/obj/structure/table, +/obj/item/storage/box/firingpins, +/obj/item/storage/box/firingpins, +/obj/item/key/security, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ai_monitored/security/armory) "nNy" = ( /obj/structure/railing{ dir = 4 @@ -32664,12 +32655,17 @@ }, /turf/open/floor/iron, /area/engineering/atmos) -"nNO" = ( -/obj/structure/rack, -/obj/effect/spawner/random/clothing/costume, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) +"nNG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/light/small/built/directional/south, +/obj/structure/mirror/directional/west, +/obj/structure/sign/poster/contraband/random/directional/south, +/turf/open/floor/iron/white, +/area/maintenance/port/fore) "nNY" = ( /obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark/side{ @@ -32790,6 +32786,13 @@ }, /turf/open/floor/iron, /area/hallway/primary/starboard) +"nQt" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/sign/poster/contraband/random/directional/north, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/fore) "nQw" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/layer_manifold/dark, @@ -32897,6 +32900,26 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/science/mixing/launch) +"nSM" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/structure/table, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/gloves/color/yellow, +/obj/structure/cable, +/obj/item/mod/module/plasma_stabilizer, +/obj/item/mod/module/thermal_regulator, +/obj/item/stock_parts/cell/emproof{ + pixel_x = -4; + pixel_y = -1 + }, +/turf/open/floor/iron/dark, +/area/engineering/engine_smes) "nTe" = ( /obj/machinery/mass_driver/ordnance{ dir = 4 @@ -32924,6 +32947,13 @@ }, /turf/open/floor/engine, /area/maintenance/disposal/incinerator) +"nTO" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/machinery/light/small/directional/north, +/turf/open/misc/asteroid/snow/icemoon, +/area/engineering/main) "nTY" = ( /obj/item/radio/intercom/directional/south, /obj/machinery/computer/security{ @@ -32935,11 +32965,6 @@ }, /turf/open/floor/iron, /area/security/office) -"nTZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/poster/random/directional/south, -/turf/open/floor/plating, -/area/maintenance/aft/greater) "nUa" = ( /obj/effect/turf_decal/stripes/corner, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -33035,6 +33060,29 @@ /obj/item/ai_module/core/full/custom, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/ai_upload) +"nVg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/table, +/obj/item/storage/medkit/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/storage/medkit/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/storage/medkit/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/healthanalyzer, +/obj/item/healthanalyzer, +/obj/item/healthanalyzer, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron, +/area/science/robotics/lab) "nVh" = ( /obj/machinery/button/door/directional/north{ id = "maint3"; @@ -33043,10 +33091,17 @@ /obj/effect/spawner/random/trash/mess, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"nVN" = ( -/obj/machinery/air_sensor/atmos/oxygen_tank, -/turf/open/floor/engine/o2, -/area/engineering/atmos) +"nVn" = ( +/obj/structure/rack, +/obj/item/lighter, +/obj/item/clothing/glasses/meson{ + pixel_y = 4 + }, +/obj/item/stock_parts/cell/high, +/obj/item/reagent_containers/pill/patch/aiuri, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/command/heads_quarters/ce) "nVS" = ( /obj/machinery/door/airlock/external{ name = "Port Docking Bay 1"; @@ -33142,6 +33197,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/port/fore) +"nYG" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/nosmoking{ + pixel_y = 32 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/iron/dark/textured_large, +/area/science/storage) "nYH" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -33161,6 +33226,27 @@ }, /turf/open/floor/iron, /area/hallway/primary/central) +"oau" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/meter/layer4, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"oaF" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4; + name = "Unfiltered & Air to Mix" + }, +/turf/open/floor/iron, +/area/engineering/atmos/pumproom) "oaV" = ( /obj/effect/turf_decal/siding/purple/corner{ dir = 1 @@ -33289,14 +33375,6 @@ /obj/structure/industrial_lift, /turf/open/openspace, /area/commons/storage/mining) -"odC" = ( -/obj/structure/table/optable{ - name = "Robotics Operating Table" - }, -/obj/effect/landmark/event_spawn, -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/iron/dark, -/area/science/robotics/lab) "oep" = ( /obj/effect/turf_decal/tile/red/full, /obj/effect/turf_decal/siding/white{ @@ -33305,27 +33383,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/large, /area/service/kitchen/diner) -"oex" = ( -/obj/structure/table/glass, -/obj/item/storage/medkit/fire{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/medkit/fire, -/obj/item/storage/medkit/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/machinery/door/window/northleft{ - dir = 4; - name = "First-Aid Supplies"; - red_alert_access = 1; - req_access_txt = "5" - }, -/obj/machinery/status_display/evac/directional/west, -/obj/effect/turf_decal/tile/blue/full, -/turf/open/floor/iron/dark/smooth_large, -/area/maintenance/department/medical) "oeC" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/iron, @@ -33391,17 +33448,17 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/port/aft) -"ofu" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Pure to Mix" - }, -/obj/effect/turf_decal/siding/wideplating{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/engineering/atmos/pumproom) +"ofr" = ( +/obj/machinery/computer/atmos_alert, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/engineering/engine_smes) +"ofC" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/mob/living/simple_animal/parrot/poly, +/turf/open/floor/iron/dark, +/area/command/heads_quarters/ce) "ofE" = ( /obj/machinery/computer/prisoner/management, /obj/effect/turf_decal/tile/red{ @@ -33502,36 +33559,6 @@ /obj/structure/flora/ausbushes/ywflowers, /turf/open/floor/grass, /area/service/hydroponics) -"oiM" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/clothing/head/helmet/alt{ - layer = 3.00001; - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/head/helmet/alt{ - layer = 3.00001 - }, -/obj/item/clothing/head/helmet/alt{ - layer = 3.00001; - pixel_x = 3; - pixel_y = -3 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Armory Motion Sensor" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ai_monitored/security/armory) "oiP" = ( /obj/structure/table, /obj/machinery/recharger, @@ -33580,6 +33607,21 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/cargo/storage) +"ojN" = ( +/obj/structure/table, +/obj/item/kitchen/rollingpin, +/obj/item/reagent_containers/food/condiment/enzyme, +/obj/item/reagent_containers/food/condiment/sugar, +/obj/structure/light_construct/directional/west, +/obj/structure/sign/poster/official/random/directional/west, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ojU" = ( +/obj/machinery/camera/motion/directional/south{ + c_tag = "Armory - External" + }, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) "oka" = ( /obj/machinery/door/firedoor/heavy, /obj/machinery/light/directional/east, @@ -33706,6 +33748,13 @@ /obj/item/ai_module/supplied/protect_station, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/ai_upload) +"omi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/atmos/pumproom) "omj" = ( /obj/structure/cable/multilayer/multiz, /obj/effect/turf_decal/stripes/box, @@ -33722,20 +33771,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/maintenance/port/greater) -"omD" = ( -/obj/effect/turf_decal/bot_white/right, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/command/gateway) -"omK" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/bot{ - dir = 1 +"omH" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 }, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/iron/dark, -/area/engineering/engine_smes) +/turf/open/floor/plating, +/area/engineering/atmos/pumproom) "omL" = ( /obj/machinery/light_switch/directional/east, /obj/structure/cable, @@ -33750,10 +33792,6 @@ }, /turf/open/floor/grass, /area/maintenance/starboard/fore) -"omQ" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/cargo/lobby) "ont" = ( /obj/machinery/atmospherics/components/binary/thermomachine/freezer{ dir = 4 @@ -33776,6 +33814,10 @@ }, /turf/open/floor/iron, /area/engineering/main) +"ooa" = ( +/obj/structure/sign/poster/random/directional/west, +/turf/open/floor/iron/dark, +/area/service/chapel) "oob" = ( /obj/structure/cable, /turf/open/floor/engine, @@ -33787,16 +33829,6 @@ }, /turf/open/floor/iron, /area/hallway/secondary/entry) -"ool" = ( -/obj/machinery/camera/autoname/directional/south{ - c_tag = "Gas Storage"; - network = list("ss13","rd") - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/portable_atmospherics/canister/plasma, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark/textured_large, -/area/science/storage) "oox" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -33810,10 +33842,6 @@ }, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) -"opd" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/closed/wall, -/area/maintenance/starboard/fore) "opo" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -33842,6 +33870,12 @@ /obj/structure/cable, /turf/open/floor/iron, /area/commons/dorms) +"opr" = ( +/obj/structure/rack, +/obj/effect/spawner/random/clothing/costume, +/obj/structure/sign/poster/contraband/random/directional/north, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) "opG" = ( /obj/structure/toilet{ pixel_y = 8 @@ -33864,6 +33898,11 @@ }, /turf/open/floor/iron, /area/security/office) +"opM" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/sign/poster/contraband/random/directional/east, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) "opQ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -33898,11 +33937,6 @@ dir = 9 }, /area/science/research) -"oqF" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/flora/grass/brown, -/turf/open/misc/asteroid/snow/standard_air, -/area/science/research) "orl" = ( /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/north, @@ -33946,17 +33980,20 @@ /obj/machinery/light/directional/west, /turf/open/floor/iron/white, /area/medical/treatment_center) +"orZ" = ( +/obj/machinery/camera/autoname/directional/south{ + c_tag = "Gas Storage"; + network = list("ss13","rd") + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark/textured_large, +/area/science/storage) "osc" = ( /obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark, /area/engineering/lobby) -"osg" = ( -/obj/structure/table/glass, -/obj/item/storage/medkit/regular, -/obj/machinery/newscaster/directional/east, -/obj/effect/turf_decal/tile/green/full, -/turf/open/floor/iron/white/smooth_large, -/area/medical/medbay/aft) "osi" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -33967,14 +34004,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/ai_monitored/command/nuke_storage) -"osy" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/turf/open/floor/iron, -/area/cargo/lobby) "osN" = ( /obj/effect/landmark/event_spawn, /obj/effect/decal/cleanable/dirt, @@ -33987,20 +34016,16 @@ /obj/machinery/airalarm/directional/east, /turf/open/floor/iron, /area/cargo/qm) -"osS" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/blue{ - dir = 8 +"osU" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 9 }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/computer/med_data/laptop{ +/obj/effect/turf_decal/siding/wideplating/corner{ dir = 4 }, -/turf/open/floor/iron/white, -/area/medical/psychology) +/obj/structure/cable, +/turf/open/floor/iron, +/area/engineering/atmos/pumproom) "ota" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -34023,10 +34048,6 @@ }, /turf/open/floor/engine, /area/engineering/supermatter/room) -"oux" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible, -/turf/open/floor/iron, -/area/engineering/atmos/pumproom) "ouM" = ( /obj/structure/extinguisher_cabinet/directional/east, /obj/structure/cable, @@ -34076,10 +34097,6 @@ }, /turf/open/floor/engine, /area/engineering/supermatter/room) -"owm" = ( -/obj/structure/statue/snow/snowman, -/turf/open/misc/asteroid/snow/standard_air, -/area/science/research) "owD" = ( /turf/open/floor/iron/white, /area/medical/pharmacy) @@ -34214,6 +34231,12 @@ /obj/machinery/status_display/ai/directional/south, /turf/open/floor/iron/dark, /area/science/server) +"ozI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron, +/area/commons/locker) "ozO" = ( /obj/structure/cable, /obj/structure/sign/warning/securearea{ @@ -34298,11 +34321,6 @@ /obj/machinery/atmospherics/pipe/smart/simple/green/visible, /turf/open/floor/plating, /area/engineering/atmos) -"oBm" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/structure/sign/poster/random/directional/west, -/turf/open/floor/iron, -/area/engineering/atmos) "oBo" = ( /obj/effect/spawner/random/contraband/prison, /obj/structure/closet/crate, @@ -34461,11 +34479,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron/grimy, /area/maintenance/aft/greater) -"oHI" = ( -/obj/structure/table/reinforced, -/obj/item/storage/medkit/regular, -/turf/open/floor/iron, -/area/command/bridge) "oHR" = ( /obj/effect/turf_decal/tile/brown{ dir = 8 @@ -34592,10 +34605,14 @@ /obj/effect/spawner/random/trash/mess, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"oJA" = ( -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/cargo/lobby) +"oJH" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/structure/closet/crate/solarpanel_small, +/turf/open/floor/iron/dark, +/area/engineering/engine_smes) "oJI" = ( /obj/structure/sign/warning/pods{ pixel_x = 32 @@ -34790,6 +34807,11 @@ /obj/structure/cable, /turf/open/floor/iron/white, /area/medical/medbay/aft) +"oNp" = ( +/obj/effect/turf_decal/bot_white/right, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/command/gateway) "oNq" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /obj/effect/turf_decal/trimline/green/filled/corner{ @@ -34835,22 +34857,6 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/wood, /area/service/library) -"oOn" = ( -/obj/structure/table, -/obj/item/storage/medkit/regular, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/commons/locker) "oOF" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -34946,18 +34952,6 @@ /obj/effect/turf_decal/tile/blue, /turf/open/floor/iron, /area/hallway/primary/central) -"oQB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/computer/atmos_control/incinerator{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/maintenance/disposal/incinerator) -"oQF" = ( -/obj/structure/grille/broken, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) "oQH" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -34988,10 +34982,15 @@ /obj/structure/cable, /turf/open/floor/iron, /area/cargo/qm) -"oRI" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) +"oRT" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Air to Distro" + }, +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/siding/wideplating, +/turf/open/floor/iron, +/area/engineering/atmos/pumproom) "oSc" = ( /obj/machinery/atmospherics/pipe/layer_manifold/supply/visible, /turf/closed/wall/r_wall, @@ -35138,6 +35137,14 @@ /obj/structure/table/reinforced, /turf/open/floor/iron, /area/cargo/sorting) +"oVF" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/meter/layer4, +/turf/open/floor/plating, +/area/maintenance/starboard/upper) "oVG" = ( /obj/structure/cable, /obj/effect/turf_decal/stripes/corner{ @@ -35159,12 +35166,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/hallway/primary/port) -"oVZ" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/sign/poster/random/directional/south, -/turf/open/floor/plating, -/area/construction) "oWb" = ( /obj/machinery/hydroponics/constructable, /obj/effect/turf_decal/tile/blue, @@ -35202,6 +35203,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/science/misc_lab) +"oWz" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 10 + }, +/turf/open/floor/glass/reinforced, +/area/engineering/atmos/pumproom) "oWE" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -35214,6 +35221,12 @@ /obj/machinery/iv_drip, /turf/open/floor/iron/white, /area/medical/treatment_center) +"oWJ" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/command/gateway) "oXa" = ( /obj/effect/turf_decal/trimline/blue/filled/warning, /obj/structure/disposalpipe/segment, @@ -35288,19 +35301,6 @@ "oZI" = ( /turf/closed/wall, /area/commons/storage/tools) -"oZL" = ( -/obj/machinery/computer/atmos_control/tank/plasma_tank{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/engineering/atmos) "oZR" = ( /obj/structure/table/glass, /obj/item/cultivator, @@ -35347,17 +35347,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/construction) -"pbY" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Atmospherics North East" - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Distro to Waste" - }, -/obj/effect/turf_decal/siding/wideplating, -/turf/open/floor/iron, -/area/engineering/atmos/pumproom) "pcf" = ( /obj/structure/railing, /obj/effect/turf_decal/stripes/line, @@ -35368,6 +35357,10 @@ icon_state = "wood-broken7" }, /area/service/library) +"pcs" = ( +/obj/structure/barricade/wooden/snowed, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) "pcK" = ( /obj/machinery/light_switch/directional/north, /obj/machinery/light/directional/north, @@ -35402,12 +35395,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/aft) -"pel" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/glass/reinforced, -/area/engineering/atmos/pumproom) "peN" = ( /obj/machinery/firealarm/directional/north, /obj/machinery/light/directional/north, @@ -35427,17 +35414,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/security/courtroom) -"pfx" = ( -/obj/item/food/grown/carrot, -/turf/open/misc/asteroid/snow/standard_air, -/area/science/research) -"pfI" = ( -/obj/effect/turf_decal/siding/white, -/obj/effect/turf_decal/siding/white, -/obj/effect/spawner/random/entertainment/arcade, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/iron, -/area/hallway/secondary/service) "pfS" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -35447,29 +35423,6 @@ /obj/machinery/computer/gateway_control, /turf/open/floor/iron, /area/command/gateway) -"pgl" = ( -/obj/structure/rack, -/obj/item/storage/box/rubbershot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/box/rubbershot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/box/rubbershot, -/obj/item/storage/box/rubbershot, -/obj/item/storage/box/rubbershot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/storage/box/rubbershot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ai_monitored/security/armory) "pgn" = ( /obj/item/radio/intercom/prison/directional/north, /turf/open/floor/iron, @@ -35533,6 +35486,12 @@ }, /turf/open/floor/iron, /area/hallway/primary/central) +"php" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/iron, +/area/cargo/lobby) "phD" = ( /obj/structure/closet/radiation, /obj/effect/turf_decal/tile/yellow{ @@ -35599,18 +35558,6 @@ }, /turf/open/floor/wood, /area/command/heads_quarters/captain) -"pje" = ( -/obj/effect/turf_decal/bot_white/left, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/command/gateway) -"pju" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 10 - }, -/turf/open/floor/plating, -/area/engineering/atmos/pumproom) "pjN" = ( /obj/effect/landmark/event_spawn, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -35623,6 +35570,11 @@ /obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat_interior) +"pkz" = ( +/obj/structure/table/reinforced, +/obj/item/storage/medkit/regular, +/turf/open/floor/iron, +/area/command/bridge) "pkS" = ( /obj/machinery/door/airlock{ id_tag = "Dorm3"; @@ -35632,6 +35584,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood, /area/commons/dorms) +"plg" = ( +/obj/machinery/camera/directional/east{ + c_tag = "MiniSat External SouthWest"; + network = list("minisat"); + start_active = 1 + }, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) "plo" = ( /obj/machinery/door/airlock/external, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ @@ -35675,6 +35635,16 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron, /area/commons/vacant_room/commissary) +"pmx" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/sign/poster/official/random/directional/north, +/turf/open/floor/wood, +/area/hallway/secondary/service) "pmz" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -35690,12 +35660,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/hallway/primary/fore) -"pmH" = ( -/obj/structure/table, -/obj/item/storage/belt/utility, -/obj/item/storage/medkit/regular, -/turf/open/floor/iron, -/area/commons/storage/primary) "pmJ" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/iron, @@ -35704,14 +35668,6 @@ /obj/machinery/space_heater, /turf/open/floor/iron/showroomfloor, /area/engineering/atmos) -"pmO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/effect/turf_decal/siding/wideplating/corner{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/engineering/atmos/pumproom) "pmR" = ( /obj/machinery/firealarm/directional/south, /obj/machinery/camera{ @@ -35723,6 +35679,13 @@ }, /turf/open/floor/iron/white, /area/medical/treatment_center) +"pmT" = ( +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron, +/area/commons/locker) "pnA" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/effect/turf_decal/stripes/line{ @@ -35796,15 +35759,6 @@ /obj/item/radio/intercom/directional/east, /turf/open/floor/iron/white, /area/science/research) -"poa" = ( -/obj/structure/closet/bombcloset, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/light_switch/directional/east, -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/iron/white, -/area/science/mixing) "poh" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/research{ @@ -35853,6 +35807,14 @@ /obj/structure/cable, /turf/open/floor/plating, /area/engineering/storage/tech) +"ppq" = ( +/obj/effect/turf_decal/bot_white/left, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/ai_monitored/command/nuke_storage) "ppv" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -35898,12 +35860,6 @@ /obj/structure/cable, /turf/open/floor/plating/snowed/icemoon, /area/icemoon/surface/outdoors/nospawn) -"pqf" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrous_output{ - dir = 8 - }, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) "pqm" = ( /turf/open/floor/plating{ icon_state = "platingdmg2" @@ -35920,6 +35876,35 @@ /obj/item/shovel/spade, /turf/open/floor/plating, /area/maintenance/starboard/fore) +"pqO" = ( +/obj/effect/spawner/random/entertainment/arcade{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/sign/poster/random/directional/west, +/turf/open/floor/iron/cafeteria, +/area/hallway/secondary/exit/departure_lounge) +"prj" = ( +/obj/machinery/computer/atmos_control/mix_tank{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/iron, +/area/engineering/atmos/pumproom) +"prk" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/iron, +/area/cargo/lobby) "prp" = ( /obj/machinery/light_switch/directional/north{ pixel_x = 4 @@ -35967,6 +35952,16 @@ icon_state = "wood-broken" }, /area/maintenance/space_hut/cabin) +"psc" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/airalarm/directional/north, +/obj/structure/reagent_dispensers/fueltank/large, +/turf/open/floor/iron/dark, +/area/engineering/engine_smes) "psp" = ( /obj/structure/chair{ dir = 8 @@ -35982,12 +35977,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, /turf/open/floor/plating, /area/engineering/atmos) -"psu" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/iron/dark/textured_large, -/area/science/storage) "psz" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ @@ -35996,19 +35985,17 @@ /obj/machinery/computer/holodeck, /turf/open/floor/iron, /area/commons/fitness) -"psC" = ( -/obj/docking_port/stationary/random/icemoon{ - dir = 8; - id = "pod_2_lavaland"; - name = "lavaland" - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/unexplored/rivers/no_monsters) "psY" = ( /obj/structure/closet, /obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/maintenance/port/greater) +"ptd" = ( +/obj/machinery/computer/bank_machine, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ai_monitored/command/nuke_storage) "ptr" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ dir = 10 @@ -36047,6 +36034,27 @@ /obj/structure/table/wood, /turf/open/floor/wood, /area/commons/dorms) +"pud" = ( +/obj/structure/table/glass, +/obj/item/storage/medkit/fire{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/medkit/fire, +/obj/item/storage/medkit/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "First-Aid Supplies"; + red_alert_access = 1; + req_access_txt = "5" + }, +/obj/machinery/status_display/evac/directional/west, +/obj/effect/turf_decal/tile/blue/full, +/turf/open/floor/iron/dark/smooth_large, +/area/maintenance/department/medical) "puh" = ( /obj/structure/chair/stool/directional/south, /obj/effect/decal/cleanable/dirt, @@ -36269,12 +36277,12 @@ "pxI" = ( /turf/closed/wall, /area/service/janitor) -"pxR" = ( -/obj/structure/sign/warning/securearea{ - pixel_x = 32 +"pxM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/monitored/air_output{ + dir = 1 }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) +/turf/open/floor/engine/air, +/area/engineering/atmos) "pxS" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -36339,6 +36347,12 @@ dir = 1 }, /area/engineering/atmos/storage/gas) +"pyS" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) "pzF" = ( /obj/structure/cable, /turf/open/floor/carpet, @@ -36383,14 +36397,40 @@ }, /turf/open/floor/iron, /area/commons/storage/tools) +"pBR" = ( +/obj/effect/turf_decal/bot_white/right, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/ai_monitored/command/nuke_storage) "pCb" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/maintenance/port/greater) +"pCd" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/incinerator_input{ + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) "pCg" = ( /obj/machinery/hydroponics/soil, /turf/open/floor/grass, /area/service/hydroponics) +"pCi" = ( +/obj/structure/sign/painting/library{ + pixel_y = 32 + }, +/obj/structure/table, +/obj/machinery/microwave, +/obj/structure/sign/poster/official/random/directional/east, +/turf/open/floor/iron, +/area/hallway/secondary/service) "pCj" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -36400,6 +36440,10 @@ }, /turf/open/floor/plating, /area/science/xenobiology) +"pCq" = ( +/obj/item/stack/cable_coil, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) "pCw" = ( /obj/effect/turf_decal/bot, /obj/structure/window/reinforced{ @@ -36497,11 +36541,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /turf/closed/wall/r_wall, /area/science/mixing/chamber) -"pEQ" = ( -/obj/machinery/modular_computer/console/preset/cargochat/engineering, -/obj/effect/turf_decal/tile/brown/fourcorners, -/turf/open/floor/iron/dark, -/area/engineering/lobby) "pFL" = ( /obj/structure/disposalpipe/segment{ dir = 10 @@ -36665,6 +36704,14 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/large, /area/engineering/storage_shared) +"pJC" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/iron, +/area/cargo/lobby) "pJG" = ( /obj/machinery/space_heater, /turf/open/floor/plating, @@ -36793,6 +36840,14 @@ /obj/item/trash/can, /turf/open/floor/iron, /area/security/prison) +"pLU" = ( +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/computer/station_alert{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/ai_monitored/turret_protected/aisat_interior) "pMp" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -36820,26 +36875,6 @@ /obj/machinery/light/directional/west, /turf/open/floor/iron/dark, /area/command/gateway) -"pMJ" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/table, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/gloves/color/yellow, -/obj/structure/cable, -/obj/item/mod/module/plasma_stabilizer, -/obj/item/mod/module/thermal_regulator, -/obj/item/stock_parts/cell/emproof{ - pixel_x = -4; - pixel_y = -1 - }, -/turf/open/floor/iron/dark, -/area/engineering/engine_smes) "pMW" = ( /obj/structure/sign/warning/deathsposal{ pixel_y = 32 @@ -36884,16 +36919,6 @@ /obj/machinery/firealarm/directional/south, /turf/open/floor/iron, /area/hallway/secondary/entry) -"pNK" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/engineering/atmos) "pNM" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -37004,11 +37029,10 @@ /obj/machinery/status_display/evac/directional/south, /turf/open/floor/iron, /area/hallway/primary/central) -"pQD" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/commons/locker) +"pQy" = ( +/obj/structure/flora/tree/pine, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) "pQM" = ( /obj/effect/turf_decal/siding/yellow{ dir = 5 @@ -37088,16 +37112,6 @@ }, /turf/open/floor/carpet, /area/service/library) -"pST" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 9 - }, -/obj/effect/turf_decal/siding/wideplating{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/engineering/atmos/pumproom) "pTk" = ( /obj/structure/extinguisher_cabinet/directional/north, /obj/effect/turf_decal/tile/neutral{ @@ -37213,14 +37227,6 @@ }, /turf/open/floor/iron/white, /area/medical/medbay/aft) -"pVd" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/tank_dispenser, -/turf/open/floor/iron/dark, -/area/engineering/engine_smes) "pVe" = ( /obj/machinery/computer/pod/old/mass_driver_controller/chapelgun{ pixel_x = 24 @@ -37258,11 +37264,6 @@ /obj/effect/spawner/structure/window/reinforced/plasma, /turf/open/floor/plating, /area/engineering/supermatter) -"pWM" = ( -/obj/machinery/space_heater, -/obj/structure/sign/poster/official/random/directional/north, -/turf/open/floor/plating, -/area/maintenance/port/aft) "pXv" = ( /obj/effect/turf_decal/siding/wood, /obj/effect/turf_decal/siding/wood/corner{ @@ -37617,13 +37618,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/cafeteria, /area/command/heads_quarters/rd) -"qfH" = ( -/obj/structure/light_construct/directional/south, -/obj/structure/sign/poster/contraband/random/directional/south, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/maintenance/port/aft) "qfP" = ( /obj/effect/turf_decal/tile/yellow{ dir = 1 @@ -37671,6 +37665,16 @@ /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/iron, /area/maintenance/starboard/fore) +"qhq" = ( +/obj/machinery/computer/atmos_control/nitrogen_tank{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/iron, +/area/engineering/atmos) "qhz" = ( /obj/structure/cable, /turf/open/floor/iron, @@ -37865,15 +37869,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/hallway/primary/central) -"qlE" = ( -/obj/machinery/computer/atmos_control/tank/nitrous_tank{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron/white/corner, -/area/engineering/atmos) "qlI" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -37977,6 +37972,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/security/office) +"qod" = ( +/obj/structure/rack, +/obj/machinery/status_display/evac/directional/south, +/obj/item/storage/box/donkpockets, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ai_monitored/turret_protected/aisat_interior) "qoj" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" @@ -38080,6 +38082,11 @@ /obj/structure/closet, /turf/open/floor/plating, /area/maintenance/starboard/fore) +"qqJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/sign/poster/random/directional/south, +/turf/open/floor/plating, +/area/maintenance/aft/greater) "qqN" = ( /obj/structure/table/glass, /obj/item/seeds/glowshroom, @@ -38119,6 +38126,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/command/teleporter) +"qrw" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/command/heads_quarters/ce) "qsi" = ( /obj/machinery/atmospherics/components/trinary/mixer{ dir = 1; @@ -38167,6 +38179,15 @@ /obj/item/radio/intercom/directional/north, /turf/open/floor/iron/dark, /area/science/robotics/lab) +"qtW" = ( +/obj/machinery/light/directional/north, +/obj/machinery/meter/monitored/waste_loop, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating/corner, +/turf/open/floor/iron, +/area/engineering/atmos/pumproom) "quR" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/closed/wall/r_wall, @@ -38192,12 +38213,6 @@ }, /turf/open/floor/iron, /area/cargo/storage) -"qvi" = ( -/obj/effect/spawner/random/trash/mess, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/floor/iron, -/area/maintenance/starboard/fore) "qvj" = ( /obj/effect/landmark/start/hangover, /obj/effect/landmark/event_spawn, @@ -38237,12 +38252,6 @@ }, /turf/open/floor/iron/white, /area/medical/medbay/aft) -"qwi" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/commons/locker) "qwG" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, @@ -38251,13 +38260,6 @@ /obj/effect/spawner/random/vending/snackvend, /turf/open/floor/iron/dark, /area/hallway/secondary/entry) -"qxf" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/meter/atmos/layer4, -/turf/open/floor/plating, -/area/maintenance/department/medical/central) "qyf" = ( /turf/open/floor/iron/dark, /area/command/heads_quarters/cmo) @@ -38283,36 +38285,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"qyL" = ( -/obj/item/stack/rods/fifty, -/obj/structure/rack, -/obj/item/stack/cable_coil{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil{ - amount = 5 - }, -/obj/item/stack/sheet/mineral/plasma{ - amount = 10 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/north, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/iron, -/area/maintenance/department/electrical) "qyN" = ( /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark, /area/hallway/primary/central) -"qyV" = ( -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/open/floor/iron, -/area/science/mixing) "qyW" = ( /obj/structure/sign/poster/official/wtf_is_co2, /turf/closed/wall/r_wall, @@ -38347,15 +38323,6 @@ /obj/item/radio/intercom/directional/north, /turf/open/floor/iron/white, /area/medical/medbay/central) -"qAB" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_y = 4 - }, -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ai_monitored/turret_protected/aisat_interior) "qAH" = ( /obj/structure/railing{ dir = 1 @@ -38388,6 +38355,16 @@ }, /turf/open/floor/iron, /area/command/gateway) +"qAZ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wideplating{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/engineering/atmos/pumproom) "qBm" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -38519,6 +38496,10 @@ /obj/structure/cable, /turf/open/floor/iron/white, /area/medical/storage) +"qFw" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/commons/fitness) "qFN" = ( /obj/item/radio/intercom/directional/west, /obj/structure/rack, @@ -38531,21 +38512,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/maintenance/port/fore) -"qGu" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/computer/secure_data{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/firealarm/directional/west, -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/iron, -/area/hallway/secondary/exit/departure_lounge) "qGZ" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp/green, @@ -38581,12 +38547,13 @@ /obj/machinery/light/small/directional/north, /turf/open/floor/iron/freezer, /area/command/heads_quarters/captain) -"qHE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/carbon_output{ - dir = 8 - }, -/turf/open/floor/engine/co2, -/area/engineering/atmos) +"qHB" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/hallway/primary/port) "qIe" = ( /obj/effect/decal/cleanable/glass, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -38735,6 +38702,17 @@ /obj/machinery/light/directional/north, /turf/open/floor/wood, /area/commons/vacant_room/office) +"qMc" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/engineering/glass{ + name = "Server Room"; + req_access_txt = "61" + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/tcommsat/computer) "qMd" = ( /obj/machinery/light/directional/south, /obj/structure/kitchenspike, @@ -38743,30 +38721,6 @@ }, /turf/open/floor/iron/freezer, /area/service/kitchen/coldroom) -"qMj" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/machinery/firealarm/directional/east, -/obj/structure/table/reinforced, -/obj/item/stack/wrapping_paper{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/stack/package_wrap{ - pixel_x = -1; - pixel_y = -1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/item/dest_tagger, -/turf/open/floor/iron, -/area/cargo/sorting) "qMk" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -38797,12 +38751,6 @@ /obj/machinery/disposal/bin, /turf/open/floor/iron, /area/commons/storage/primary) -"qNb" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 6 - }, -/turf/open/floor/glass/reinforced, -/area/engineering/atmos/pumproom) "qNy" = ( /turf/closed/wall, /area/engineering/atmos/storage/gas) @@ -38839,17 +38787,6 @@ /obj/structure/closet/toolcloset, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"qPe" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light_switch/directional/east, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/command/heads_quarters/ce) "qPs" = ( /obj/machinery/chem_dispenser, /obj/structure/window/reinforced{ @@ -38872,6 +38809,12 @@ }, /turf/open/floor/plating, /area/cargo/storage) +"qQx" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) "qQD" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -39067,12 +39010,6 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"qUQ" = ( -/obj/machinery/status_display/ai/directional/south, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ai_monitored/turret_protected/aisat_interior) "qVH" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -39103,6 +39040,11 @@ /obj/item/cigbutt, /turf/open/floor/plating, /area/maintenance/starboard/upper) +"qXf" = ( +/obj/effect/turf_decal/tile/brown/fourcorners, +/obj/machinery/computer/department_orders/engineering, +/turf/open/floor/iron/dark, +/area/engineering/lobby) "qXF" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -39128,6 +39070,10 @@ /obj/effect/spawner/random/maintenance/three, /turf/open/floor/iron/white, /area/maintenance/port/fore) +"qYh" = ( +/obj/structure/cable, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) "qYC" = ( /obj/machinery/light_switch/directional/north, /obj/structure/cable, @@ -39271,6 +39217,19 @@ /obj/structure/cable, /turf/open/floor/iron, /area/hallway/primary/central) +"rdy" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/vault{ + name = "Vault"; + req_access_txt = "53" + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/cable, +/obj/machinery/navbeacon/wayfinding, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/ai_monitored/command/nuke_storage) "rdE" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -39280,6 +39239,10 @@ /obj/structure/cable, /turf/open/floor/iron/white, /area/medical/medbay/central) +"rdV" = ( +/obj/structure/marker_beacon/burgundy, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) "reg" = ( /obj/structure/railing/corner{ dir = 8 @@ -39420,6 +39383,14 @@ /obj/effect/landmark/xeno_spawn, /turf/open/floor/iron, /area/maintenance/department/electrical) +"rjc" = ( +/obj/machinery/computer/mech_bay_power_console{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/sign/poster/random/directional/west, +/turf/open/floor/iron, +/area/science/robotics/mechbay) "rjh" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -39467,13 +39438,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/construction/mining/aux_base) -"rkE" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/hallway/primary/port) "rkI" = ( /obj/machinery/door/firedoor, /obj/structure/cable, @@ -39590,6 +39554,19 @@ }, /turf/open/floor/iron, /area/engineering/atmos) +"rmC" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Chief Engineer"; + req_access_txt = "56" + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/command/heads_quarters/ce) "rmD" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -39611,14 +39588,25 @@ /obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/security/interrogation) -"rnO" = ( -/obj/machinery/computer/mech_bay_power_console{ - dir = 4 +"rnx" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/closet/secure_closet/personal{ + anchored = 1 }, -/obj/structure/cable, -/obj/structure/sign/poster/random/directional/west, /turf/open/floor/iron, -/area/science/robotics/mechbay) +/area/commons/locker) +"rnN" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 3; + height = 15; + id = "arrivals_stationary"; + name = "arrivals"; + roundstart_template = /datum/map_template/shuttle/arrival/box; + width = 7 + }, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) "rnW" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -39810,11 +39798,6 @@ }, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) -"rsw" = ( -/obj/structure/cable, -/obj/structure/sign/poster/random/directional/south, -/turf/open/floor/plating, -/area/maintenance/port/fore) "rsK" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -39864,6 +39847,14 @@ /obj/effect/turf_decal/stripes/corner, /turf/open/floor/plating, /area/ai_monitored/turret_protected/aisat/atmos) +"ruo" = ( +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/open/floor/iron, +/area/science/mixing) "rup" = ( /turf/closed/wall/r_wall, /area/command/bridge) @@ -39946,6 +39937,39 @@ }, /turf/open/floor/iron/white, /area/science/xenobiology) +"rvl" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/suit/armor/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/machinery/light/directional/north, +/obj/item/clothing/head/helmet/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/riot, +/obj/item/clothing/head/helmet/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/shield/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/shield/riot, +/obj/item/shield/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ai_monitored/security/armory) "rvn" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -40075,6 +40099,13 @@ /obj/structure/cable, /turf/open/floor/iron, /area/commons/storage/art) +"rzi" = ( +/obj/structure/table/glass, +/obj/item/storage/medkit/regular, +/obj/machinery/newscaster/directional/east, +/obj/effect/turf_decal/tile/green/full, +/turf/open/floor/iron/white/smooth_large, +/area/medical/medbay/aft) "rzq" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=1"; @@ -40133,14 +40164,6 @@ }, /turf/open/floor/iron/cafeteria, /area/service/kitchen) -"rAn" = ( -/obj/structure/table, -/obj/item/storage/box/firingpins, -/obj/item/storage/box/firingpins, -/obj/item/key/security, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ai_monitored/security/armory) "rAo" = ( /obj/structure/table, /obj/item/hand_tele, @@ -40159,12 +40182,6 @@ }, /turf/open/floor/iron, /area/security/brig) -"rBd" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrogen_output{ - dir = 1 - }, -/turf/open/floor/engine/n2, -/area/engineering/atmos) "rBh" = ( /obj/machinery/airalarm/directional/south, /obj/structure/closet/emcloset, @@ -40191,28 +40208,6 @@ dir = 1 }, /area/hallway/primary/starboard) -"rCf" = ( -/obj/structure/table/glass, -/obj/item/storage/medkit/brute{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/medkit/brute, -/obj/item/storage/medkit/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/blue/full, -/turf/open/floor/iron/dark/smooth_large, -/area/maintenance/department/medical) -"rCh" = ( -/obj/docking_port/stationary/random/icemoon{ - dir = 8; - id = "pod_lavaland"; - name = "lavaland" - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/unexplored/rivers/no_monsters) "rCp" = ( /obj/structure/grille, /turf/open/floor/plating, @@ -40288,9 +40283,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/white, /area/science/mixing) -"rDK" = ( -/turf/open/floor/glass/reinforced, -/area/engineering/atmos/pumproom) "rDU" = ( /obj/effect/turf_decal/siding/wood{ dir = 5 @@ -40381,6 +40373,12 @@ }, /turf/open/floor/iron/white, /area/medical/treatment_center) +"rFu" = ( +/obj/structure/sign/poster/contraband/random/directional/west, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/aft) "rGb" = ( /obj/structure/fireplace, /turf/open/floor/wood, @@ -40542,12 +40540,6 @@ }, /turf/open/floor/iron, /area/engineering/lobby) -"rIr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/iron/white, -/area/science/robotics/lab) "rJa" = ( /obj/machinery/vending/modularpc, /turf/open/floor/iron, @@ -40576,6 +40568,10 @@ }, /turf/open/floor/iron, /area/engineering/lobby) +"rKa" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/iron, +/area/cargo/lobby) "rKh" = ( /obj/effect/turf_decal/trimline/green/filled/corner{ dir = 4 @@ -40694,11 +40690,18 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"rMJ" = ( -/obj/machinery/power/tracker, -/obj/structure/cable, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) +"rLZ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/chair/sofa/corp/right{ + dir = 4; + pixel_x = -4 + }, +/obj/machinery/light/small/directional/south, +/obj/structure/sign/poster/random/directional/west, +/turf/open/floor/iron/grimy, +/area/service/bar/atrium) "rML" = ( /obj/structure/table, /obj/item/storage/crayons, @@ -40779,11 +40782,6 @@ icon_state = "damaged3" }, /area/icemoon/surface/outdoors/nospawn) -"rPe" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/commons/locker) "rPh" = ( /obj/structure/chair/sofa/corp/right, /obj/item/radio/intercom/directional/north, @@ -40904,6 +40902,15 @@ /obj/item/radio/intercom/directional/west, /turf/open/floor/iron/dark, /area/engineering/supermatter/room) +"rSr" = ( +/obj/machinery/firealarm/directional/north, +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/airalarm/directional/east, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron, +/area/cargo/lobby) "rSw" = ( /obj/structure/extinguisher_cabinet/directional/south, /obj/effect/turf_decal/tile/blue{ @@ -40930,18 +40937,6 @@ /obj/machinery/biogenerator, /turf/open/floor/iron, /area/service/hydroponics/garden) -"rTs" = ( -/obj/structure/table, -/obj/item/storage/box/chemimp{ - pixel_x = 6 - }, -/obj/item/storage/box/trackimp{ - pixel_x = -3 - }, -/obj/item/storage/lockbox/loyalty, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ai_monitored/security/armory) "rTt" = ( /obj/machinery/conveyor{ dir = 4; @@ -40967,6 +40962,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/security/prison) +"rTF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/turf/open/floor/plating, +/area/engineering/atmos/pumproom) "rTJ" = ( /turf/open/floor/plating{ icon_state = "panelscorched" @@ -40989,6 +40989,14 @@ /obj/structure/sign/warning/securearea, /turf/closed/wall, /area/maintenance/aft/greater) +"rUd" = ( +/obj/docking_port/stationary/random/icemoon{ + dir = 4; + id = "pod_3_lavaland"; + name = "lavaland" + }, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) "rUm" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -40998,6 +41006,12 @@ }, /turf/open/floor/plating, /area/maintenance/department/medical/central) +"rUu" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 6 + }, +/turf/open/floor/glass/reinforced, +/area/engineering/atmos/pumproom) "rUv" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -41043,6 +41057,12 @@ /obj/item/aicard, /turf/open/floor/iron/cafeteria, /area/command/heads_quarters/rd) +"rUU" = ( +/obj/machinery/computer/station_alert, +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/engineering/engine_smes) "rVb" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -41063,15 +41083,16 @@ /obj/effect/turf_decal/tile/blue/full, /turf/open/floor/iron/large, /area/medical/treatment_center) -"rVu" = ( -/obj/structure/lattice/catwalk, -/turf/open/misc/asteroid/snow/icemoon, -/area/maintenance/aft/greater) "rVx" = ( /obj/machinery/airalarm/directional/west, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/cargo/sorting) +"rVM" = ( +/obj/machinery/light/directional/east, +/obj/structure/sign/poster/official/random/directional/east, +/turf/open/floor/iron, +/area/hallway/primary/central) "rVS" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -41088,13 +41109,6 @@ /obj/structure/grille/broken, /turf/open/floor/plating, /area/maintenance/department/medical/central) -"rWi" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/rack, -/obj/effect/spawner/random/clothing/costume, -/obj/item/crowbar, -/turf/open/floor/iron, -/area/commons/locker) "rWw" = ( /obj/structure/closet, /obj/effect/spawner/random/maintenance/four, @@ -41163,6 +41177,12 @@ }, /turf/open/floor/iron/dark, /area/medical/storage) +"rXL" = ( +/obj/machinery/research/anomaly_refinery, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron, +/area/science/mixing/launch) "rYd" = ( /obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, @@ -41202,6 +41222,21 @@ }, /turf/open/floor/iron, /area/science/xenobiology) +"rYK" = ( +/obj/structure/table, +/obj/item/storage/medkit/regular{ + pixel_x = 6; + pixel_y = -5 + }, +/obj/item/multitool, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/item/trash/cheesie, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/cargo/office) "rYP" = ( /obj/structure/closet/wardrobe/pjs, /obj/effect/turf_decal/tile/neutral, @@ -41221,14 +41256,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/pink/hidden, /turf/closed/wall, /area/maintenance/port/fore) -"rZf" = ( -/obj/effect/turf_decal/bot_white/right, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/ai_monitored/command/nuke_storage) "rZh" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -41329,6 +41356,10 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron, /area/hallway/secondary/service) +"scw" = ( +/obj/structure/lattice/catwalk, +/turf/open/misc/asteroid/snow/icemoon, +/area/maintenance/aft/greater) "scD" = ( /obj/structure/table/wood, /obj/item/book/manual/wiki/security_space_law, @@ -41508,6 +41539,12 @@ /obj/machinery/light/directional/east, /turf/open/openspace, /area/service/kitchen) +"sgE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/oxygen_output{ + dir = 1 + }, +/turf/open/floor/engine/o2, +/area/engineering/atmos) "sgK" = ( /obj/machinery/shower{ dir = 1 @@ -41590,9 +41627,6 @@ }, /turf/open/floor/iron/white, /area/medical/storage) -"siA" = ( -/turf/closed/wall/r_wall, -/area/engineering/atmos/pumproom) "siE" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating{ @@ -41647,6 +41681,11 @@ /obj/effect/turf_decal/siding/wood/corner, /turf/open/floor/wood, /area/commons/vacant_room/office) +"sjx" = ( +/obj/machinery/photocopier, +/obj/structure/sign/poster/official/random/directional/east, +/turf/open/floor/wood, +/area/service/library) "sjI" = ( /obj/machinery/firealarm/directional/west, /obj/machinery/light/directional/south, @@ -41694,6 +41733,12 @@ /obj/effect/turf_decal/tile/blue/full, /turf/open/floor/iron/large, /area/medical/treatment_center) +"skc" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/plasma_input{ + dir = 8 + }, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) "sko" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -41776,6 +41821,12 @@ }, /turf/open/floor/iron, /area/hallway/primary/starboard) +"slC" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/carbon_input{ + dir = 8 + }, +/turf/open/floor/engine/co2, +/area/engineering/atmos) "slD" = ( /obj/structure/closet/crate/freezer/blood, /turf/open/floor/iron/white, @@ -41843,18 +41894,18 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"snz" = ( -/obj/machinery/computer/bank_machine, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ai_monitored/command/nuke_storage) "snI" = ( /obj/machinery/atmospherics/components/unary/passive_vent{ dir = 1 }, /turf/open/floor/plating/snowed/icemoon, /area/icemoon/surface/outdoors/nospawn) +"snK" = ( +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark/textured_large, +/area/science/storage) "snW" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -41885,6 +41936,10 @@ }, /turf/open/floor/iron, /area/cargo/miningdock) +"soo" = ( +/obj/machinery/air_sensor/carbon_tank, +/turf/open/floor/engine/co2, +/area/engineering/atmos) "soq" = ( /obj/machinery/conveyor{ dir = 8; @@ -42026,6 +42081,20 @@ }, /turf/open/floor/iron, /area/cargo/storage) +"srI" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/door/window/southleft{ + name = "Court Cell"; + req_access_txt = "2" + }, +/turf/open/floor/iron/dark, +/area/security/courtroom) "srL" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -42043,20 +42112,6 @@ /obj/machinery/duct, /turf/open/floor/iron, /area/service/hydroponics) -"srV" = ( -/obj/structure/rack, -/obj/item/storage/box/teargas{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/box/handcuffs, -/obj/item/storage/box/flashbangs{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ai_monitored/security/armory) "sse" = ( /obj/effect/landmark/start/shaft_miner, /obj/structure/cable, @@ -42187,6 +42242,11 @@ /obj/machinery/vending/cigarette, /turf/open/floor/wood, /area/command/meeting_room) +"sve" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/iron, +/area/cargo/sorting) "svg" = ( /obj/effect/turf_decal/tile/blue, /obj/machinery/door/firedoor, @@ -42206,6 +42266,11 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/carpet, /area/commons/dorms) +"svV" = ( +/obj/structure/table/wood, +/obj/item/storage/medkit/regular, +/turf/open/floor/iron, +/area/commons/dorms) "swc" = ( /obj/structure/filingcabinet, /turf/open/floor/iron/grimy, @@ -42296,29 +42361,12 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/construction) -"szb" = ( -/obj/structure/table/glass, -/obj/item/storage/medkit/toxin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/medkit/toxin, -/obj/item/storage/medkit/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/northleft{ - icon_state = "right"; - name = "First-Aid Supplies"; - red_alert_access = 1; - req_access_txt = "5" - }, -/obj/effect/turf_decal/tile/blue/full, -/turf/open/floor/iron/dark/smooth_large, -/area/medical/storage) +"szd" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/commons/locker) "szo" = ( /obj/structure/frame/machine, /turf/open/floor/plating, @@ -42554,10 +42602,6 @@ "sEf" = ( /turf/closed/wall, /area/service/kitchen/coldroom) -"sEl" = ( -/obj/item/stack/rods, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) "sEn" = ( /obj/effect/turf_decal/tile/yellow{ dir = 1 @@ -42645,6 +42689,17 @@ /obj/structure/cable, /turf/open/floor/iron, /area/hallway/primary/central) +"sGu" = ( +/obj/machinery/computer/station_alert{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen/ce{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/command/heads_quarters/ce) "sGO" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -42742,12 +42797,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/security/interrogation) -"sKp" = ( -/obj/structure/closet/bombcloset, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/structure/sign/poster/official/random/directional/north, -/turf/open/floor/iron/white, -/area/science/mixing) "sKx" = ( /obj/structure/showcase/cyborg/old{ dir = 4; @@ -42817,12 +42866,6 @@ }, /turf/open/floor/iron, /area/security/office) -"sLC" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/manifold{ - dir = 4 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) "sLX" = ( /obj/effect/turf_decal/tile/red{ dir = 8 @@ -43068,19 +43111,21 @@ /obj/structure/cable, /turf/open/floor/iron/white, /area/science/robotics/lab) -"sQR" = ( -/obj/machinery/light/directional/north, -/obj/machinery/meter/atmos/atmos_waste_loop, -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 8 - }, -/obj/effect/turf_decal/siding/wideplating/corner, -/turf/open/floor/iron, -/area/engineering/atmos/pumproom) "sRN" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/service/kitchen/diner) +"sSd" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/light/small/directional/west, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/iron/dark, +/area/engineering/engine_smes) "sSi" = ( /turf/open/floor/plating, /area/commons/storage/emergency/port) @@ -43110,14 +43155,6 @@ /obj/item/key/janitor, /turf/open/floor/iron, /area/service/janitor) -"sTH" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/iron, -/area/science/mixing) "sTM" = ( /obj/structure/closet, /obj/effect/spawner/random/maintenance/two, @@ -43200,13 +43237,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/science/storage) -"sVR" = ( -/obj/structure/closet/toolcloset, -/obj/machinery/status_display/evac/directional/south, -/obj/machinery/light/directional/west, -/obj/structure/sign/poster/official/random/directional/west, -/turf/open/floor/iron/dark, -/area/engineering/storage) "sWi" = ( /obj/machinery/door/airlock/engineering/glass{ name = "Engineering Foyer"; @@ -43279,6 +43309,18 @@ }, /turf/open/floor/iron, /area/maintenance/port/fore) +"sXF" = ( +/obj/structure/sign/poster/contraband/random/directional/west, +/turf/open/floor/plating, +/area/maintenance/port/greater) +"sXN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/south, +/obj/machinery/computer/atmos_control/nocontrol/ordnancemix{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/science/mixing) "sXX" = ( /obj/machinery/camera/directional/west{ c_tag = "Security Post - Science"; @@ -43310,6 +43352,31 @@ /obj/machinery/atmospherics/pipe/heat_exchanging/simple, /turf/open/floor/plating/snowed/smoothed/icemoon, /area/icemoon/surface/outdoors/nospawn) +"sYt" = ( +/obj/effect/turf_decal/bot_white/left, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/command/gateway) +"sYA" = ( +/obj/structure/cable, +/obj/structure/table, +/obj/item/storage/medkit/regular, +/obj/item/storage/medkit/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/iron/white, +/area/medical/medbay/lobby) "sYH" = ( /obj/machinery/door/airlock/maintenance{ req_one_access_txt = "8;12" @@ -43411,10 +43478,6 @@ /obj/structure/grille/broken, /turf/open/floor/plating, /area/maintenance/department/medical/central) -"tcH" = ( -/obj/structure/sign/poster/official/random/directional/east, -/turf/open/floor/iron, -/area/hallway/primary/central) "tcP" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/northleft{ @@ -43481,27 +43544,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/hallway/primary/port) -"tdU" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/iron, -/area/engineering/atmos/pumproom) "tel" = ( /turf/closed/wall, /area/cargo/sorting) @@ -43587,6 +43629,16 @@ }, /turf/open/floor/iron, /area/science/xenobiology) +"tgp" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/engineering/atmos) "tgF" = ( /obj/structure/table, /obj/item/wrench, @@ -43616,6 +43668,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/security/brig) +"tih" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/cargo/lobby) "tii" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 8 @@ -43683,10 +43739,6 @@ }, /turf/open/floor/iron, /area/engineering/atmos) -"tjJ" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/iron, -/area/cargo/lobby) "tjK" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, @@ -43805,6 +43857,18 @@ }, /turf/open/floor/plating, /area/cargo/sorting) +"tlL" = ( +/obj/item/grenade/barrier{ + pixel_x = 4 + }, +/obj/item/grenade/barrier, +/obj/item/grenade/barrier{ + pixel_x = -4 + }, +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ai_monitored/security/armory) "tlM" = ( /obj/structure/closet/secure_closet/security/engine, /obj/machinery/requests_console/directional/north{ @@ -43861,15 +43925,6 @@ /obj/effect/mapping_helpers/airlock/abandoned, /turf/open/floor/plating, /area/maintenance/fore/greater) -"tnD" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/iron, -/area/science/mixing) "tnE" = ( /obj/effect/turf_decal/tile/red{ dir = 4 @@ -43973,14 +44028,6 @@ }, /turf/open/floor/iron, /area/commons/storage/mining) -"tpd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/cargo/lobby) "tpg" = ( /obj/machinery/airalarm/directional/south, /obj/machinery/camera{ @@ -44014,20 +44061,27 @@ "tpQ" = ( /turf/closed/wall, /area/service/hydroponics/garden) -"tpY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/poster/contraband/random/directional/south, -/turf/open/floor/plating, -/area/maintenance/port/greater) "tqd" = ( /obj/item/trash/cheesie, /obj/machinery/light/small/directional/west, /turf/open/floor/plating, /area/maintenance/port/greater) +"tqm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/cargo/lobby) +"tqz" = ( +/obj/structure/sign/warning/securearea{ + pixel_y = -32 + }, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) "tqC" = ( /obj/structure/table/wood, /obj/item/storage/dice, @@ -44054,11 +44108,6 @@ /obj/effect/turf_decal/tile/blue/full, /turf/open/floor/iron/large, /area/medical/treatment_center) -"trX" = ( -/obj/machinery/light/directional/north, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/iron/freezer, -/area/service/kitchen/coldroom) "tsk" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 @@ -44070,6 +44119,12 @@ /obj/item/storage/toolbox/emergency, /turf/open/floor/iron, /area/hallway/primary/port) +"tsP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrous_output{ + dir = 8 + }, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) "tto" = ( /obj/machinery/gateway/centerstation, /turf/open/floor/iron/dark, @@ -44218,6 +44273,11 @@ }, /turf/open/floor/iron, /area/commons/locker) +"twb" = ( +/obj/machinery/nuclearbomb/selfdestruct, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ai_monitored/command/nuke_storage) "twF" = ( /obj/effect/landmark/start/chemist, /obj/structure/chair/office/light{ @@ -44305,16 +44365,19 @@ /obj/machinery/airalarm/directional/north, /turf/open/floor/iron, /area/hallway/primary/starboard) -"tyx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/cargo/lobby) "tyA" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 }, /turf/open/floor/iron/white, /area/medical/medbay/central) +"tyE" = ( +/obj/structure/closet/toolcloset, +/obj/machinery/status_display/evac/directional/south, +/obj/machinery/light/directional/west, +/obj/structure/sign/poster/official/random/directional/west, +/turf/open/floor/iron/dark, +/area/engineering/storage) "tyI" = ( /obj/machinery/camera/directional/west{ c_tag = "Brig Control Room" @@ -44335,6 +44398,26 @@ }, /turf/open/floor/iron, /area/service/janitor) +"tzl" = ( +/obj/structure/table, +/obj/machinery/light/small/directional/north, +/obj/item/folder{ + pixel_x = 3 + }, +/obj/item/phone{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"tzm" = ( +/obj/structure/table, +/obj/item/storage/belt/utility, +/obj/item/storage/medkit/regular, +/turf/open/floor/iron, +/area/commons/storage/primary) "tzy" = ( /obj/machinery/firealarm/directional/south, /obj/structure/table, @@ -44395,6 +44478,26 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/hallway/secondary/entry) +"tBb" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/table, +/obj/item/storage/box/lights/mixed, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stock_parts/cell/emproof, +/obj/item/stock_parts/cell/emproof{ + pixel_x = 6; + pixel_y = -2 + }, +/obj/machinery/light_switch/directional/south{ + pixel_x = 10 + }, +/turf/open/floor/iron/dark, +/area/engineering/engine_smes) "tBh" = ( /obj/effect/turf_decal/siding/purple{ dir = 1 @@ -44405,6 +44508,12 @@ /obj/machinery/status_display/evac/directional/west, /turf/open/openspace, /area/service/chapel) +"tBz" = ( +/obj/effect/spawner/random/trash/mess, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/sign/poster/contraband/random/directional/north, +/turf/open/floor/iron, +/area/maintenance/port/aft) "tBZ" = ( /obj/structure/chair/wood/wings, /turf/open/floor/iron/cafeteria{ @@ -44464,6 +44573,13 @@ "tEh" = ( /turf/closed/wall/r_wall, /area/maintenance/aft/greater) +"tEi" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/iron/dark/textured_large, +/area/science/storage) "tEn" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -44711,6 +44827,13 @@ }, /turf/open/floor/iron, /area/security/prison) +"tIK" = ( +/obj/effect/turf_decal/siding/white, +/obj/effect/turf_decal/siding/white, +/obj/effect/spawner/random/entertainment/arcade, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/iron, +/area/hallway/secondary/service) "tIQ" = ( /obj/effect/landmark/event_spawn, /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ @@ -44759,6 +44882,12 @@ /obj/structure/cable, /turf/open/floor/iron/checker, /area/engineering/atmos) +"tKa" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) "tKu" = ( /turf/open/floor/iron/dark, /area/science/breakroom) @@ -44818,14 +44947,6 @@ /obj/machinery/status_display/evac/directional/south, /turf/open/floor/wood, /area/service/library) -"tMz" = ( -/obj/machinery/camera/directional/west{ - c_tag = "MiniSat External SouthEast"; - network = list("minisat"); - start_active = 1 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) "tMN" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ @@ -44904,17 +45025,6 @@ }, /turf/open/floor/iron, /area/engineering/atmos) -"tOP" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/cargo/lobby) "tOT" = ( /obj/structure/table, /obj/machinery/recharger, @@ -44952,16 +45062,6 @@ /obj/item/storage/bag/trash, /turf/open/floor/iron, /area/maintenance/port/fore) -"tQm" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/airalarm/directional/north, -/obj/structure/reagent_dispensers/fueltank/large, -/turf/open/floor/iron/dark, -/area/engineering/engine_smes) "tQo" = ( /turf/closed/wall, /area/engineering/atmos/project) @@ -45008,13 +45108,6 @@ /obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, /area/engineering/storage/tech) -"tSh" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/iron/dark/textured_large, -/area/science/storage) "tSj" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -45099,10 +45192,6 @@ dir = 1 }, /area/hallway/secondary/entry) -"tUn" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/cargo/lobby) "tUs" = ( /obj/machinery/door/firedoor/heavy, /obj/machinery/door/poddoor/preopen{ @@ -45118,11 +45207,6 @@ /obj/machinery/light/directional/north, /turf/open/openspace, /area/science/xenobiology) -"tVt" = ( -/obj/structure/table/wood, -/obj/item/storage/medkit/regular, -/turf/open/floor/iron, -/area/commons/dorms) "tVv" = ( /obj/effect/turf_decal/tile/yellow{ dir = 1 @@ -45465,27 +45549,6 @@ /obj/machinery/airalarm/directional/south, /turf/open/floor/iron, /area/cargo/miningdock) -"ucV" = ( -/obj/structure/table/glass, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/storage/medkit/o2{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/medkit/o2, -/obj/item/storage/medkit/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/blue/full, -/turf/open/floor/iron/dark/smooth_large, -/area/medical/storage) "udc" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/trimline/blue/filled/corner{ @@ -45518,13 +45581,6 @@ }, /turf/open/floor/iron, /area/command/bridge) -"udO" = ( -/obj/machinery/light/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/portable_atmospherics/canister/plasma, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark/textured_large, -/area/science/storage) "udZ" = ( /obj/structure/chair{ dir = 1; @@ -45666,10 +45722,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/science/mixing) -"uhu" = ( -/obj/machinery/vending/wardrobe/chef_wardrobe, -/turf/open/floor/iron/cafeteria, -/area/service/kitchen) "uhx" = ( /turf/closed/wall/r_wall, /area/maintenance/fore/greater) @@ -45715,16 +45767,14 @@ /obj/effect/spawner/random/entertainment/dice, /turf/open/floor/iron, /area/commons/locker) -"uim" = ( -/obj/structure/chair{ +"uib" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/turf_decal/siding/white{ - dir = 1 - }, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/iron/white/smooth_large, -/area/service/kitchen/diner) +/turf/open/floor/iron, +/area/cargo/lobby) "uiO" = ( /obj/structure/table, /obj/item/toy/plush/beeplushie{ @@ -45876,11 +45926,6 @@ /obj/item/radio/intercom/directional/south, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) -"ulk" = ( -/obj/machinery/module_duplicator, -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/iron, -/area/science/misc_lab) "uls" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -45944,11 +45989,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/engineering/lobby) -"umD" = ( -/obj/machinery/photocopier, -/obj/structure/sign/poster/official/random/directional/east, -/turf/open/floor/wood, -/area/service/library) "umI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -46056,6 +46096,19 @@ }, /turf/open/floor/iron/white, /area/medical/medbay/aft) +"uoK" = ( +/obj/structure/rack, +/obj/machinery/light/small/directional/north, +/obj/machinery/light_switch/directional/north, +/obj/item/radio/off{ + pixel_y = 4 + }, +/obj/item/screwdriver{ + pixel_y = 10 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ai_monitored/turret_protected/aisat_interior) "upb" = ( /obj/structure/cable, /obj/structure/railing, @@ -46278,12 +46331,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/maintenance/starboard/aft) -"utg" = ( -/obj/structure/sign/poster/official/random/directional/north, -/turf/open/floor/iron/white/side{ - dir = 10 - }, -/area/science/research) "uts" = ( /obj/docking_port/stationary{ dir = 8; @@ -46436,23 +46483,6 @@ }, /turf/open/floor/iron/dark, /area/command/heads_quarters/cmo) -"uwf" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/table, -/obj/item/crowbar/red, -/obj/item/stock_parts/cell/high{ - pixel_x = 6; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/sign/poster/random/directional/west, -/turf/open/floor/iron, -/area/hallway/primary/aft) "uwi" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 4 @@ -46483,6 +46513,12 @@ "uxp" = ( /turf/open/floor/engine/vacuum, /area/engineering/atmos) +"uxq" = ( +/obj/structure/table, +/obj/effect/spawner/random/food_or_drink/donkpockets, +/obj/structure/sign/poster/contraband/random/directional/south, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) "uxT" = ( /obj/effect/turf_decal/tile/red{ dir = 4 @@ -46562,6 +46598,11 @@ /obj/structure/cable, /turf/open/floor/iron, /area/hallway/primary/central) +"uzo" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark, +/area/commons/fitness) "uzt" = ( /obj/structure/table/wood, /obj/item/reagent_containers/food/drinks/mug/coco{ @@ -46706,14 +46747,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron/large, /area/service/kitchen/diner) -"uCN" = ( -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/ai_monitored/turret_protected/ai_upload) "uDd" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -46993,6 +47026,16 @@ /obj/effect/turf_decal/tile/blue/full, /turf/open/floor/iron/large, /area/medical/treatment_center) +"uHZ" = ( +/obj/effect/turf_decal/tile/red/full, +/obj/structure/chair, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/obj/structure/sign/poster/random/directional/west, +/turf/open/floor/iron/large, +/area/service/kitchen/diner) "uId" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, @@ -47051,22 +47094,12 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/iron/white, /area/science/xenobiology) -"uJR" = ( -/obj/structure/grille, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) "uKl" = ( /obj/structure/sign/nanotrasen{ pixel_x = -32 }, /turf/open/floor/plating/snowed/icemoon, /area/icemoon/surface/outdoors/nospawn) -"uKs" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 6 - }, -/turf/open/floor/glass/reinforced, -/area/engineering/atmos/pumproom) "uKL" = ( /obj/machinery/door/airlock/security{ name = "Permabrig Visitation" @@ -47084,10 +47117,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark, /area/medical/treatment_center) -"uLo" = ( -/obj/structure/sign/poster/official/random/directional/north, -/turf/open/floor/iron, -/area/hallway/primary/starboard) "uLr" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ @@ -47115,11 +47144,6 @@ /obj/machinery/computer/security/telescreen/entertainment/directional/north, /turf/open/floor/wood, /area/service/library) -"uMc" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) "uMq" = ( /obj/item/trash/energybar, /turf/open/floor/plating, @@ -47149,6 +47173,14 @@ }, /turf/open/floor/iron, /area/engineering/atmos) +"uNd" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/meter/layer4, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) "uNH" = ( /obj/effect/turf_decal/siding/yellow/corner, /obj/machinery/status_display/evac/directional/south, @@ -47230,6 +47262,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/science/genetics) +"uPh" = ( +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark/textured_large, +/area/science/storage) "uPG" = ( /obj/item/book/manual/wiki/security_space_law, /obj/structure/table/wood, @@ -47261,12 +47300,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/science/misc_lab) -"uQC" = ( -/obj/effect/turf_decal/bot_white/right, -/obj/structure/closet/crate/goldcrate, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ai_monitored/command/nuke_storage) "uQH" = ( /obj/structure/railing{ dir = 1 @@ -47479,6 +47512,13 @@ }, /turf/open/floor/iron/dark/smooth_large, /area/science/breakroom) +"uWz" = ( +/obj/structure/light_construct/directional/south, +/obj/structure/sign/poster/contraband/random/directional/south, +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/maintenance/port/aft) "uWC" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -47528,16 +47568,6 @@ }, /turf/open/openspace/icemoon, /area/security/execution/education) -"uYt" = ( -/obj/machinery/computer/atmos_control/tank/oxygen_tank{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/engineering/atmos) "uYT" = ( /obj/effect/mapping_helpers/airlock/abandoned, /obj/machinery/door/airlock/maintenance{ @@ -47578,18 +47608,18 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat_interior) +"uZX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 10 + }, +/turf/open/floor/plating, +/area/engineering/atmos/pumproom) "vad" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /turf/open/floor/plating, /area/security/brig) -"var" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ai_monitored/turret_protected/aisat/service) "vaC" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -47670,16 +47700,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat_interior) -"vcq" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Air to Mix" - }, -/obj/effect/turf_decal/siding/wideplating{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/engineering/atmos/pumproom) "vcP" = ( /obj/effect/turf_decal/siding/yellow, /obj/effect/turf_decal/siding/yellow{ @@ -47774,10 +47794,6 @@ }, /turf/open/floor/plating, /area/cargo/sorting) -"veG" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/misc/asteroid/snow/standard_air, -/area/hallway/secondary/exit/departure_lounge) "veR" = ( /turf/open/floor/plating{ icon_state = "platingdmg3" @@ -47793,12 +47809,6 @@ /obj/structure/cable, /turf/open/floor/iron/white, /area/science/lab) -"vfP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/oxygen_output{ - dir = 1 - }, -/turf/open/floor/engine/o2, -/area/engineering/atmos) "vfT" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/button/ignition{ @@ -47812,10 +47822,6 @@ }, /turf/open/floor/iron, /area/maintenance/disposal/incinerator) -"vfW" = ( -/obj/effect/turf_decal/arrows, -/turf/open/floor/iron, -/area/cargo/lobby) "vgc" = ( /obj/structure/chair, /obj/effect/turf_decal/siding/white{ @@ -47829,10 +47835,6 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/iron/dark/textured_large, /area/maintenance/department/medical/central) -"vgz" = ( -/obj/machinery/computer/cargo/request, -/turf/open/floor/iron, -/area/cargo/lobby) "vhk" = ( /obj/machinery/airalarm/directional/north, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, @@ -47949,15 +47951,6 @@ /obj/effect/landmark/start/station_engineer, /turf/open/floor/iron, /area/engineering/lobby) -"vkt" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - name = "Waste In" - }, -/obj/effect/turf_decal/siding/wideplating{ - dir = 4 - }, -/turf/open/floor/iron, -/area/engineering/atmos/pumproom) "vkx" = ( /obj/effect/turf_decal/trimline/blue/filled/line, /obj/effect/landmark/start/chief_medical_officer, @@ -48025,6 +48018,12 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/maintenance/department/medical/central) +"vlR" = ( +/obj/structure/sign/poster/official/random/directional/north, +/turf/open/floor/iron/white/side{ + dir = 10 + }, +/area/science/research) "vlU" = ( /obj/structure/extinguisher_cabinet/directional/south, /obj/effect/turf_decal/trimline/yellow/filled/warning{ @@ -48049,14 +48048,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/port/aft) -"vmL" = ( -/obj/machinery/doppler_array{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron, -/area/science/mixing/launch) "vnb" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/stripes/corner{ @@ -48308,14 +48299,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold/purple/visible, /turf/open/floor/iron, /area/engineering/atmos) -"vxK" = ( -/obj/structure/table, -/obj/effect/spawner/random/maintenance/two, -/obj/effect/decal/cleanable/dirt, -/obj/item/stock_parts/capacitor, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/iron, -/area/maintenance/port/fore) "vxN" = ( /obj/structure/chair/stool/directional/north, /obj/effect/turf_decal/tile/neutral, @@ -48364,10 +48347,6 @@ }, /turf/open/floor/iron, /area/service/hydroponics/garden) -"vyU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible, -/turf/open/floor/glass/reinforced, -/area/engineering/atmos/pumproom) "vyY" = ( /obj/structure/rack, /obj/item/reagent_containers/glass/bottle/lithium{ @@ -48409,10 +48388,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/security/office) -"vzL" = ( -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/plating, -/area/maintenance/aft/greater) "vzM" = ( /obj/structure/table/wood, /obj/item/hand_labeler{ @@ -48660,14 +48635,6 @@ /obj/structure/dresser, /turf/open/floor/carpet, /area/commons/dorms) -"vFD" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/light/directional/south, -/obj/structure/closet/secure_closet/personal{ - anchored = 1 - }, -/turf/open/floor/iron, -/area/commons/locker) "vFP" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -48791,13 +48758,6 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron/freezer, /area/service/kitchen/coldroom) -"vIb" = ( -/obj/machinery/power/smes/engineering, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/turf/open/floor/iron/dark/textured, -/area/engineering/engine_smes) "vIi" = ( /obj/structure/extinguisher_cabinet/directional/east, /obj/effect/turf_decal/tile/red{ @@ -48827,6 +48787,13 @@ /obj/structure/cable, /turf/open/floor/iron/white, /area/medical/medbay/aft) +"vIL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/meter/layer4, +/turf/open/floor/plating, +/area/maintenance/aft/greater) "vIZ" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -48846,12 +48813,6 @@ /obj/structure/closet/toolcloset, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"vJy" = ( -/obj/structure/table, -/obj/effect/spawner/random/food_or_drink/donkpockets, -/obj/structure/sign/poster/contraband/random/directional/south, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) "vJD" = ( /obj/effect/turf_decal/tile/red/full, /obj/structure/chair{ @@ -48876,6 +48837,27 @@ dir = 1 }, /area/hallway/secondary/exit/departure_lounge) +"vKm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/obj/machinery/holopad, +/obj/effect/landmark/start/depsec/medical, +/obj/machinery/button/door/directional/west{ + id = "MedbayFoyer"; + name = "Medbay Doors Control"; + normaldoorcontrol = 1; + pixel_x = -35; + pixel_y = -56 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/security/checkpoint/medical) "vKz" = ( /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/brown{ @@ -48990,21 +48972,10 @@ }, /turf/open/floor/iron/freezer, /area/commons/toilet/locker) -"vMt" = ( -/obj/structure/chair/stool/directional/east, -/obj/effect/spawner/random/trash/mess, -/obj/machinery/light/small/directional/north, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/iron, -/area/maintenance/starboard/fore) "vMz" = ( /obj/structure/table/wood, /turf/open/floor/wood, /area/service/library) -"vMH" = ( -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/plating, -/area/maintenance/port/greater) "vMJ" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -49121,13 +49092,6 @@ "vOu" = ( /turf/closed/wall, /area/hallway/primary/aft) -"vOH" = ( -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/portable_atmospherics/canister/plasma, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark/textured_large, -/area/science/storage) "vOM" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -49219,6 +49183,11 @@ /obj/machinery/computer/security/mining, /turf/open/floor/iron, /area/cargo/miningdock) +"vRw" = ( +/obj/structure/cable, +/obj/structure/sign/poster/random/directional/south, +/turf/open/floor/plating, +/area/maintenance/port/fore) "vRS" = ( /obj/machinery/modular_computer/console/preset/id{ dir = 1 @@ -49272,25 +49241,14 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/showroomfloor, /area/security/lockers) -"vSL" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 +"vTY" = ( +/obj/item/toy/snowball{ + pixel_x = -6; + pixel_y = -3 }, -/obj/structure/chair/sofa/corp/right{ - dir = 4; - pixel_x = -4 - }, -/obj/machinery/light/small/directional/south, -/obj/structure/sign/poster/random/directional/west, -/turf/open/floor/iron/grimy, -/area/service/bar/atrium) -"vTX" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/closet/secure_closet/personal{ - anchored = 1 - }, -/turf/open/floor/iron, -/area/commons/locker) +/mob/living/simple_animal/pet/penguin/baby, +/turf/open/misc/asteroid/snow/standard_air, +/area/science/research) "vUa" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -49342,11 +49300,6 @@ }, /turf/open/floor/iron, /area/science/lab) -"vUs" = ( -/obj/machinery/flasher/portable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ai_monitored/security/armory) "vUy" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -49478,6 +49431,19 @@ }, /turf/open/floor/plating/snowed/icemoon, /area/icemoon/surface/outdoors/nospawn) +"vXv" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/grenade/chem_grenade/smart_metal_foam, +/obj/item/grenade/chem_grenade/smart_metal_foam, +/turf/open/floor/iron/dark, +/area/engineering/engine_smes) "vXP" = ( /obj/effect/turf_decal/tile/red{ dir = 8 @@ -49485,6 +49451,13 @@ /obj/effect/spawner/random/vending/colavend, /turf/open/floor/iron/white/corner, /area/hallway/secondary/exit/departure_lounge) +"vXZ" = ( +/obj/structure/chair/stool/directional/east, +/obj/effect/spawner/random/trash/mess, +/obj/machinery/light/small/directional/north, +/obj/structure/sign/poster/contraband/random/directional/north, +/turf/open/floor/iron, +/area/maintenance/starboard/fore) "vYk" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -49559,19 +49532,16 @@ }, /turf/open/floor/iron, /area/science/xenobiology) -"waf" = ( -/obj/structure/rack, -/obj/machinery/status_display/evac/directional/south, -/obj/item/storage/box/donkpockets, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ai_monitored/turret_protected/aisat_interior) "was" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/closed/wall, /area/maintenance/port/greater) +"waM" = ( +/obj/machinery/computer/cargo/request, +/turf/open/floor/iron, +/area/cargo/lobby) "waV" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -49707,6 +49677,15 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/white, /area/science/xenobiology) +"wet" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access_txt = "10" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/cable, +/turf/open/misc/asteroid/snow/icemoon, +/area/maintenance/solars/port/fore) "weu" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, @@ -49716,10 +49695,6 @@ /obj/machinery/holopad, /turf/open/floor/iron/white, /area/medical/surgery/aft) -"wey" = ( -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/floor/plating, -/area/maintenance/fore/lesser) "wez" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt/dust, @@ -49803,11 +49778,6 @@ }, /turf/open/floor/iron, /area/security/brig) -"wim" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/maintenance/aft/greater) "wit" = ( /obj/structure/table, /obj/machinery/recharger{ @@ -49901,6 +49871,13 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron/white/smooth_large, /area/service/kitchen/diner) +"wkw" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/cargo/lobby) "wky" = ( /obj/structure/table, /obj/item/restraints/handcuffs, @@ -49973,6 +49950,24 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/maintenance/port/aft) +"wmI" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "packageSort2" + }, +/obj/machinery/requests_console/directional/west{ + department = "Cargo Bay"; + departmentType = 2; + name = "Cargo Bay Requests Console" + }, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/iron, +/area/cargo/sorting) "wmO" = ( /obj/structure/janitorialcart, /turf/open/floor/iron, @@ -49989,6 +49984,13 @@ }, /turf/open/floor/iron/dark, /area/science/genetics) +"wmS" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/command/heads_quarters/ce) "wmU" = ( /obj/effect/turf_decal/tile/yellow{ dir = 1 @@ -49997,12 +49999,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/hallway/secondary/entry) -"wnb" = ( -/obj/machinery/meter/atmos/distro_loop, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, -/obj/effect/turf_decal/siding/wideplating, -/turf/open/floor/iron, -/area/engineering/atmos/pumproom) "wnf" = ( /obj/structure/table, /obj/structure/cable, @@ -50025,22 +50021,12 @@ /obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, /area/command/gateway) -"wnH" = ( -/obj/machinery/modular_computer/console/preset/id{ - dir = 4 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Chief Engineer's Office" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/requests_console/directional/west{ - announcementConsole = 1; - department = "Chief Engineer's Desk"; - departmentType = 3; - name = "Chief Engineer's Requests Console" - }, -/turf/open/floor/iron/dark, -/area/command/heads_quarters/ce) +"wnu" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/iron/dark/textured_large, +/area/science/storage) "wnP" = ( /obj/machinery/door/window/brigdoor{ name = "Research Director Observation"; @@ -50098,6 +50084,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/ai_monitored/command/storage/eva) +"wpa" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/light/directional/south, +/obj/structure/closet/secure_closet/personal{ + anchored = 1 + }, +/turf/open/floor/iron, +/area/commons/locker) "wph" = ( /obj/docking_port/stationary{ dheight = 4; @@ -50171,6 +50165,14 @@ dir = 9 }, /area/science/research) +"wqR" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/mirror/directional/east, +/obj/structure/sign/poster/official/random/directional/west, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/fore) "wqT" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -50196,6 +50198,14 @@ }, /turf/open/floor/iron, /area/hallway/primary/central) +"wrl" = ( +/obj/machinery/doppler_array{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron, +/area/science/mixing/launch) "wrW" = ( /obj/machinery/vending/assist, /turf/open/floor/iron, @@ -50240,12 +50250,6 @@ /obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/iron/dark, /area/science/robotics/lab) -"wsO" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/iron, -/area/cargo/lobby) "wsW" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -50368,6 +50372,15 @@ /obj/item/pipe_dispenser, /turf/open/floor/iron/dark, /area/engineering/supermatter/room) +"wvl" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/button/door/directional/north{ + id = "ceprivacy"; + name = "Privacy Shutters Control" + }, +/turf/open/floor/iron/dark, +/area/command/heads_quarters/ce) "wvm" = ( /obj/effect/turf_decal/tile/red/full, /obj/effect/turf_decal/siding/white{ @@ -50448,6 +50461,12 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/upper) +"wxb" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/manifold{ + dir = 4 + }, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) "wxp" = ( /obj/machinery/light/directional/north, /obj/effect/decal/cleanable/dirt, @@ -50466,10 +50485,6 @@ /obj/effect/spawner/random/structure/crate, /turf/open/floor/plating, /area/maintenance/starboard/upper) -"wxK" = ( -/obj/structure/cable, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) "wxV" = ( /turf/closed/wall/r_wall, /area/command/gateway) @@ -50548,10 +50563,6 @@ /obj/machinery/light/directional/east, /turf/open/floor/grass, /area/service/hydroponics/garden) -"wAM" = ( -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/cargo/lobby) "wAT" = ( /obj/machinery/light/small/directional/east, /turf/open/floor/wood, @@ -50577,6 +50588,17 @@ }, /turf/open/floor/iron, /area/command/bridge) +"wBJ" = ( +/obj/machinery/air_sensor/incinerator_tank{ + pixel_x = -32; + pixel_y = -32 + }, +/obj/machinery/igniter{ + id = "Incinerator" + }, +/obj/structure/cable, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) "wBO" = ( /obj/structure/window/reinforced{ dir = 4 @@ -50657,13 +50679,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/engineering/storage_shared) -"wEm" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/meter/atmos/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) "wEo" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ @@ -50801,6 +50816,21 @@ }, /turf/open/floor/plating/snowed/icemoon, /area/icemoon/surface/outdoors/nospawn) +"wIx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/atmos/glass{ + name = "Distribution Loop"; + req_access_txt = "24" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/engineering/atmos/pumproom) "wJt" = ( /obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ dir = 4 @@ -50829,10 +50859,6 @@ dir = 4 }, /area/service/chapel) -"wJW" = ( -/obj/structure/flora/tree/pine, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) "wKb" = ( /obj/structure/reagent_dispensers/fueltank, /obj/structure/railing{ @@ -50904,6 +50930,10 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/white, /area/medical/medbay/aft) +"wLW" = ( +/obj/machinery/air_sensor/oxygen_tank, +/turf/open/floor/engine/o2, +/area/engineering/atmos) "wNj" = ( /obj/structure/sign/warning/securearea{ pixel_x = -32 @@ -51028,6 +51058,12 @@ /obj/structure/sign/warning/radiation, /turf/closed/wall/r_wall, /area/engineering/supermatter) +"wPj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/sign/poster/contraband/random/directional/north, +/turf/open/floor/plating, +/area/maintenance/port/aft) "wPm" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -51071,13 +51107,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/maintenance/department/medical/central) -"wQt" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/meter/atmos/layer4, -/turf/open/floor/plating, -/area/maintenance/port/fore) "wQu" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -51117,12 +51146,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/command/bridge) -"wRM" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/meter/atmos/layer4, -/turf/open/floor/plating, -/area/maintenance/port/greater) "wRQ" = ( /obj/structure/table, /obj/item/stack/sheet/iron/fifty{ @@ -51171,12 +51194,6 @@ }, /turf/open/floor/plating/snowed/icemoon, /area/icemoon/surface/outdoors/nospawn) -"wTe" = ( -/obj/machinery/camera/motion/directional/south{ - c_tag = "Armory - External" - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors/nospawn) "wTv" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 8 @@ -51472,14 +51489,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/catwalk_floor/iron_smooth, /area/maintenance/department/medical/central) -"xai" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/sign/poster/official/random/directional/north, -/turf/open/floor/iron, -/area/hallway/primary/starboard) "xal" = ( /obj/structure/railing/corner{ dir = 4 @@ -51552,16 +51561,6 @@ icon_state = "panelscorched" }, /area/maintenance/starboard/aft) -"xcn" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 9 - }, -/obj/effect/turf_decal/siding/wideplating/corner{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/engineering/atmos/pumproom) "xcv" = ( /obj/structure/reagent_dispensers/fueltank, /obj/effect/turf_decal/stripes/line{ @@ -51602,6 +51601,22 @@ /obj/structure/cable, /turf/open/floor/iron, /area/commons/dorms) +"xei" = ( +/obj/machinery/modular_computer/console/preset/id{ + dir = 4 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Chief Engineer's Office" + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/requests_console/directional/west{ + announcementConsole = 1; + department = "Chief Engineer's Desk"; + departmentType = 3; + name = "Chief Engineer's Requests Console" + }, +/turf/open/floor/iron/dark, +/area/command/heads_quarters/ce) "xeo" = ( /obj/effect/landmark/event_spawn, /obj/effect/turf_decal/tile/blue{ @@ -51620,16 +51635,22 @@ /obj/item/radio/intercom/directional/west, /turf/open/floor/engine, /area/engineering/supermatter/room) +"xeD" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red/full, +/obj/effect/turf_decal/siding/white{ + dir = 9 + }, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/iron/large, +/area/service/kitchen/diner) "xfb" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/port/aft) -"xfc" = ( -/obj/effect/turf_decal/tile/brown/fourcorners, -/obj/machinery/computer/department_orders/engineering, -/turf/open/floor/iron/dark, -/area/engineering/lobby) "xfh" = ( /obj/machinery/chem_dispenser, /obj/effect/turf_decal/tile/yellow/full, @@ -51765,12 +51786,6 @@ /obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plating, /area/maintenance/central/lesser) -"xhX" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/oxygen_input{ - dir = 1 - }, -/turf/open/floor/engine/o2, -/area/engineering/atmos) "xib" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ dir = 9 @@ -51794,15 +51809,6 @@ /obj/effect/spawner/random/maintenance/two, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"xiz" = ( -/obj/machinery/computer/security/telescreen/entertainment/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/computer/monitor{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/ai_monitored/turret_protected/aisat_interior) "xiC" = ( /obj/structure/cable, /turf/open/floor/plating, @@ -51961,17 +51967,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/commons/storage/tools) -"xkC" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/engineering/glass{ - name = "Server Room"; - req_access_txt = "61" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/tcommsat/computer) "xkD" = ( /obj/effect/turf_decal/trimline/blue/filled/corner{ dir = 8 @@ -52009,6 +52004,11 @@ /obj/machinery/space_heater, /turf/open/floor/plating, /area/maintenance/department/medical/central) +"xlQ" = ( +/obj/item/airlock_painter, +/obj/structure/closet, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) "xlV" = ( /obj/machinery/flasher/directional/north{ id = "transferflash" @@ -52044,10 +52044,6 @@ /obj/machinery/light_switch/directional/north, /turf/open/floor/iron/freezer, /area/commons/toilet/locker) -"xnm" = ( -/obj/structure/sign/departments/cargo, -/turf/closed/wall, -/area/cargo/lobby) "xnt" = ( /obj/machinery/newscaster/directional/east, /turf/open/floor/iron, @@ -52057,26 +52053,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/engineering/main) -"xnD" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/cable, -/obj/structure/table, -/obj/item/storage/box/lights/mixed, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/stock_parts/cell/emproof, -/obj/item/stock_parts/cell/emproof{ - pixel_x = 6; - pixel_y = -2 - }, -/obj/machinery/light_switch/directional/south{ - pixel_x = 10 - }, -/turf/open/floor/iron/dark, -/area/engineering/engine_smes) "xnF" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -52213,6 +52189,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/general, /turf/open/floor/plating, /area/maintenance/starboard/aft) +"xqE" = ( +/obj/machinery/vending/wardrobe/gene_wardrobe, +/obj/structure/sign/poster/official/random/directional/north, +/turf/open/floor/iron/dark, +/area/science/genetics) "xqM" = ( /obj/effect/turf_decal/tile/brown{ dir = 1 @@ -52289,13 +52270,6 @@ /obj/machinery/portable_atmospherics/canister/air, /turf/open/floor/plating, /area/commons/storage/emergency/port) -"xsA" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 6 - }, -/turf/open/floor/plating, -/area/engineering/atmos/pumproom) "xsE" = ( /obj/effect/turf_decal/trimline/blue/filled/warning{ dir = 4 @@ -52602,12 +52576,6 @@ }, /turf/open/floor/iron, /area/engineering/atmos) -"xyS" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/ordnance_mixing_input{ - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/science/mixing/chamber) "xyX" = ( /obj/machinery/status_display/evac/directional/west, /obj/machinery/light/small/directional/west, @@ -52670,15 +52638,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/cargo/office) -"xAX" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/button/door/directional/north{ - id = "ceprivacy"; - name = "Privacy Shutters Control" - }, -/turf/open/floor/iron/dark, -/area/command/heads_quarters/ce) "xBd" = ( /obj/machinery/computer/cargo{ dir = 1 @@ -52703,12 +52662,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/maintenance/starboard/aft) -"xBV" = ( -/obj/machinery/research/anomaly_refinery, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron, -/area/science/mixing/launch) "xCc" = ( /obj/machinery/space_heater, /turf/open/floor/plating, @@ -52746,6 +52699,14 @@ }, /turf/open/floor/iron/white/smooth_large, /area/service/kitchen/diner) +"xCP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/atmos/pumproom) "xCR" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 @@ -52782,19 +52743,6 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/ai_upload) -"xDs" = ( -/obj/structure/rack, -/obj/machinery/light/small/directional/north, -/obj/machinery/light_switch/directional/north, -/obj/item/radio/off{ - pixel_y = 4 - }, -/obj/item/screwdriver{ - pixel_y = 10 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ai_monitored/turret_protected/aisat_interior) "xDD" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -52834,6 +52782,15 @@ }, /turf/open/floor/iron/dark, /area/science/breakroom) +"xEp" = ( +/obj/machinery/light/directional/east, +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/command/heads_quarters/ce) "xFn" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -52965,17 +52922,6 @@ }, /turf/open/floor/iron/white, /area/maintenance/starboard/aft) -"xIm" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/engineering/glass{ - name = "Server Room"; - req_access_txt = "61" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/tcommsat/computer) "xII" = ( /obj/structure/lattice/catwalk, /obj/machinery/airalarm/directional/south, @@ -53022,6 +52968,20 @@ }, /turf/open/floor/iron, /area/command/heads_quarters/rd) +"xKB" = ( +/obj/machinery/light/directional/east, +/obj/structure/table, +/obj/item/toner, +/obj/item/hand_labeler, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/storage/box, +/obj/item/storage/box, +/obj/item/storage/box, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/iron, +/area/cargo/lobby) "xKD" = ( /obj/structure/industrial_lift{ id = "publicElevator" @@ -53034,15 +52994,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/security/prison) -"xLe" = ( -/obj/structure/sign/painting/library{ - pixel_y = 32 - }, -/obj/structure/table, -/obj/machinery/microwave, -/obj/structure/sign/poster/official/random/directional/east, +"xKQ" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/leather, +/obj/effect/spawner/random/maintenance/two, +/obj/structure/sign/poster/random/directional/north, /turf/open/floor/iron, -/area/hallway/secondary/service) +/area/maintenance/starboard/fore) "xLh" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -53142,6 +53100,35 @@ /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/department/medical/central) +"xNR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/chair/sofa/corp/left{ + dir = 4; + pixel_x = -4; + pixel_y = 8 + }, +/obj/effect/landmark/start/hangover, +/obj/machinery/light/small/directional/north, +/obj/structure/sign/poster/random{ + pixel_x = -32 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/chair/sofa/corp/left{ + dir = 4; + pixel_x = -4; + pixel_y = 8 + }, +/obj/effect/landmark/start/hangover, +/obj/machinery/light/small/directional/north, +/obj/structure/sign/poster/random/directional/west, +/turf/open/floor/iron/grimy, +/area/service/bar/atrium) "xNX" = ( /obj/structure/kitchenspike, /obj/item/radio/intercom/directional/south, @@ -53333,22 +53320,6 @@ }, /turf/open/floor/plating, /area/engineering/engine_smes) -"xTz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/obj/structure/chair{ - pixel_y = -2 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/food_packaging, -/obj/structure/sign/poster/official/random/directional/west, -/turf/open/floor/iron, -/area/engineering/storage_shared) "xTA" = ( /obj/effect/spawner/random/vending/colavend, /turf/open/floor/iron/dark, @@ -53369,6 +53340,14 @@ /obj/item/storage/fancy/donut_box, /turf/open/floor/iron, /area/hallway/secondary/service) +"xUM" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/atmos/pumproom) "xUQ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -53405,6 +53384,11 @@ /obj/effect/turf_decal/tile/blue/full, /turf/open/floor/iron/dark/smooth_large, /area/command/heads_quarters/cmo) +"xWA" = ( +/obj/machinery/space_heater, +/obj/structure/sign/poster/official/random/directional/north, +/turf/open/floor/plating, +/area/maintenance/port/aft) "xWL" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -53416,6 +53400,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/commons/dorms) +"xXa" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/air_input{ + dir = 1 + }, +/turf/open/floor/engine/air, +/area/engineering/atmos) "xXi" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -53700,6 +53690,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/command/gateway) +"yfE" = ( +/obj/machinery/camera/directional/west{ + c_tag = "MiniSat External NorthEast"; + network = list("minisat"); + start_active = 1 + }, +/turf/open/misc/asteroid/snow/icemoon, +/area/icemoon/surface/outdoors/nospawn) "yfP" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -53766,6 +53764,22 @@ /obj/machinery/light/directional/west, /turf/open/openspace, /area/science/xenobiology) +"yhV" = ( +/obj/effect/turf_decal/tile/red/full, +/obj/structure/table, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 3 + }, +/obj/machinery/light/directional/west, +/obj/structure/sign/poster/random/directional/west, +/turf/open/floor/iron/large, +/area/service/kitchen/diner) "yic" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -53843,6 +53857,14 @@ /obj/structure/cable, /turf/open/floor/plating, /area/engineering/storage/tech) +"ykx" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, +/turf/open/floor/plating, +/area/engineering/atmos/pumproom) "ykU" = ( /obj/structure/window/reinforced{ dir = 8 @@ -53883,15 +53905,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/maintenance/department/medical/central) -"ylj" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/port/greater) "ylt" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -53918,6 +53931,11 @@ /obj/structure/cable/multilayer/multiz, /turf/open/floor/plating, /area/engineering/lobby) +"ylP" = ( +/obj/machinery/modular_computer/console/preset/engineering, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/engineering/engine_smes) "ylQ" = ( /turf/open/floor/iron/checker, /area/science/lab) @@ -53931,12 +53949,6 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron, /area/engineering/storage_shared) -"ymh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/meter/atmos/layer4, -/turf/open/floor/plating, -/area/maintenance/fore/greater) (1,1,1) = {" gQb @@ -61238,7 +61250,7 @@ gQb gQb gQb gQb -psC +mul gQb gQb gQb @@ -61252,7 +61264,7 @@ gQb gQb gQb gQb -rCh +gDk gQb gQb gQb @@ -62251,58 +62263,58 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk cwi -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk cwi -gXW +jnk cwi qTS cwi -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk cwi qTS cwi -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk dKt cwi dKt -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk xzr xzr xzr @@ -62508,59 +62520,59 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk cwi cwi cwi cwi cwi -gXW +jnk cwi arB asE ily asE arB -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk arB asE mkl asE arB -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk asE cQo asE -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk xzr xzr xzr @@ -62765,9 +62777,9 @@ gQb gQb gQb gQb -gXW -gXW -gXW +jnk +jnk +jnk apJ apJ apJ @@ -62783,42 +62795,42 @@ auO auP nXM aAC -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk aAC auO auP eMm arB -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk bgl auP bgl -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk xzr xzr xzr @@ -63022,9 +63034,9 @@ gQb gQb gQb gQb -gXW -gXW -gXW +jnk +jnk +jnk apJ apN apN @@ -63040,42 +63052,42 @@ avP ujQ asE arB -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk arB asE iEJ avP arB -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk arB arB sHE asE aAC -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk xzr xzr xzr @@ -63279,8 +63291,8 @@ gQb gQb gQb gQb -gXW -gXW +jnk +jnk cwi apJ apN @@ -63299,11 +63311,11 @@ awW aAD awW cwi -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk cwi awW awW @@ -63311,11 +63323,11 @@ awW aQG vxU arB -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk arB awZ ayk @@ -63323,16 +63335,16 @@ awW aAD awW cwi -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk xzr xzr xzr @@ -63536,8 +63548,8 @@ gQb gQb gQb gQb -gXW -gXW +jnk +jnk cwi apJ apN @@ -63556,11 +63568,11 @@ fvw auP sjj cwi -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk cwi nVS auP @@ -63568,11 +63580,11 @@ cGO ayl aRY awW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk arB caZ ayl @@ -63580,17 +63592,17 @@ beK auP cyt izY -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk xzr xzr xzr @@ -63793,8 +63805,8 @@ gQb gQb gQb gQb -gXW -gXW +jnk +jnk cwi apJ apN @@ -63813,11 +63825,11 @@ awW awW awW cwi -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk cwi awW awW @@ -63825,11 +63837,11 @@ awW awV aRY awW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk awW awZ ayk @@ -63837,17 +63849,17 @@ awW awW awW cwi -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk xzr xzr xzr @@ -64050,9 +64062,9 @@ gQb gQb gQb gQb -gXW -gXW -gXW +jnk +jnk +jnk apJ apN apN @@ -64069,42 +64081,42 @@ cqr azz aAF awW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk awW fJX azz aym aRY awW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk awW awZ aQH azz aAF awW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk xzr xzr xzr @@ -64307,9 +64319,9 @@ gQb gQb gQb gQb -gXW -gXW -gXW +jnk +jnk +jnk apJ apN apN @@ -64326,42 +64338,42 @@ aDD ayl aAE awW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk awW aOe ayl ayl aRY awW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk awW awZ ayl ayl aAE awW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk xzr xzr xzr @@ -64564,9 +64576,9 @@ gQb gQb gQb gQb -gXW -gXW -gXW +jnk +jnk +jnk apJ apN apN @@ -64583,42 +64595,42 @@ aDD ayl aAH awW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk awW aOh ayl ayl aRY awW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk awW awZ ayl ayl wEX awW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk xzr xzr xzr @@ -64821,8 +64833,8 @@ gQb gQb gQb gQb -gXW -gXW +jnk +jnk cwi apJ apN @@ -64840,42 +64852,42 @@ nUa azA aAG awW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk awW aOg azA aPu aRY awW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk awW awZ ayn azA bgh awW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk xzr xzr xzr @@ -65078,9 +65090,9 @@ gQb gQb gQb gQb -gXW -gXW -gXW +jnk +jnk +jnk apJ apN apN @@ -65098,11 +65110,11 @@ awW awW awW cwi -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk cwi awW awW @@ -65110,11 +65122,11 @@ awW awV aRY awW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk awW awZ ayk @@ -65122,17 +65134,17 @@ awW awW awW cwi -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk xzr xzr xzr @@ -65335,9 +65347,9 @@ gQb gQb gQb gQb -gXW -gXW -gXW +jnk +jnk +jnk apJ apJ apJ @@ -65355,11 +65367,11 @@ fvw auP sjj cwi -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk cwi wSN auP @@ -65367,11 +65379,11 @@ qsB ayl aRY awW -gXW +jnk cwi uts cwi -gXW +jnk awW awZ ayl @@ -65379,17 +65391,17 @@ beL auP cyu cwi -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk xzr xzr xzr @@ -65592,10 +65604,10 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk cwi apJ asH @@ -65612,11 +65624,11 @@ awW aAD awW cwi -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk cwi awW awW @@ -65624,11 +65636,11 @@ awW aQG vxU arB -gXW +jnk aWa aXI awW -gXW +jnk arB tUg ayk @@ -65636,17 +65648,17 @@ awW aAD awW cwi -gXW -gXW -gXW -gXW -gXW -ixv -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +eGm +jnk +jnk +jnk +jnk +jnk xzr xzr xzr @@ -65849,11 +65861,11 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk asF asI auQ @@ -65867,15 +65879,15 @@ qDg ayo azB awW -gXW -gXW -gXW -gXW -cHH -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +rnN +jnk +jnk +jnk +jnk awW aPt aym @@ -65891,19 +65903,19 @@ awZ aQH azB awW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk xzr xzr xzr @@ -66106,11 +66118,11 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk apJ asJ cTE @@ -66148,19 +66160,19 @@ bbb ayl qHg arB -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk xzr xzr xzr @@ -66363,11 +66375,11 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk apJ apJ apJ @@ -66405,19 +66417,19 @@ aDD ayl beM aAC -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk xzr xzr xzr @@ -66620,11 +66632,11 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk cwi cwi cwi @@ -66662,21 +66674,21 @@ wAk ayl beM asE -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk xzr xzr xzr @@ -66877,12 +66889,12 @@ gQb gQb gQb gQb -gXW -ixv -gXW -gXW -gXW -gXW +jnk +eGm +jnk +jnk +jnk +jnk cwi alU alU @@ -66924,16 +66936,16 @@ beO beO beO beO -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk xzr xzr xzr @@ -66956,24 +66968,24 @@ xzr xzr xzr xzr -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -67134,12 +67146,12 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk cwi bFf amC @@ -67181,16 +67193,16 @@ bjb aCU snw blS -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk xzr xzr xzr @@ -67213,24 +67225,24 @@ xzr xzr xzr xzr -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -67391,12 +67403,12 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk alU alU alU @@ -67438,16 +67450,16 @@ bja beO bja bja -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk xzr xzr xzr @@ -67470,24 +67482,24 @@ xzr xzr xzr xzr -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -ixv -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +eGm +jnk +jnk gQb gQb gQb @@ -67627,35 +67639,35 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk alU -vxK +kBn jIA alU aol @@ -67695,17 +67707,17 @@ rRY oeK cAI bja -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk xzr xzr xzr @@ -67725,26 +67737,26 @@ xzr xzr xzr xzr -gXW -gXW -gXW -gXW -gXW -gXW -gXW -uJR -uJR -uJR -uJR -uJR -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +dUi +dUi +dUi +dUi +dUi +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -67884,31 +67896,31 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk cwi alU alU @@ -67952,17 +67964,17 @@ rRY jcB cAF bja -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk xzr xzr xzr @@ -67981,27 +67993,27 @@ xzr xzr xzr xzr -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -uJR -gXW -gXW -gXW -uJR -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +dUi +jnk +jnk +jnk +dUi +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -68141,32 +68153,32 @@ gQb gQb gQb gQb -gXW -ixv -gXW -gXW -gXW -uJR -uJR -uJR -uJR -uJR -uJR -uJR -uJR -uJR -uJR -uJR -uJR -oQF -uJR -uJR -gXW -gXW -gXW -gXW -gXW -gXW +jnk +eGm +jnk +jnk +jnk +dUi +dUi +dUi +dUi +dUi +dUi +dUi +dUi +dUi +dUi +dUi +dUi +cul +dUi +dUi +jnk +jnk +jnk +jnk +jnk +jnk alU ehF amC @@ -68209,17 +68221,17 @@ rRY cAF aNI beO -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk xzr xzr xzr @@ -68237,28 +68249,28 @@ xzr xzr xzr xzr -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -uJR -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +dUi +jnk rhU -gXW -uJR -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +dUi +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -68398,32 +68410,32 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -uJR -gXW -gXW -gXW -gXW -gXW -gXW -gXW -cRg -gXW -gXW -gXW -sEl -gXW -uJR -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +dUi +jnk +jnk +jnk +jnk +jnk +jnk +jnk +pCq +jnk +jnk +jnk +msZ +jnk +dUi +jnk +jnk +jnk +jnk +jnk +jnk alU hDu xst @@ -68466,19 +68478,19 @@ gQv jgZ cMT beO -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk xzr xzr xzr @@ -68494,28 +68506,28 @@ xzr xzr xzr xzr -gXW -gXW -gXW -uJR -uJR -uJR -uJR -uJR -gXW -gXW -gXW +jnk +jnk +jnk +dUi +dUi +dUi +dUi +dUi +jnk +jnk +jnk jgu -gXW -gXW -gXW -uJR -uJR -oQF -uJR -uJR -gXW -gXW +jnk +jnk +jnk +dUi +dUi +cul +dUi +dUi +jnk +jnk gQb gQb gQb @@ -68655,32 +68667,32 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -uJR -gXW +jnk +jnk +jnk +jnk +jnk +dUi +jnk xxG jgu xxG -gXW +jnk xxG jgu xxG -gXW +jnk xxG jgu xxG -gXW -uJR -gXW -gXW -gXW -gXW -gXW -gXW +jnk +dUi +jnk +jnk +jnk +jnk +jnk +jnk alU lcE amC @@ -68715,7 +68727,7 @@ cZM dJO jhN jdS -kdV +jnw lIa gIb jhN @@ -68723,19 +68735,19 @@ uoj jhN beO beO -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk xzr xzr xzr @@ -68751,28 +68763,28 @@ xzr xzr xzr xzr -gXW -gXW -gXW -uJR -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +dUi +jnk +jnk +jnk +jnk +jnk +jnk +jnk jgu -gXW -gXW -gXW -gXW -gXW -gXW -gXW -uJR -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +dUi +jnk +jnk gQb gQb gQb @@ -68912,32 +68924,32 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -uJR -gXW +jnk +jnk +jnk +jnk +jnk +dUi +jnk xxG jgu xxG -gXW +jnk xxG jgu xxG -gXW +jnk xxG jgu xxG -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk alU alU alU @@ -68978,21 +68990,21 @@ ozf kAe egw pCb -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk cwi -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk xzr xzr xzr @@ -69008,28 +69020,28 @@ xzr xzr xzr xzr -gXW -gXW -gXW -uJR -gXW +jnk +jnk +jnk +dUi +jnk pqe pqe pqe pqe pqe -gXW +jnk cwi -gXW +jnk pqe pqe pqe pqe pqe -gXW -uJR -gXW -gXW +jnk +dUi +jnk +jnk gQb gQb gQb @@ -69169,32 +69181,32 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -uJR -gXW +jnk +jnk +jnk +jnk +jnk +dUi +jnk xxG jgu xxG -gXW +jnk xxG jgu xxG -gXW +jnk xxG jgu xxG -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk cwi cwi ali @@ -69235,21 +69247,21 @@ lAq esO fMZ pCb -gXW -gXW -gXW +jnk +jnk +jnk cwi -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk xzr xzr xzr @@ -69265,11 +69277,11 @@ xzr xzr xzr xzr -gXW -gXW -gXW -uJR -gXW +jnk +jnk +jnk +dUi +jnk jgu jgu jgu @@ -69283,10 +69295,10 @@ jgu jgu jgu jgu -gXW -uJR -gXW -gXW +jnk +dUi +jnk +jnk gQb gQb gQb @@ -69426,32 +69438,32 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk xxG jgu xxG -gXW +jnk xxG jgu xxG -gXW +jnk xxG jgu xxG -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk cwi cwi ali @@ -69481,7 +69493,7 @@ jhN jhN iYr jWt -jJv +mPr oTE mFl jhN @@ -69492,21 +69504,21 @@ vJb viK jhN jhN -gXW -gXW -gXW -myh -gXW -gXW -gXW +jnk +jnk +jnk +rdV +jnk +jnk +jnk dKt -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk xzr xzr xzr @@ -69522,28 +69534,28 @@ xzr xzr xzr xzr -gXW -gXW -gXW -uJR -gXW +jnk +jnk +jnk +dUi +jnk pqe pqe pqe pqe pqe -gXW +jnk cwi -gXW +jnk pqe pqe pqe pqe pqe -gXW -uJR -gXW -gXW +jnk +dUi +jnk +jnk gQb gQb gQb @@ -69683,27 +69695,27 @@ gQb gQb gQb gQb -gXW -gXW -uJR -uJR -uJR -gXW -gXW +jnk +jnk +dUi +dUi +dUi +jnk +jnk xxG jgu xxG -gXW +jnk xxG jgu xxG -gXW +jnk xxG jgu xxG -gXW -gXW -gXW +jnk +jnk +jnk ajV alR alR @@ -69735,7 +69747,7 @@ jDm jhN psY mRa -gVH +sXF fMZ kRG vWq @@ -69749,21 +69761,21 @@ xCc fef tPo sLi -gXW -gXW -gXW +jnk +jnk +jnk cwi -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk xzr xzr xzr @@ -69779,28 +69791,28 @@ xzr xzr xzr xzr -gXW -gXW -gXW -uJR -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +dUi +jnk +jnk +jnk +jnk +jnk +jnk +jnk cwi -gXW -gXW -gXW -gXW -gXW -gXW -gXW -oQF -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +cul +jnk +jnk gQb gQb gQb @@ -69940,24 +69952,24 @@ gQb gQb gQb gQb -gXW -gXW -uJR -gXW -gXW -gXW -gXW -gXW +jnk +jnk +dUi +jnk +jnk +jnk +jnk +jnk jgu -gXW -gXW -gXW +jnk +jnk +jnk jgu -gXW -gXW -gXW +jnk +jnk +jnk jgu -gXW +jnk dKt ajV ajV @@ -69970,13 +69982,13 @@ axL amC apP anJ -rsw +vRw alU iyK -cNd -gXW +xlQ +jnk alU -wQt +atN alU unz tKV @@ -70001,27 +70013,27 @@ ctO tfn tDy tfn -ylj +heQ pqo pqo rZB mKs -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk cwi -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk xzr xzr xzr @@ -70033,31 +70045,31 @@ xzr xzr xzr xzr -gXW -gXW -gXW -gXW -gXW -gXW -uJR -gXW +jnk +jnk +jnk +jnk +jnk +jnk +dUi +jnk pqe pqe pqe pqe pqe -gXW +jnk cwi -gXW +jnk pqe pqe pqe pqe pqe -gXW -uJR -gXW -gXW +jnk +dUi +jnk +jnk gQb gQb gQb @@ -70197,12 +70209,12 @@ gQb gQb gQb gQb -gXW -gXW -uJR -gXW -rMJ -wxK +jnk +jnk +dUi +jnk +fAO +qYh jgu cwi cwi @@ -70216,7 +70228,7 @@ cwi cwi cwi jgu -eGz +wet akB oHU akB @@ -70263,22 +70275,22 @@ jhN jhN ggb sLi -gXW -gXW -gXW +jnk +jnk +jnk dKt -gXW -gXW -gXW -myh -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +rdV +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk xzr xzr xzr @@ -70290,14 +70302,14 @@ xzr xzr xzr xzr -gXW -gXW -gXW -ixv -gXW -gXW -uJR -gXW +jnk +jnk +jnk +eGm +jnk +jnk +dUi +jnk jgu jgu jgu @@ -70311,10 +70323,10 @@ jgu jgu jgu jgu -gXW -uJR -gXW -gXW +jnk +dUi +jnk +jnk gQb gQb gQb @@ -70454,24 +70466,24 @@ gQb gQb gQb gQb -gXW -gXW -uJR -gXW -gXW -gXW -gXW -gXW +jnk +jnk +dUi +jnk +jnk +jnk +jnk +jnk jgu -gXW -gXW -gXW +jnk +jnk +jnk jgu -gXW -gXW -gXW +jnk +jnk +jnk jgu -gXW +jnk cwi ajV ajV @@ -70520,58 +70532,58 @@ kLr jhN ggb sLi -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk cwi -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -uJR -cRg +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +dUi +pCq pqe pqe pqe pqe pqe -gXW +jnk cwi -gXW +jnk pqe pqe pqe pqe pqe -gXW -uJR -gXW -gXW +jnk +dUi +jnk +jnk gQb gQb gQb @@ -70711,27 +70723,27 @@ gQb gQb gQb gQb -gXW -gXW -uJR -oQF -uJR -gXW -gXW +jnk +jnk +dUi +cul +dUi +jnk +jnk xxG jgu xxG -gXW +jnk xxG jgu xxG -gXW +jnk xxG jgu xxG -gXW -gXW -gXW +jnk +jnk +jnk ajV ayz ayz @@ -70777,58 +70789,58 @@ hzM jhN ggb sLi -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -oQF -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +cul +jnk +jnk +jnk +jnk +jnk +jnk +jnk cwi -gXW -gXW -gXW -gXW -gXW -gXW -gXW -uJR -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +dUi +jnk +jnk gQb gQb gQb @@ -70968,28 +70980,28 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk xxG jgu xxG -gXW +jnk xxG jgu xxG -gXW +jnk xxG jgu xxG -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk alU alF anJ @@ -71018,7 +71030,7 @@ aLE ssk awg cPo -oOn +nsi dkw dkw kQD @@ -71034,58 +71046,58 @@ jjv jhN ggb mKs -gXW -gXW -gXW +jnk +jnk +jnk dKt -gXW -gXW -gXW -myh -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -uJR -gXW +jnk +jnk +jnk +rdV +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +dUi +jnk pqe pqe pqe pqe pqe -gXW +jnk cwi -gXW +jnk pqe pqe pqe pqe pqe -gXW -uJR -gXW -gXW +jnk +dUi +jnk +jnk gQb gQb gQb @@ -71225,28 +71237,28 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -uJR -gXW +jnk +jnk +jnk +jnk +jnk +dUi +jnk xxG jgu xxG -gXW +jnk xxG jgu xxG -gXW +jnk xxG jgu xxG -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk alU alF amC @@ -71263,7 +71275,7 @@ alU alU alU alU -atN +erZ aBL cQS cQS @@ -71291,41 +71303,41 @@ ewN jhN ggb sLi -gXW -gXW -gXW +jnk +jnk +jnk cwi -gXW -gXW -bPj +jnk +jnk +cYK cwi -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk sNi -gXW -gXW -gXW -gXW -uJR -gXW +jnk +jnk +jnk +jnk +dUi +jnk jgu jgu jgu @@ -71339,10 +71351,10 @@ jgu jgu jgu jgu -gXW -uJR -gXW -gXW +jnk +dUi +jnk +jnk gQb gQb gQb @@ -71482,26 +71494,26 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -uJR -gXW +jnk +jnk +jnk +jnk +jnk +dUi +jnk xxG jgu xxG -gXW +jnk xxG jgu xxG -gXW +jnk xxG jgu xxG -gXW -gXW +jnk +jnk alU ali alU @@ -71509,7 +71521,7 @@ alU alU ank alU -gXW +jnk alU oQg tJa @@ -71518,7 +71530,7 @@ sMI ocJ qfP jgK -djp +nNG alU atN alU @@ -71548,8 +71560,8 @@ jhN jhN ggb jhN -gXW -gXW +jnk +jnk hmI lCG nOd @@ -71557,49 +71569,49 @@ hmI nOd iJa hmI -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk lAr -gXW -gXW -gXW -gXW -uJR -gXW +jnk +jnk +jnk +jnk +dUi +jnk pqe pqe pqe pqe pqe -gXW +jnk cwi -gXW +jnk pqe pqe pqe pqe pqe -gXW -uJR -gXW -gXW +jnk +dUi +jnk +jnk gQb gQb gQb @@ -71739,26 +71751,26 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -uJR -gXW +jnk +jnk +jnk +jnk +jnk +dUi +jnk xxG jgu xxG -gXW +jnk xxG jgu xxG -gXW +jnk xxG jgu xxG -gXW -uJR +jnk +dUi alU fcj rpH @@ -71766,7 +71778,7 @@ yjS alU amC ali -gXW +jnk ali tJa ocJ @@ -71797,7 +71809,7 @@ jMu nNy nNy pHl -rPe +gAl jhN wxv rlN @@ -71814,49 +71826,49 @@ jIx xfq wtr jIx -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk lAr -gXW -gXW -gXW -gXW -uJR -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +dUi +jnk +jnk +jnk +jnk +jnk +jnk +jnk cwi -gXW -gXW -gXW -gXW -gXW -gXW -gXW -uJR -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +dUi +jnk +jnk gQb gQb gQb @@ -71996,26 +72008,26 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -uJR -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -uJR +jnk +jnk +jnk +jnk +jnk +dUi +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +dUi alU gdr gdr @@ -72023,7 +72035,7 @@ oNJ ank amC ali -gXW +jnk ali eHX tJa @@ -72032,7 +72044,7 @@ jlr wBq tJa jgK -kXE +wqR alU atN alU @@ -72054,7 +72066,7 @@ ecB vAH vAH fay -vTX +rnx jhN wxv kgq @@ -72071,49 +72083,49 @@ jIx qQb iJa jIx -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk lAr -gXW -gXW -gXW -gXW -uJR -uJR -uJR -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +dUi +dUi +dUi +jnk +jnk +jnk +jnk cwi jgu cwi -gXW -gXW -gXW -gXW -uJR -uJR -uJR -gXW -gXW +jnk +jnk +jnk +jnk +dUi +dUi +dUi +jnk +jnk gQb gQb gQb @@ -72253,26 +72265,26 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -uJR -uJR -uJR -uJR -uJR -oQF -uJR -uJR -uJR -uJR -uJR -uJR -uJR -uJR -uJR +jnk +jnk +jnk +jnk +jnk +dUi +dUi +dUi +dUi +dUi +cul +dUi +dUi +dUi +dUi +dUi +dUi +dUi +dUi +dUi alU fSV nWN @@ -72280,7 +72292,7 @@ eNs alU amC alU -gXW +jnk ali gPj tJa @@ -72297,7 +72309,7 @@ vbe hOt qSW uoh -pmH +tzm usd aLE sjW @@ -72311,7 +72323,7 @@ pIw vAH vAH fay -vTX +rnx jhN caW pvv @@ -72332,45 +72344,45 @@ gnP jIx jIx gnP -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk lAr -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk bGI fpb bGI -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -72510,26 +72522,26 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk alU ali alU @@ -72537,7 +72549,7 @@ alU alU arK alU -gXW +jnk alU nTx tJa @@ -72568,7 +72580,7 @@ pZE scZ jpi sDV -vFD +wpa jhN jhN jhN @@ -72589,45 +72601,45 @@ ptw wdt tTR jIx -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk glD cFN glD -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk bvb oEw -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk bGI chN bGI -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -72767,34 +72779,34 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk alU amF alU amC alU -gXW +jnk alU alU juk @@ -72822,10 +72834,10 @@ lYu uVb aCC oUp -bqH -bvY +dRO +dVF kdK -vTX +rnx jhN wuD wBP @@ -72846,15 +72858,15 @@ ybV tOu uCH gnP -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk oOH uUa oOH -gXW -gXW +jnk +jnk bCq bCq bCq @@ -72865,7 +72877,7 @@ oEw cwi cwi cwi -gXW +jnk bCq bCq bCq @@ -72877,14 +72889,14 @@ bGI dHe bGI bGI -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -73024,40 +73036,40 @@ gQb gQb gQb gQb -gXW -gXW -gXW -ixv -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +eGm +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk alU alU alU amC alU -gXW +jnk cwi alU olA glg lAV -lzI +jbh alU oPk oPk @@ -73079,10 +73091,10 @@ lYu eEb cXq mHA -qwi -rWi +bZe +fRe kdK -vTX +rnx jhN hWp mRa @@ -73103,15 +73115,15 @@ oKH gfX ybV jIx -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk oOH lMk oOH -gXW -gXW +jnk +jnk bCq akY bCq @@ -73122,11 +73134,11 @@ oEw bLv vyd bLv -gXW +jnk bCq fnW cAB -mtn +ojN sUh muk bHD @@ -73134,14 +73146,14 @@ cgA chN ciQ cfw -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -73281,35 +73293,35 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk ali anK ali cwi -gXW +jnk alU alU jpW @@ -73336,12 +73348,12 @@ nUB fQb lYu oUp -pQD -pQD -bnj -vTX +jmu +jmu +szd +rnx jhN -vMH +hgy fMZ ggb jhN @@ -73360,15 +73372,15 @@ dCr oKH dCr jIx -gXW +jnk oOH oOH oOH oOH lMk oOH -gXW -gXW +jnk +jnk bCq bPS aad @@ -73379,7 +73391,7 @@ bvO bLv bHE bLv -gXW +jnk bCq eHC dGb @@ -73391,14 +73403,14 @@ exy ciS ciS cfw -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -73538,36 +73550,36 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk alU amC alU cwi -gXW -gXW +jnk +jnk alU alU ali @@ -73593,10 +73605,10 @@ hBB nGa sAo fEo -cnD -cie -gIr -cNh +mdA +ozI +pmT +fiD iys ybf ybf @@ -73625,12 +73637,12 @@ oOH mzA oOH oOH -gXW +jnk bLv gyY bRc rjV -qfH +uWz bCq frP bLv @@ -73638,7 +73650,7 @@ kXx bLv bLv bCq -crV +tBz gip jgg bDt @@ -73648,14 +73660,14 @@ cgB chN nRA cfw -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -73795,51 +73807,51 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk ali aKY ali -gXW -gXW +jnk +jnk cwi -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk ghC wCC rdl -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk aJd aLM joy @@ -73882,7 +73894,7 @@ omo pXU ubY oOH -gXW +jnk bLv bPS bRf @@ -73905,14 +73917,14 @@ cgE chS bHD cfw -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -74052,51 +74064,51 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -pxR -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +hka +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk ali amC ali -gXW +jnk cwi -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk cwi ghC iHp rdl -gXW +jnk xpS xpS xpS xpS xpS xpS -gXW +jnk aJd aLL bDe @@ -74139,7 +74151,7 @@ sQf omo kBw oOH -gXW +jnk bLv bPT eGp @@ -74161,15 +74173,15 @@ cOw qqV bUt bLv -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -74300,23 +74312,23 @@ gQb gQb gQb gQb -uJR -uJR -uJR -uJR -uJR -uJR -uJR -uJR -uJR -uJR -uJR -uJR -uJR -uJR -uJR -uJR -uJR +dUi +dUi +dUi +dUi +dUi +dUi +dUi +dUi +dUi +dUi +dUi +dUi +dUi +dUi +dUi +dUi +dUi afA afA afA @@ -74327,9 +74339,9 @@ abc abc afu abc -gXW -gXW -gXW +jnk +jnk +jnk ali ali alU @@ -74339,21 +74351,21 @@ alU alU alU cwi -gXW -gXW -gXW +jnk +jnk +jnk cwi ghC iHp rdl -gXW +jnk xpS -snz -rZf -uQC -gZz +ptd +pBR +mnz +eYJ xpS -gXW +jnk aJd aLN aNl @@ -74388,7 +74400,7 @@ fGe jyd dCr jIx -gXW +jnk oOH pJI cSo @@ -74396,7 +74408,7 @@ nyD omo nMN oOH -gXW +jnk bLv bPS alv @@ -74418,15 +74430,15 @@ cOw bHE bUt bLv -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -74557,23 +74569,23 @@ gQb gQb gQb gQb -uJR -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +dUi +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk afA aWA hsX @@ -74584,9 +74596,9 @@ pMt aYp bcg abc -gXW -gXW -gXW +jnk +jnk +jnk ali dad amG @@ -74603,7 +74615,7 @@ ghC bkS iHp rdl -gXW +jnk xpS eLP qUh @@ -74645,7 +74657,7 @@ fuV fXB dCr jIx -gXW +jnk oOH fhF fwq @@ -74653,7 +74665,7 @@ nxa omo rDH oOH -gXW +jnk bCq ala alK @@ -74678,12 +74690,12 @@ bCq bCq bCq dKt -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -74814,8 +74826,8 @@ gQb gQb gQb gQb -uJR -mLs +dUi +tqz aaJ adc adc @@ -74841,9 +74853,9 @@ aee aYN oiC abc -gXW -gXW -gXW +jnk +jnk +jnk ali aKY amC @@ -74860,15 +74872,15 @@ qkr qkr iHp rdl -gXW +jnk xpS sjf -gTo +twb eYI osi -mXB -rkE -kdP +rdy +qHB +cxB aLP aMV aNU @@ -74877,7 +74889,7 @@ jhN jhN jhN jhN -tpY +izU jhN wVm jJD @@ -74902,7 +74914,7 @@ dCr nsc gnP gnP -gXW +jnk oOH oOH gao @@ -74910,9 +74922,9 @@ jxX uce oOH oOH -gXW +jnk bCq -nsU +lKm qdD amB anr @@ -74935,12 +74947,12 @@ lEo bHE qmf cwi -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -75071,8 +75083,8 @@ gQb gQb gQb gQb -uJR -gXW +dUi +jnk aaJ add adJ @@ -75098,9 +75110,9 @@ aWF aZL clQ abc -gXW -gXW -gXW +jnk +jnk +jnk ali alW lPM @@ -75117,7 +75129,7 @@ ghC bkS iHp rdl -gXW +jnk xpS dmn mgp @@ -75133,7 +75145,7 @@ hfl tmD tmD tmD -wRM +tmD ggb jhN vpz @@ -75158,21 +75170,21 @@ itD dCr oKH jIx -gXW -gXW -gXW +jnk +jnk +jnk oOH tjT tYS hde oOH -gXW -gXW +jnk +jnk bCq bTs amI bPT -bbV +icl bCq bVE bZj @@ -75192,12 +75204,12 @@ bCq bCq bCq dKt -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -75328,8 +75340,8 @@ gQb gQb gQb gQb -uJR -gXW +dUi +jnk aaJ ade adO @@ -75355,9 +75367,9 @@ jfL aZi krJ abc -gXW -gXW -gXW +jnk +jnk +jnk ali ali alU @@ -75366,22 +75378,22 @@ ali alU alU alU -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk ghC iHp rdl -gXW +jnk xpS -hdT -mHB -dfE -lMc +dRM +ppq +aSN +dKj xpS -gXW +jnk aJd aLN kGQ @@ -75415,16 +75427,16 @@ gnP dCr oKH gnP -gXW -gXW +jnk +jnk oOH oOH oOH gno xXP oOH -gXW -gXW +jnk +jnk bCq als gSA @@ -75445,16 +75457,16 @@ bCq bCq jXr bCq -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -75585,8 +75597,8 @@ gQb gQb gQb gQb -uJR -gXW +dUi +jnk aaJ abz abz @@ -75612,33 +75624,33 @@ rWD aZJ baW abc -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk ghC iHp rdl -gXW +jnk xpS xpS xpS xpS xpS xpS -gXW +jnk aJd aLN kGQ @@ -75667,7 +75679,7 @@ ren mPc wSv xFP -jZs +rYK oOH cfV eUL @@ -75686,32 +75698,32 @@ bCq bHE bTx upy -aCm +cVB iKS vAz iKS iKS iKS bLv -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk bLv xfb bLv -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -75838,12 +75850,12 @@ gQb gQb gQb gQb -uJR -uJR -uJR -uJR -uJR -gXW +dUi +dUi +dUi +dUi +dUi +jnk aak aaw aKL @@ -75869,33 +75881,33 @@ xbd bce bbH abc -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk cwi cwi ghC wCC rdl -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk aJd aLN kGQ @@ -75937,8 +75949,8 @@ omo tYS sol cfV -gXW -gXW +jnk +jnk bLv bHE kkp @@ -75950,27 +75962,27 @@ bLv bLv bLv bCq -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk bLv xfb bLv -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -76095,12 +76107,12 @@ gQb gQb gQb gQb -uJR -gXW -gXW -gXW -gXW -gXW +dUi +jnk +jnk +jnk +jnk +jnk aak nsN aSj @@ -76126,20 +76138,20 @@ xOd aZN bbJ abc -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk bkS hMH bkS @@ -76194,8 +76206,8 @@ gSs tYS mIM cfV -gXW -gXW +jnk +jnk bLv bPZ kkp @@ -76203,31 +76215,31 @@ bCq bCq fom bLv -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk bLv xfb bLv -gXW -gXW -gXW -gXW -gXW -ixv -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +eGm +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -76348,12 +76360,12 @@ gQb gQb gQb gQb -uJR -uJR -uJR -uJR -uJR -gXW +dUi +dUi +dUi +dUi +dUi +jnk aai aai aai @@ -76383,20 +76395,20 @@ abc abc abc abc -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk bkS xLt bkS @@ -76451,8 +76463,8 @@ tYS tYS vxX cfV -gXW -gXW +jnk +jnk bLv cIr kkp @@ -76460,33 +76472,33 @@ kkp uGf qcA bLv -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk cwi uAY -gXW -gXW -gXW +jnk +jnk +jnk bLv xfb bLv -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -76605,12 +76617,12 @@ gQb gQb gQb gQb -uJR -gXW -gXW -gXW -gXW -gXW +dUi +jnk +jnk +jnk +jnk +jnk aai aaK aaY @@ -76635,24 +76647,24 @@ aaw aSj aTa aai -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk bkS bkS oYN @@ -76717,50 +76729,50 @@ joR bCq qcA bLv -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk cwi elQ cwi -gXW -gXW -gXW +jnk +jnk +jnk bLv xfb bLv -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -76862,8 +76874,8 @@ gQb gQb gQb gQb -uJR -mLs +dUi +tqz aai aai aai @@ -76892,24 +76904,24 @@ aLs aSj afH abd -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk dKt cwi cwi -gXW +jnk cwi fIu dKt -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk bkS lEr qkr @@ -76920,7 +76932,7 @@ pMA ipg ipg tYD -aCD +kVS xiK iKA nPn @@ -76941,7 +76953,7 @@ xbC mPw qEX vex -giH +wmI rOG rVx qkl @@ -76964,9 +76976,9 @@ vov vov vov oOH -gXW -gXW -gXW +jnk +jnk +jnk bCq bOK bCq @@ -76974,51 +76986,51 @@ bCq bCq qcA bLv -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk lff nCr cwi -gXW -gXW -gXW +jnk +jnk +jnk bLv xfb bLv -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -77119,8 +77131,8 @@ gQb gQb gQb gQb -uJR -gXW +dUi +jnk aak ntp dDx @@ -77149,33 +77161,33 @@ aaw aSj afH abd -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk aiU aln aiU -gXW +jnk aiU anN aiU -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk bkS puA wLd qkr iUM uhx -omD -lXw -pje +oNp +eLE +sYt pOS pfZ fnr @@ -77197,19 +77209,19 @@ gFH gJa xgb qEX -ksw +glW bYL mcI gWP eIS nRi -vgz -omQ -tUn -tpd -kut -nFK -cGd +waM +iJX +mLd +uib +mpV +prk +ixx bwd bvL pgZ @@ -77227,55 +77239,55 @@ bLv bCq bHE bLv -gXW +jnk bLv qcA bLv -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk cwi -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk bLv xfb bLv -gXW -gXW -gXW +jnk +jnk +jnk cwi -gXW -gXW -gXW +jnk +jnk +jnk bCq bCq bLv bLv bLv -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -uJR -uJR -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +dUi +dUi +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -77376,8 +77388,8 @@ gQb gQb gQb gQb -uJR -gXW +dUi +jnk aai aap aaw @@ -77406,23 +77418,23 @@ aaw aSj afH abd -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk aiU alp aiU -gXW +jnk aiU alp aiU -gXW -gXW -gXW +jnk +jnk +jnk bkS bkS bkS @@ -77430,9 +77442,9 @@ bkS bkS iUM uhx -lXw +eLE tto -ceJ +oWJ lOK nPn fUI @@ -77460,13 +77472,13 @@ kIT kIT mQd nCS -kut -jxk -tyx -tpd -lLy -kut -lOj +mpV +fOE +mQa +uib +nsx +mpV +dFX bwd ccR oPn @@ -77484,20 +77496,20 @@ bHE jgg bHE bLv -gXW +jnk bLv woa bLv -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk cwi -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk bCq xfb bCq @@ -77513,26 +77525,26 @@ bPX nnm crl bLv -gXW -gXW -uJR -uJR -uJR -uJR -uJR -uJR -uJR -uJR -uJR -gXW -gXW -gXW -uJR -uJR -gXW -gXW -gXW -gXW +jnk +jnk +dUi +dUi +dUi +dUi +dUi +dUi +dUi +dUi +dUi +jnk +jnk +jnk +dUi +dUi +jnk +jnk +jnk +jnk gQb gQb gQb @@ -77633,8 +77645,8 @@ gQb gQb gQb gQb -uJR -gXW +dUi +jnk aak aaq xHp @@ -77663,10 +77675,10 @@ iQf aSj ulc aai -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk aiT aiT aiV @@ -77687,9 +77699,9 @@ bkS cOH iUM uhx -pje -lXw -omD +sYt +eLE +oNp xCC vLk kwf @@ -77712,18 +77724,18 @@ oIC nOU qEX emT -bDg +duF kIT kIT -jlE +sve tel -wAM -oJA -oJA -tOP -kut -vfW -jYl +bLh +tih +tih +bbI +mpV +egk +bkn bwd bxC pHQ @@ -77745,23 +77757,23 @@ bLv bCq woa bLv -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk bCq bCq bCq bCq -fxY +wPj bSp xCd bPW bHE -mlq +hqr bHE swV bHE @@ -77770,26 +77782,26 @@ bHE cAQ crm bLv -gXW -gXW -uJR -gXW -gXW -gXW -gXW -gXW -gXW -gXW -uJR -gXW -gXW -gXW -gXW -uJR -gXW -gXW -gXW -gXW +jnk +jnk +dUi +jnk +jnk +jnk +jnk +jnk +jnk +jnk +dUi +jnk +jnk +jnk +jnk +dUi +jnk +jnk +jnk +jnk gQb gQb gQb @@ -77890,8 +77902,8 @@ gQb gQb gQb gQb -uJR -gXW +dUi +jnk aai tIB dXz @@ -77920,10 +77932,10 @@ aaw aSj afH abd -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk aiT ajs fgz @@ -77969,18 +77981,18 @@ uDD hHu jCM fwA -qMj +kXN lTT fIE shw tel -dZo -wsO -kut -cvD -eZm -osy -fwD +rSr +php +mpV +lpO +wkw +pJC +xKB bwd fgB kBM @@ -77992,8 +78004,8 @@ bCq eVN bJf bCq -gXW -gXW +jnk +jnk bLv bHE bCq @@ -78027,26 +78039,26 @@ nPH dBX obh bLv -gXW -gXW -uJR -uJR -uJR -uJR -uJR -uJR -uJR -uJR -uJR -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +dUi +dUi +dUi +dUi +dUi +dUi +dUi +dUi +dUi +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -78147,8 +78159,8 @@ gQb gQb gQb gQb -uJR -gXW +dUi +jnk aak puh aay @@ -78177,10 +78189,10 @@ aaw aSj afH abd -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk aiU ajr aka @@ -78231,13 +78243,13 @@ nRi oVs nRi tel -hSB -gim -tjJ -lha -gim -hSB -xnm +avC +bsW +rKa +tqm +bsW +avC +nyu bwe bwe bwe @@ -78284,26 +78296,26 @@ bHD bHD bHD bHD -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -78404,8 +78416,8 @@ gQb gQb gQb gQb -uJR -gXW +dUi +jnk aai aai hfm @@ -78434,10 +78446,10 @@ dtk aSj afH abd -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk aiU aju isJ @@ -78463,7 +78475,7 @@ qkr iHp iHp iHp -ymh +iHp iHp iHp bkS @@ -78491,7 +78503,7 @@ wrj bfo bfo aJq -dIZ +jwc btz btz bwf @@ -78505,7 +78517,7 @@ ixO caq caq caq -hlN +eeS caq caq caq @@ -78539,28 +78551,28 @@ cTq rZU tes ukY -sVR +tyE hZJ hZJ -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -uJR -uJR -uJR -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +dUi +dUi +dUi +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -78661,9 +78673,9 @@ gQb gQb gQb gQb -uJR -gXW -gXW +dUi +jnk +jnk aak eop vrO @@ -78799,25 +78811,25 @@ ujC qin kCZ mfq -ado -iwJ -ado -oRI +qQx +tKa +qQx +cRQ sYh sYh sYh -oRI -iwJ -gXW -gXW -uJR -gXW -uJR -gXW -gXW -gXW -gXW -gXW +cRQ +tKa +jnk +jnk +dUi +jnk +dUi +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -78918,9 +78930,9 @@ gQb gQb gQb gQb -uJR -uJR -mLs +dUi +dUi +tqz aai aai aai @@ -79014,18 +79026,18 @@ fGw eoo aJq aJw -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk bCq ciT ofj @@ -79056,7 +79068,7 @@ aaD vcP spN mfq -cVU +pyS erG erG xjA @@ -79064,17 +79076,17 @@ sYh sYh sYh sYh -jqE -gXW -gXW -uJR -gXW -uJR -gXW -gXW -ixv -gXW -gXW +elx +jnk +jnk +dUi +jnk +dUi +jnk +jnk +eGm +jnk +jnk gQb gQb gQb @@ -79176,10 +79188,10 @@ gQb gQb gQb gQb -uJR -gXW -gXW -gXW +dUi +jnk +jnk +jnk aai aaw aaQ @@ -79271,18 +79283,18 @@ aJq eoo qZO aJw -gXW +jnk dzF dzF ocP dzF dzF -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk bCq qqQ ofj @@ -79313,25 +79325,25 @@ wQR vcP qec dMg -cVU +pyS erG erG ptr sYh sYh -oRI -oRI -iwJ -gXW -gXW -uJR -gXW -uJR -gXW -gXW -gXW -gXW -gXW +cRQ +cRQ +tKa +jnk +jnk +dUi +jnk +dUi +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -79433,10 +79445,10 @@ gQb gQb gQb gQb -uJR -uJR -uJR -gXW +dUi +dUi +dUi +jnk aai aaH aaR @@ -79499,8 +79511,8 @@ aLX bBi aOE aJn -gXW -gXW +jnk +jnk aJn aJs aJq @@ -79528,16 +79540,16 @@ aJq eoo aJq aJw -gXW +jnk dzF pLo fmv iVc dzF -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk bLv bLv bCq @@ -79548,7 +79560,7 @@ tIe bXC bXC bXC -iQm +jmo bXC bWB bWB @@ -79570,25 +79582,25 @@ wZL gKy mzU dMg -cVU +pyS erG erG xjA sYh sYh -oRI -oRI +cRQ +cRQ xib -gXW -gXW -uJR -gXW -uJR -gXW -gXW -gXW -gXW -gXW +jnk +jnk +dUi +jnk +dUi +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -79692,8 +79704,8 @@ gQb gQb gQb gQb -uJR -gXW +dUi +jnk aai pgn aap @@ -79756,8 +79768,8 @@ aJs bBi aOE aJn -gXW -gXW +jnk +jnk aJw aVb aWH @@ -79785,16 +79797,16 @@ mkM mDR fok aJw -gXW +jnk dzF dYL qbv qhz dzF -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk bLv uVZ caq @@ -79827,25 +79839,25 @@ iaJ gpl hZJ hZJ -hJm +lZb erG erG ptr sYh sYh sYh -oRI -iwJ -gXW -gXW -uJR -gXW -uJR -gXW -gXW -gXW -gXW -gXW +cRQ +tKa +jnk +jnk +dUi +jnk +dUi +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -79949,8 +79961,8 @@ gQb gQb gQb gQb -uJR -gXW +dUi +jnk aai aaI aaq @@ -80013,8 +80025,8 @@ aJs bBi bJx aJn -gXW -gXW +jnk +jnk izL lSx uyv @@ -80084,7 +80096,7 @@ tkO heJ heJ hZJ -cVU +pyS erG erG xjA @@ -80092,17 +80104,17 @@ sYh sYh sYh sYh -jqE -gXW -gXW -uJR -gXW -uJR -gXW -gXW -gXW -gXW -gXW +elx +jnk +jnk +dUi +jnk +dUi +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -80206,8 +80218,8 @@ gQb gQb gQb gQb -uJR -gXW +dUi +jnk aai aat aaS @@ -80270,8 +80282,8 @@ nmW bBi oQH aJn -gXW -gXW +jnk +jnk rup dbR xgT @@ -80319,7 +80331,7 @@ bWB bWB bYz bZv -xkC +qMc bWI bYz bWB @@ -80341,25 +80353,25 @@ nHG fwu kNU wiL -dyY -cVU +nTO +pyS erG ptr sYh sYh sYh sYh -iwJ -gXW -gXW -uJR -gXW -uJR -gXW -gXW -gXW -gXW -gXW +tKa +jnk +jnk +dUi +jnk +dUi +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -80463,8 +80475,8 @@ gQb gQb gQb gQb -uJR -gXW +dUi +jnk aai aaH aap @@ -80527,7 +80539,7 @@ aJr bBi aOE aJn -gXW +jnk rup rup rup @@ -80564,11 +80576,11 @@ hRG hRG lyn nUy -kZU +hOj syO bNJ lGT -oVZ +liU bCq bHE bHD @@ -80576,7 +80588,7 @@ bWI bWI bWI bWI -nxS +lYZ bWI bWI bWI @@ -80584,10 +80596,10 @@ bWI bHD vmE bHD -jcj +sSd pZU pZU -xnD +tBb csA fQk kVZ @@ -80598,25 +80610,25 @@ pFQ sEU urm nrW -cVU -jJu -jqE -ado -oRI -oRI -oRI -oRI -jqE -gXW -gXW -uJR -uJR -uJR -gXW -gXW -gXW -gXW -gXW +pyS +czB +elx +qQx +cRQ +cRQ +cRQ +cRQ +elx +jnk +jnk +dUi +dUi +dUi +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -80720,8 +80732,8 @@ gQb gQb gQb gQb -uJR -uJR +dUi +dUi aai aaJ aaT @@ -80747,7 +80759,7 @@ syA aSj vKM tGb -eUI +dME mUq mSP eje @@ -80784,7 +80796,7 @@ aGk bBi aOE aJn -gXW +jnk rup ofE bQR @@ -80833,7 +80845,7 @@ lwk ehA fFO xii -xIm +gvM cbn hMF cdg @@ -80841,10 +80853,10 @@ cee bHD vmE bHD -tQm +psc phI yic -dGz +vXv ssw rry tXv @@ -80862,18 +80874,18 @@ uEa iLd iLd eia -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -80977,9 +80989,9 @@ gQb gQb gQb gQb -gXW -gXW -gXW +jnk +jnk +jnk aaJ aaU abA @@ -81041,7 +81053,7 @@ aJq bBi aOE aJn -gXW +jnk rup lKi vNS @@ -81098,10 +81110,10 @@ viy bHD vmE bHD -vIb +iyN mQP gkS -jLb +oJH ssw swR pFQ @@ -81126,11 +81138,11 @@ eia eia eia eia -gXW -uJR -uJR -uJR -gXW +jnk +dUi +dUi +dUi +jnk gQb gQb gQb @@ -81236,7 +81248,7 @@ gQb gQb gQb gQb -gXW +jnk aaJ jvu gKQ @@ -81292,7 +81304,7 @@ hMu mkd mHv dxt -gXW +jnk aJn aLY swA @@ -81355,7 +81367,7 @@ dNq bHD vmE bHD -loP +aQz mQP nXF eID @@ -81383,11 +81395,11 @@ mpz tPd krh eia -gXW -uJR -gXW -uJR -gXW +jnk +dUi +jnk +dUi +jnk gQb gQb gQb @@ -81493,7 +81505,7 @@ gQb gQb gQb gQb -gXW +jnk aaJ aaJ aaJ @@ -81549,7 +81561,7 @@ dxt mkd xoI dxt -gXW +jnk aJn aJq dRb @@ -81571,14 +81583,14 @@ gGl gGl gGl iqr -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk aJn aJq lUZ @@ -81612,10 +81624,10 @@ eYz bHD buy bHD -vIb +iyN mQP cJC -lFI +eGB ssw hoR pFQ @@ -81640,11 +81652,11 @@ mYi tPd tPd eia -gXW -uJR -gXW -uJR -gXW +jnk +dUi +jnk +dUi +jnk gQb gQb gQb @@ -81750,10 +81762,10 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk aai acY xwY @@ -81834,8 +81846,8 @@ xhI xhI xhI xhI -gXW -gXW +jnk +jnk aJn aJq rtM @@ -81869,10 +81881,10 @@ bVJ bHD vmE bHD -omK +hmi mtA uwp -pMJ +nSM ssw elO iaH @@ -81897,11 +81909,11 @@ wfC wfC rpI eia -gXW -uJR -gXW -uJR -gXW +jnk +dUi +jnk +dUi +jnk gQb gQb gQb @@ -82010,7 +82022,7 @@ gQb gQb gQb gQb -gXW +jnk aai ada adH @@ -82091,8 +82103,8 @@ ihd mML ihd xhI -gXW -gXW +jnk +jnk aJn aJq lUZ @@ -82116,7 +82128,7 @@ laA bCq vHm hXQ -uwf +fnS kkC cVy dLZ @@ -82154,11 +82166,11 @@ oJZ oJZ wfC eia -gXW -uJR -gXW -uJR -gXW +jnk +dUi +jnk +dUi +jnk gQb gQb gQb @@ -82267,7 +82279,7 @@ gQb gQb gQb gQb -gXW +jnk aai adb adI @@ -82279,14 +82291,14 @@ aaw aat aaw aai -gXW -gXW +jnk +jnk aaZ -rAn -jWf +nNp +tlL evO -vUs -vUs +jJK +jJK aaZ tyI agQ @@ -82383,10 +82395,10 @@ gXg qmx vmE bHD -ers +rUU phI iMw -dJx +dOY ssw hpu xnu @@ -82411,11 +82423,11 @@ tPd tPd tPd eia -gXW -uJR -gXW -uJR -gXW +jnk +dUi +jnk +dUi +jnk gQb gQb gQb @@ -82524,7 +82536,7 @@ gQb gQb gQb gQb -mLs +tqz aai aai aai @@ -82536,14 +82548,14 @@ aai aai aai aai -uJR -gXW +dUi +jnk aaZ -rTs +kog acl ajC acL -vUs +jJK aaZ agp agt @@ -82592,7 +82604,7 @@ bfv aZR aCN aCN -uCN +mNc cEt bfv uiO @@ -82640,10 +82652,10 @@ uRV bCq bHE bHD -iid +ylP tjb afb -pVd +jgX ssw kGm iaH @@ -82668,11 +82680,11 @@ tPd jlO tPd eia -gXW -uJR -gXW -uJR -gXW +jnk +dUi +jnk +dUi +jnk gQb gQb gQb @@ -82781,26 +82793,26 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -uJR -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +dUi +jnk aaZ -gIt +nhh ack adk adK -pgl +hbg avB ago agS @@ -82895,12 +82907,12 @@ kCE lJL fBe bCq -pWM +xWA bHD -nuY +ofr fiR jUs -dJx +dOY ssw vlt ktb @@ -82925,11 +82937,11 @@ tEI xNt tPd eia -gXW -uJR -gXW -uJR -gXW +jnk +dUi +jnk +dUi +jnk gQb gQb gQb @@ -83046,18 +83058,18 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -uJR -gXW +jnk +jnk +jnk +jnk +dUi +jnk aaZ -oiM +jhw ack acM iEk -srV +gNf avB agr tKJ @@ -83106,7 +83118,7 @@ bfv aZR aCP aCP -fEZ +hZQ vAG bfv omj @@ -83182,11 +83194,11 @@ tPd prA tPd eia -gXW -uJR -gXW -uJR -gXW +jnk +dUi +jnk +dUi +jnk gQb gQb gQb @@ -83303,14 +83315,14 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -uJR -gXW +jnk +jnk +jnk +jnk +dUi +jnk aaZ -evh +rvl ack coS ljd @@ -83411,9 +83423,9 @@ eqL hSM fuT hSM -nIB -wnH -dkb +gWp +xei +sGu hSM rTQ uqS @@ -83439,11 +83451,11 @@ tPd tPd tPd eia -gXW -uJR -gXW -uJR -gXW +jnk +dUi +jnk +dUi +jnk gQb gQb gQb @@ -83560,14 +83572,14 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -uJR -gXW +jnk +jnk +jnk +jnk +dUi +jnk aaZ -mTC +jck ack adj btI @@ -83596,7 +83608,7 @@ nim nim nim nim -wey +gyg bTn rpv bTn @@ -83633,8 +83645,8 @@ ihd qgb ihd xhI -gXW -gXW +jnk +jnk aJn fGw lUZ @@ -83666,7 +83678,7 @@ xVE oeC jGq hSM -xAX +wvl hIB aRK xHg @@ -83696,11 +83708,11 @@ ifh fQX ges eia -gXW -uJR -gXW -uJR -gXW +jnk +dUi +jnk +dUi +jnk gQb gQb gQb @@ -83817,12 +83829,12 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -uJR -gXW +jnk +jnk +jnk +jnk +dUi +jnk aaZ abN ack @@ -83890,8 +83902,8 @@ xhI xhI xhI xhI -gXW -gXW +jnk +jnk aJn aJq lUZ @@ -83915,7 +83927,7 @@ jRL fUy jTw bIy -pEQ +cqH nHl hUy meS @@ -83923,8 +83935,8 @@ rJZ lfg iyu urh -kgr -cyP +nVn +qrw mhV twR mfv @@ -83953,11 +83965,11 @@ wfC wfC rpI eia -gXW -uJR -gXW -uJR -gXW +jnk +dUi +jnk +dUi +jnk gQb gQb gQb @@ -84075,11 +84087,11 @@ gQb gQb gQb xzr -gXW -gXW -gXW -uJR -gXW +jnk +jnk +jnk +dUi +jnk aaZ aci acm @@ -84117,9 +84129,9 @@ hTM puW rLo hTM -gXW -gXW -gXW +jnk +jnk +jnk aJn aJq dRb @@ -84127,7 +84139,7 @@ aOE eCl uTV oMm -oHI +pkz gai upC lry @@ -84141,14 +84153,14 @@ olj olj olj iqr -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk aJn aJq lUZ @@ -84172,7 +84184,7 @@ jGV yir amL bIy -xfc +qXf eWX qne ddU @@ -84180,8 +84192,8 @@ gEi umy sfj rrG -lSK -cyP +ofC +qrw hqZ uGG vkB @@ -84210,11 +84222,11 @@ snp tPd tPd eia -gXW -uJR -gXW -uJR -gXW +jnk +dUi +jnk +dUi +jnk gQb gQb gQb @@ -84333,8 +84345,8 @@ gQb xzr xzr xzr -gXW -wTe +jnk +ojU heo rkj aaZ @@ -84374,9 +84386,9 @@ hTM pLQ vjL hTM -gXW -gXW -gXW +jnk +jnk +jnk aJn aLY swA @@ -84437,12 +84449,12 @@ ddU dsM tHe urh -gmh +bGO hct -kCJ -nlT -qPe -esN +wmS +xEp +iTu +rmC sLd eJG pFQ @@ -84467,11 +84479,11 @@ xtn cyo hrk eia -gXW -uJR -gXW -uJR -gXW +jnk +dUi +jnk +dUi +jnk gQb gQb gQb @@ -84590,8 +84602,8 @@ gQb xzr xzr xzr -gXW -gXW +jnk +jnk nAY vSG eoS @@ -84631,7 +84643,7 @@ hTM kxw sko hTM -gXW +jnk aJw aJw aJw @@ -84639,7 +84651,7 @@ beX gJL aOE aJn -gXW +jnk rup loK udZ @@ -84724,11 +84736,11 @@ eia eia eia eia -gXW -uJR -uJR -uJR -gXW +jnk +dUi +dUi +dUi +jnk gQb gQb gQb @@ -84847,8 +84859,8 @@ gQb xzr xzr xzr -gXW -gXW +jnk +jnk rkj qCS qCS @@ -84896,7 +84908,7 @@ aMg pXZ aOE aJn -gXW +jnk rup rFl bED @@ -84981,11 +84993,11 @@ lid lid lid snI -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -85104,8 +85116,8 @@ gQb xzr xzr xzr -gXW -gXW +jnk +jnk nAY ksf aXp @@ -85153,7 +85165,7 @@ aMj gJL oQH aJn -gXW +jnk rup rup rup @@ -85231,18 +85243,18 @@ jvW tlW vin eia -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -85361,8 +85373,8 @@ gQb xzr xzr xzr -gXW -gXW +jnk +jnk rkj qCS eHh @@ -85410,8 +85422,8 @@ aLO lUZ aOE aJn -gXW -gXW +jnk +jnk rup idY hcp @@ -85447,7 +85459,7 @@ oAO eyA dTN hKD -gyI +jPx sGU qcC qNy @@ -85488,18 +85500,18 @@ nns cyv lHk eia -gXW -gXW -gXW -gXW -gXW -gXW -uJR -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +dUi +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -85618,8 +85630,8 @@ gQb xzr xzr xzr -gXW -gXW +jnk +jnk nAY wwi vSG @@ -85667,8 +85679,8 @@ nzV rtM aOE aJn -gXW -gXW +jnk +jnk izL lSx lqw @@ -85745,18 +85757,18 @@ lBH iLd iLd eia -gXW -gXW -gXW -gXW -gXW -gXW -uJR -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +dUi +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -85875,8 +85887,8 @@ gQb xzr xzr xzr -gXW -gXW +jnk +jnk iow iow iow @@ -85924,8 +85936,8 @@ aLQ lUZ aOE aJn -gXW -gXW +jnk +jnk aJw aVu oNm @@ -85954,10 +85966,10 @@ lUZ snq vOh cWt -aPT +mbs wqT rVU -qxf +oau bzA dTN baE @@ -85978,7 +85990,7 @@ eqL ghg eqL mWu -oBm +dcZ yeC aIU cpq @@ -85993,7 +86005,7 @@ gey lKO pJv oEm -xTz +kzp sjI ohY the @@ -86001,19 +86013,19 @@ ddn gaE cwi cwi -gXW -gXW -gXW -gXW -gXW -gXW -gXW -uJR -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +dUi +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -86132,8 +86144,8 @@ gQb xzr xzr xzr -gXW -gXW +jnk +jnk iow fXf kYG @@ -86181,8 +86193,8 @@ jSE lUZ aOE aJn -gXW -gXW +jnk +jnk aJn aVv bBp @@ -86241,7 +86253,7 @@ emg oBc gWy hZh -huy +gyM joZ joZ ccm @@ -86258,19 +86270,19 @@ wDN cwi cwi cwi -gXW -gXW -gXW -gXW -uJR -uJR -uJR -uJR -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +dUi +dUi +dUi +dUi +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -86389,8 +86401,8 @@ gQb xzr xzr xzr -gXW -gXW +jnk +jnk gLf evn txF @@ -86422,7 +86434,7 @@ qpL nzF hTM hzp -tVt +svV nwq oKt rYP @@ -86478,7 +86490,7 @@ sDg xyM xyM xyM -iYa +kGc bKp qnj rLU @@ -86494,11 +86506,11 @@ rLU bKp rLU nmi -lAl +qhq vqw qSd riF -kZi +byA jVr esE ccm @@ -86515,19 +86527,19 @@ ohY gaE cwi cwi -gXW -gXW -gXW -gXW -gXW -gXW -gXW -uJR -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +dUi +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -86646,8 +86658,8 @@ gQb xzr xzr xzr -gXW -gXW +jnk +jnk gLf iFp pzF @@ -86735,7 +86747,7 @@ pmK pmK aIg jaU -pNK +tgp rLU qnj rLU @@ -86755,7 +86767,7 @@ sAE nqb ghJ fRc -rBd +kPE joZ joZ ccm @@ -86769,22 +86781,22 @@ pPA stM stM stM -gXW -gXW +jnk +jnk cwi -gXW -gXW -gXW -gXW -gXW -gXW -gXW -uJR -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +dUi +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -86903,8 +86915,8 @@ xzr xzr xzr xzr -gXW -gXW +jnk +jnk gLf bVm qpU @@ -86988,12 +87000,12 @@ pOg wqT oAO dTN -idq -idq -idq -idq -gFM -idq +mKu +mKu +mKu +mKu +wIx +mKu qnj nTp hMi @@ -87025,23 +87037,23 @@ mbf afE myM stM -gXW -gXW -gXW +jnk +jnk +jnk cwi -gXW -gXW -gXW -gXW -gXW -gXW -gXW -oQF -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +cul +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -87160,8 +87172,8 @@ xzr xzr xzr xzr -gXW -gXW +jnk +jnk iow grr mRL @@ -87209,11 +87221,11 @@ rck wtE bkR aLX -kVt +rVM aJq aJq oIT -tcH +eDQ lxY aLY aJq @@ -87245,12 +87257,12 @@ wqT wqT oAO kvB -sQR -eNr -vkt -nah -xcn -xsA +qtW +bCT +dLJ +hWP +osU +fOy uLr lya xdv @@ -87269,7 +87281,7 @@ uMO oBc gWy hZh -xhX +eJt eeh eeh ccm @@ -87278,27 +87290,27 @@ wdi ewm gKE ipq -ntH +kSk uoB eqV stM -gXW -gXW -gXW +jnk +jnk +jnk cwi -gXW -gXW -gXW -gXW -gXW -gXW -gXW -uJR -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +dUi +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -87417,8 +87429,8 @@ xzr xzr xzr xzr -gXW -gXW +jnk +jnk iow iow iow @@ -87502,12 +87514,12 @@ cGj hkL oAO dTN -pbY -pel -rDK -djM -eRW -bom +hNZ +ldk +lEv +lGJ +bsP +dno lfc sTP vxA @@ -87522,11 +87534,11 @@ rLU oKF qnj nmi -uYt +gye vqw qSd riF -nVN +wLW mwT ehY ccm @@ -87541,21 +87553,21 @@ juN dTe cGr cwi -gXW +jnk cwi -gXW -gXW -gXW -gXW -gXW -gXW -gXW -oQF -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +cul +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -87674,13 +87686,13 @@ xzr xzr xzr xzr -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk mfe tJr rpB @@ -87691,7 +87703,7 @@ qnS tGf vOj ajm -hFx +srI ajn plV akA @@ -87759,12 +87771,12 @@ dTN dTN oAO oSc -wnb -eja -qNb -fNX -pST -ddh +gwW +lXX +noo +mOB +kfs +omH tMN oQS xdv @@ -87783,7 +87795,7 @@ jZW nqb ghJ fRc -vfP +sgE eeh eeh ccm @@ -87798,21 +87810,21 @@ iMr stM cwi teS -gXW +jnk cwi -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -ixv -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +eGm +jnk +jnk gQb gQb gQb @@ -87931,13 +87943,13 @@ xzr xzr xzr xzr -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk mfe opK csa @@ -88016,12 +88028,12 @@ lRP dTN tcE dTN -dAX -ibV -vyU -uKs -ofu -iMb +kER +iMx +eQf +rUu +mii +xCP sIv rLU oQb @@ -88045,31 +88057,31 @@ ccm ccm ccm evJ -gXW -gXW -gXW +jnk +jnk +jnk eBE -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk ptO -gXW +jnk cwi -gXW -gXW -gXW -gXW -gXW -gXW -gXW -oQF -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +cul +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -88188,10 +88200,10 @@ xzr xzr xzr xzr -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk qmB vOj vOj @@ -88202,7 +88214,7 @@ vOj tpE cyU eMl -hMM +eBO bTn dFE fHl @@ -88215,7 +88227,7 @@ dRx lFQ bTn bTn -ghu +cEJ eMl gsx fOZ @@ -88273,12 +88285,12 @@ wqT dTN rUm dTN -mrq -rDK -dfc -lJh -ivI -cyC +oRT +lEv +bUd +oWz +qAZ +hat tOy ciH ciH @@ -88297,36 +88309,36 @@ dFW fJb lIH ohp -gHx +xXa oUi oUi ccm ohY -gXW -gXW -gXW +jnk +jnk +jnk ipq -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk ftG -gXW +jnk cwi -gXW -gXW -gXW -gXW -gXW -gXW -gXW -uJR -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +dUi +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -88445,10 +88457,10 @@ xzr xzr xzr xzr -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk cwi bPU gSh @@ -88470,7 +88482,7 @@ jkL jkL jkL jkL -ngh +bjh agR tjL eMl @@ -88530,12 +88542,12 @@ kUJ dTN oAO dTN -mVf -jgs -bTU -vcq -pmO -ixT +beQ +cKz +bkG +crF +jma +ykx bPf tIo iAS @@ -88550,40 +88562,40 @@ rmB tIo tIo jJj -cOJ +hzq vqw qSd riF -jnK +dsi uqM xdx ccm -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk lXD -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk ftG -gXW +jnk cwi -gXW -gXW -gXW -gXW -gXW -gXW -gXW -uJR -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +dUi +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -88702,10 +88714,10 @@ xzr xzr xzr xzr -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk dKt vOj vOj @@ -88734,10 +88746,10 @@ eMl iAf wld kbJ -gEB -fxl +qFw +iWo aWb -bIk +lwP vXb baY bxr @@ -88787,22 +88799,22 @@ tct dTN oAO kvB -cOk -oux -tdU -ayX -bMt -cyC +elL +eoG +ffN +prj +oaF +hat eSK -qlE +gNK uxT rTv wiO -oZL +leY uhD rLU gsC -jhK +hSr wNJ rDD pBb @@ -88811,36 +88823,36 @@ tjW fJb lIH vLT -eWO +pxM oUi oUi ccm -gXW -gXW -chU -gXW +jnk +jnk +jxu +jnk lXD -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk ptO -gXW +jnk cwi -gXW -gXW -gXW -gXW -gXW -gXW -gXW -uJR -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +dUi +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -88961,11 +88973,11 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk vOj cwi qgG @@ -88974,12 +88986,12 @@ eMl gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk eMl eMl upw @@ -88991,8 +89003,8 @@ eMl eNF wld cXW -eyk -hvU +mog +uzo aWb bSk dfs @@ -89008,11 +89020,11 @@ cVb eBj eBj fmt -kNK +xNR jsi lvZ rDU -vSL +rLZ fmt iKY aYV @@ -89044,12 +89056,12 @@ dTN dTN oAO dTN -siA -pju -mYv -mYG -dzJ -fFl +ksi +uZX +nfU +rTF +xUM +omi tYv fJb cUv @@ -89072,32 +89084,32 @@ ccm ccm ccm ccm -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk lXD -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk ftG -gXW +jnk cwi -gXW -gXW -gXW -gXW -gXW -gXW -gXW -uJR -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +dUi +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -89220,7 +89232,7 @@ gQb gQb gQb gQb -gXW +jnk gQb gQb lLe @@ -89231,17 +89243,17 @@ tpE gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk eMl fKN eMl -nCX +ekb aWW pnA eMl @@ -89265,7 +89277,7 @@ ckX mRX xZS gKr -lJZ +cfl giZ hdW xCF @@ -89334,27 +89346,27 @@ cEk cEk cEk gcz -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk ftG -gXW +jnk cwi -gXW -gXW -gXW -gXW -gXW -gXW -gXW -oQF -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +cul +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -89491,10 +89503,10 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk eMl plo eMl @@ -89581,37 +89593,37 @@ xjx nxB xjx wSS -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk ftG -gXW +jnk cwi -gXW -gXW -gXW -gXW -gXW -gXW -gXW -uJR -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +dUi +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -89748,16 +89760,16 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk cwi cwi cwi -gXW -gXW -gXW +jnk +jnk +jnk baY jWz jWz @@ -89817,21 +89829,21 @@ oAO vOh cwi ccm -ieW -iFe -ehm +hZB +jET +ntc ccm -pqf -fqK -hWM +tsP +iGf +lRV ccm -mWn -jah -gJz +iLi +hoG +skc ccm -qHE -fAQ -kTm +lbg +soo +slC ccm lpX vqw @@ -89840,35 +89852,35 @@ xjx xjx xjx cwi -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk ptO -gXW +jnk cwi -gXW -gXW -gXW -gXW -gXW -gXW -gXW -oQF -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +cul +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -89996,7 +90008,7 @@ gQb gQb gQb gQb -fqL +rUd gQb gQb gQb @@ -90005,15 +90017,15 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk baY baY mnr @@ -90032,7 +90044,7 @@ qBm dex hKK cVb -pfI +tIK scH mRX pRW @@ -90113,19 +90125,19 @@ cwi ftG cwi cwi -gXW -gXW -gXW -gXW -gXW -gXW -gXW -oQF -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +cul +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -90262,15 +90274,15 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk baY aro aro @@ -90289,7 +90301,7 @@ qBm koB bau cVb -pfI +tIK scH xZS fmt @@ -90354,35 +90366,35 @@ xjx xjx xjx cwi -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk ftG -gXW +jnk cwi -gXW -gXW -gXW -gXW -gXW -gXW -gXW -uJR -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +dUi +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -90519,15 +90531,15 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk baY aro aro @@ -90541,7 +90553,7 @@ aro aro cVb cVb -chI +pmx jIP xBq cVb @@ -90562,7 +90574,7 @@ aDA jtG uSX bmK -kMF +sYA dvJ sEn dHS @@ -90608,47 +90620,47 @@ cwi xjx nRn xjx -gXW +jnk cwi cwi cwi cwi -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk ftG -gXW +jnk cwi -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk ctZ ctZ ctZ ctZ ctZ -gXW -gXW -gXW -emx -gXW +jnk +jnk +jnk +kbV +jnk gQb gQb -gXW -gXW -gXW +jnk +jnk +jnk gQb gQb gQb @@ -90656,9 +90668,9 @@ gQb gQb gQb gQb -gXW -nnz -gXW +jnk +plg +jnk gQb gQb gQb @@ -90777,14 +90789,14 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk baY aro aro @@ -90802,15 +90814,15 @@ xLr oFM gEw cVb -hUD +xeD gjg csK mtr -gjJ +uHZ jnv lIw vgc -jZI +yhV gmp sRN cAG @@ -90900,10 +90912,10 @@ cqk cqk cqk cqk -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk cqk cqk cqk @@ -91034,14 +91046,14 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk baY aro aro @@ -91126,33 +91138,33 @@ ocR bCf bEy bxo -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk ftG dKt cwi dKt -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk cwi ctZ cuh cuq bmL cuL -nou +eyH cvj mYE dZH @@ -91177,7 +91189,7 @@ cva cva cva cva -gXW +jnk gQb gQb gQb @@ -91291,14 +91303,14 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk baY pFO aro @@ -91389,21 +91401,21 @@ tAt tAt tAt snI -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk ftG csD bxu csD cua -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk ctZ cui cuq @@ -91435,7 +91447,7 @@ cva cva cva cva -gXW +jnk gQb gQb gQb @@ -91548,14 +91560,14 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk baY aro aro @@ -91573,7 +91585,7 @@ xLr oFM xLr cVb -uim +bIF qqX wPy kAh @@ -91644,14 +91656,14 @@ wHz cmd bJS cmd -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk ftG csD csX @@ -91692,7 +91704,7 @@ cvp cva cva cva -gXW +jnk gQb gQb gQb @@ -91805,14 +91817,14 @@ gQb gQb gQb gQb -gXW -gXW -ixv -gXW -gXW -gXW -gXW -gXW +jnk +jnk +eGm +jnk +jnk +jnk +jnk +jnk baY aro aro @@ -91826,7 +91838,7 @@ aro aro cVb cVb -iCy +leb nAQ xZF cVb @@ -91872,9 +91884,9 @@ ric hZg gLw rXv -ucV -oex -rCf +jPY +pud +dMP dTN noi xjJ @@ -91904,10 +91916,10 @@ cmd cmd cqs cwi -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk csD csO csD @@ -91915,10 +91927,10 @@ poy cti cua cua -ncG -xiz -qAB -waf +pLU +mCL +hFM +qod cuj cuj cuj @@ -92062,14 +92074,14 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk baY aro aro @@ -92087,7 +92099,7 @@ gaY qBm qOf cVb -nkw +lAv bvC rYk oep @@ -92131,7 +92143,7 @@ aFa ags upx jyb -szb +gjh dTN dTN dTN @@ -92156,22 +92168,22 @@ bEL bFZ cna bGr -bGJ +wBJ bHB cpN cqt cwi -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk csD csN csV ctb wXm cua -mNY +tzl ctu ctG ctP @@ -92319,14 +92331,14 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk baY aro aro @@ -92357,7 +92369,7 @@ vaJ aoU mjA ect -uLo +lgl oOF rSw bfK @@ -92413,15 +92425,15 @@ vfT cme nTy cme -bGS +pCd cmd cmd cqs cwi -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk csD csU csV @@ -92463,7 +92475,7 @@ xvQ cva cva cva -ldW +ezB gQb gQb gQb @@ -92576,14 +92588,14 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk baY baY baY @@ -92666,26 +92678,26 @@ izt lOp oAm fwX -oQB +bwB bGj bGj cmd cmd cmd -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk csD ctb csV ctb bMY fZE -xDs +uoK ctx vED ctS @@ -92833,30 +92845,30 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk mnr glo gUC jbT vOf baY -hMR -gXW -gXW +bVG +jnk +jnk cVb -xLe +pCi eLz -lXx +hFE soc aRD enS @@ -92877,7 +92889,7 @@ hyR bfK jXV doP -eRs +vKm ifP ikd grC @@ -92909,7 +92921,7 @@ bpI mNe abU brT -osS +isO bYD bYD qZM @@ -92933,9 +92945,9 @@ cmd cmd cmd cmd -gXW -gXW -gXW +jnk +jnk +jnk csD csD csD @@ -92946,7 +92958,7 @@ cua pkn ctt irX -qUQ +jxW cuj cuj cuj @@ -93075,39 +93087,39 @@ gQb gQb gQb gQb -uJR -oQF -uJR -uJR -uJR -uJR -uJR -uJR -uJR -uJR -uJR -uJR -uJR -uJR -uJR -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +dUi +cul +dUi +dUi +dUi +dUi +dUi +dUi +dUi +dUi +dUi +dUi +dUi +dUi +dUi +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk mnr psz tYk jbT vdO baY -gXW +jnk alP alP alP @@ -93115,7 +93127,7 @@ alP gQf alP alP -trX +htI emL gup qMd @@ -93184,20 +93196,20 @@ bjT mOR gKW nJV -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk bME cua ctz @@ -93234,7 +93246,7 @@ cvp cva cva cva -gXW +jnk gQb gQb gQb @@ -93332,39 +93344,39 @@ gQb gQb gQb gQb -uJR -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -uJR -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +dUi +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +dUi +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk mnr qZN nMz jbT moP baY -gXW +jnk alP mbC mdw @@ -93440,22 +93452,22 @@ bYD bYD cbx bYD -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk cua oKJ jJP @@ -93491,7 +93503,7 @@ cva cva cva cva -gXW +jnk gQb gQb gQb @@ -93589,27 +93601,27 @@ gQb gQb gQb gQb -uJR -gXW +dUi +jnk xxG jgu xxG -gXW +jnk xxG jgu xxG -gXW +jnk xxG jgu xxG -gXW -uJR -gXW -gXW -gXW -gXW -gXW -gXW +jnk +dUi +jnk +jnk +jnk +jnk +jnk +jnk cwi alO arp @@ -93624,19 +93636,19 @@ alP alP alP rmg -iru +mvU alP arI mqW alP -hVO +jea oCF oNL dju sEf dhp rAl -uhu +mTs rLD alP alP @@ -93697,22 +93709,22 @@ tFa bYD veR bYD -gXW -gXW -gXW -gXW -wJW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +pQy +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk cua ctE xzm @@ -93722,7 +93734,7 @@ cum cuw cuI cuV -var +dlN cvj wwu frB @@ -93747,7 +93759,7 @@ cva cva cva cva -gXW +jnk gQb gQb gQb @@ -93846,27 +93858,27 @@ gQb gQb gQb gQb -uJR -gXW +dUi +jnk xxG jgu xxG -gXW +jnk xxG jgu xxG -gXW +jnk xxG jgu xxG -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk cwi sEz anf @@ -93954,22 +93966,22 @@ aTS bYD cbx lwn -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk cua cua cua @@ -93984,10 +93996,10 @@ cqk cqk cqk cqk -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk cqk cqk cqk @@ -94103,33 +94115,33 @@ gQb gQb gQb gQb -uJR -gXW +dUi +jnk xxG jgu xxG -gXW +jnk xxG jgu xxG -gXW +jnk xxG jgu xxG -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk vXp alO alP alP anf -uMc +opM aqy oJk wvQ @@ -94209,44 +94221,44 @@ wnl tFa tFa bYD -vzL +kqu lwn -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk ryI ryI ryI ryI ryI -gXW -gXW -wJW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +pQy +jnk +jnk +jnk +jnk +jnk +jnk cuf cuf cuf cuf cuf -gXW -gXW -gXW -mZB -gXW +jnk +jnk +jnk +yfE +jnk gQb gQb -gXW -gXW -gXW +jnk +jnk +jnk gQb gQb gQb @@ -94254,9 +94266,9 @@ gQb gQb gQb gQb -gXW -tMz -gXW +jnk +dnf +jnk gQb gQb gQb @@ -94360,29 +94372,29 @@ gQb gQb gQb gQb -gXW -gXW +jnk +jnk xxG jgu xxG -gXW +jnk xxG jgu xxG -gXW +jnk xxG jgu xxG -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk alP sVj oJk @@ -94413,7 +94425,7 @@ anf anf oeR alP -uLo +lgl bDd jTV ibn @@ -94462,19 +94474,19 @@ lBD tEh qbE pIB -wim +htU dxy nLM bYD cbx lwn -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk ryI prX qAP @@ -94482,8 +94494,8 @@ sft ryI ryI ryI -gXW -gXW +jnk +jnk gQb gQb gQb @@ -94614,28 +94626,28 @@ gQb gQb gQb gQb -uJR -uJR -uJR -gXW -gXW +dUi +dUi +dUi +jnk +jnk xxG jgu xxG -gXW +jnk xxG jgu xxG -gXW +jnk xxG jgu xxG -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk amw aof aof @@ -94725,13 +94737,13 @@ bYD bYD cbx bYD -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk ryI rGb hJM @@ -94739,8 +94751,8 @@ xUW eaE fKn ryI -gXW -gXW +jnk +jnk gQb gQb gQb @@ -94871,25 +94883,25 @@ gQb gQb gQb gQb -uJR -gXW -gXW -gXW -gXW -gXW +dUi +jnk +jnk +jnk +jnk +jnk jgu -gXW -gXW -gXW +jnk +jnk +jnk jgu -gXW -gXW -gXW +jnk +jnk +jnk jgu -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk dKt amw amw @@ -94972,7 +94984,7 @@ qZM eoR mfL eoR -nTZ +qqJ bYD jAo eoR @@ -94985,10 +94997,10 @@ bYD bYD lwn bYD -rVu -gXW -myh -lbr +scw +jnk +rdV +pcs ryI vAX krt @@ -94996,8 +95008,8 @@ wca ryI ryI ryI -gXW -gXW +jnk +jnk gQb gQb gQb @@ -95128,8 +95140,8 @@ gQb gQb gQb gQb -uJR -gXW +dUi +jnk rhU jgu jgu @@ -95196,7 +95208,7 @@ bYD lmj bYD bYD -osg +rzi wym pyv roH @@ -95242,19 +95254,19 @@ sjc rMP cbx icF -rVu -gXW -gXW -lbr +scw +jnk +jnk +pcs gXk xUW dOB uzt ueK -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk gQb gQb gQb @@ -95385,25 +95397,25 @@ gQb gQb gQb gQb -uJR -gXW -gXW -gXW -gXW -gXW +dUi +jnk +jnk +jnk +jnk +jnk jgu -gXW -gXW -gXW +jnk +jnk +jnk jgu -gXW -gXW -gXW +jnk +jnk +jnk jgu -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk cwi amw amw @@ -95423,7 +95435,7 @@ alP atB alP alP -klj +ifE eKT eKT alP @@ -95431,7 +95443,7 @@ old alP eKT eKT -gXW +jnk alP xGw aCt @@ -95499,19 +95511,19 @@ tEh bYD lwn bYD -rVu -gXW -myh -lbr +scw +jnk +rdV +pcs ryI rWU gZj uzt ueK -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk gQb gQb gQb @@ -95642,28 +95654,28 @@ gQb gQb gQb gQb -uJR -oQF -uJR -cRg -gXW +dUi +cul +dUi +pCq +jnk xxG jgu xxG -gXW +jnk xxG jgu xxG -gXW +jnk xxG jgu xxG -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk amw aof aof @@ -95710,7 +95722,7 @@ oVi oVi oVi oVi -oVi +vIL emY oox pNi @@ -95754,21 +95766,21 @@ jiQ uUs vEx tEh -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk ryI ryI ueK ryI ryI -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk gQb gQb gQb @@ -95902,28 +95914,28 @@ gQb gQb gQb gQb -gXW -gXW +jnk +jnk xxG jgu xxG -gXW +jnk xxG jgu xxG -gXW +jnk xxG jgu xxG -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk alP aqy anf @@ -96011,21 +96023,21 @@ cbx coT rAf tEh -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -96159,28 +96171,28 @@ gQb gQb gQb gQb -uJR -gXW +dUi +jnk xxG jgu xxG -gXW +jnk xxG jgu xxG -gXW +jnk xxG jgu xxG -gXW -gXW -ixv -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +eGm +jnk +jnk +jnk +jnk +jnk +jnk alP hsa oJk @@ -96208,7 +96220,7 @@ alP alP alP alP -xai +atQ jWC cpe bdl @@ -96219,7 +96231,7 @@ bfT xRl biG oFq -rnO +rjc lhH bfT bor @@ -96268,21 +96280,21 @@ bYD gWA rAf lwn -gXW -gXW -wJW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +pQy +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -96416,28 +96428,28 @@ gQb gQb gQb gQb -uJR -gXW +dUi +jnk xxG jgu xxG -gXW +jnk xxG jgu xxG -gXW +jnk xxG jgu xxG -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk alP aty anf @@ -96520,26 +96532,26 @@ nka nka nka uyS -gXW +jnk lwn gWA rAf lwn -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -wJW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +pQy +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -96673,28 +96685,28 @@ gQb gQb gQb gQb -uJR -gXW +dUi +jnk xxG jgu xxG -gXW +jnk xxG jgu xxG -gXW +jnk xxG jgu xxG -gXW -uJR -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +dUi +jnk +jnk +jnk +jnk +jnk +jnk +jnk alP izk cNZ @@ -96722,7 +96734,7 @@ nqI siL vKY pXx -eoK +lvq dnp pwV pwV @@ -96738,7 +96750,7 @@ kij bfT mBw bsQ -odC +gMl box ism wZm @@ -96782,21 +96794,21 @@ lwn gWA rAf lwn -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -96930,27 +96942,27 @@ gQb gQb gQb gQb -uJR -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -sEl -gXW -uJR -gXW -gXW -gXW -gXW -gXW -gXW +dUi +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +msZ +jnk +dUi +jnk +jnk +jnk +jnk +jnk +jnk alP alP alP @@ -96997,7 +97009,7 @@ csE bsQ bsR box -utg +vlR kEi byf bzw @@ -97039,21 +97051,21 @@ bYD gWA rAf tEh -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -97187,27 +97199,27 @@ gQb gQb gQb gQb -uJR -uJR -uJR -uJR -uJR -uJR -uJR -uJR -uJR -uJR -uJR -uJR -oQF -uJR -uJR -gXW -gXW -gXW -gXW -gXW -gXW +dUi +dUi +dUi +dUi +dUi +dUi +dUi +dUi +dUi +dUi +dUi +dUi +cul +dUi +dUi +jnk +jnk +jnk +jnk +jnk +jnk alP xcz uvS @@ -97296,21 +97308,21 @@ bYD hTn rAf tEh -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -97458,13 +97470,13 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk alP bsh qgZ @@ -97553,21 +97565,21 @@ lwn bDw rAf lwn -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -97715,17 +97727,17 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk alP vbb oJk -bgd +dHb alP anf aBF @@ -97810,21 +97822,21 @@ lwn gBY rAf lwn -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -97972,15 +97984,15 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk alP -jGL +xKQ pqm sMZ alP @@ -98023,7 +98035,7 @@ blG aJY cHV cIa -rIr +ltI box bpZ fhW @@ -98067,21 +98079,21 @@ lwn gWA rAf lwn -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -98229,13 +98241,13 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk alP alP alP @@ -98247,7 +98259,7 @@ alP awJ alP jaf -lYH +dkC cwP kFm mIB @@ -98257,7 +98269,7 @@ hYB vbB pXx pXx -umD +sjx vVp wAT lIT @@ -98324,21 +98336,21 @@ bYD gWA rAf tEh -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -98486,13 +98498,13 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk alO kct xPV @@ -98539,7 +98551,7 @@ eqR bqd hyc box -lRJ +azF pUn byi prp @@ -98581,21 +98593,21 @@ bYD gWA rAf tEh -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk mtK cNW cNW cOT cOT dKt -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk gQb gQb gQb @@ -98743,13 +98755,13 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk alP kwv anf @@ -98838,21 +98850,21 @@ lwn coT rAf lwn -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk mtK icY keQ cOe cty cwi -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk gQb gQb gQb @@ -99000,12 +99012,12 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk alP alP alP @@ -99090,26 +99102,26 @@ nka nka nka pCj -gXW +jnk lwn coT cbx lwn -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk mtK cNW cNW cty cNW cwi -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk gQb gQb gQb @@ -99257,14 +99269,14 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk alP -iOk +nQt fBN hqx lzw @@ -99303,7 +99315,7 @@ bfX bhy biP eIU -bfD +nVg maG toy bpU @@ -99352,21 +99364,21 @@ cNW fCw cNW cOT -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk mtK hWh azs cmn cOT -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -99514,12 +99526,12 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk dfM okI ilU @@ -99588,7 +99600,7 @@ bIT bJN fFz jRO -cCc +lKU bhA bQZ tHZ @@ -99619,11 +99631,11 @@ cmn cmn mLw cOT -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -99771,12 +99783,12 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk dfM hnp hnp @@ -99876,11 +99888,11 @@ cmn cmn cBU cOT -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -100029,16 +100041,16 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk dfM gzT gNv tNA -qvi +coa ilU ilU alP @@ -100112,7 +100124,7 @@ nPK vdD xGt gWT -wEm +cKA jsw jsw cPl @@ -100133,11 +100145,11 @@ cNW cOT cOT cNW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -100286,20 +100298,20 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk alP -vMt +vXZ hnp vqO alP alP -opd +bBo alP -qyL +ghz auI aAK auJ @@ -100386,15 +100398,15 @@ xiY ixm qer cNW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -100544,10 +100556,10 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk dfM tWx iSQ @@ -100562,7 +100574,7 @@ qDf aHf bbk asB -nyu +ooa pty ciB gOy @@ -100622,7 +100634,7 @@ bQZ uOi oWy gZY -ulk +bSq mtK wcO xIk @@ -100643,23 +100655,23 @@ fDn rFe iuO cNW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -100801,10 +100813,10 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk dfM xgt hnp @@ -100856,8 +100868,8 @@ rQs sFp quU bgc -owm -nvX +bYp +vTY bEC bEC lBY @@ -100867,13 +100879,13 @@ bEC bEC bEC cas -lCn -nzZ +wnu +hzW tHc gaV vnb -vOH -hFo +dvF +snK cas bXh bYj @@ -100900,23 +100912,23 @@ yfp tqF jWH cOT -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -101058,10 +101070,10 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk dfM sOa gFm @@ -101113,8 +101125,8 @@ tBh vfH xyr bgc -oqF -pfx +hZm +iOs bEC umY uej @@ -101124,13 +101136,13 @@ aVs mHw rGT loi -lCn -fck +wnu +dzl vdT wQu gJg -gYw -ool +dmE +orZ cas kbL bYj @@ -101157,23 +101169,23 @@ fgP dPO iuO cOT -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -101315,10 +101327,10 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk alP alP alP @@ -101373,7 +101385,7 @@ xnR hJZ hJZ pLE -sKp +dBN gLx uhi izq @@ -101381,13 +101393,13 @@ fTI iDg dEh loi -hhj -lCn +nYG +wnu eQR gci gJg -gYw -udO +dmE +uPh cas duP bYj @@ -101402,7 +101414,7 @@ mtK cou cvO cNW -gXW +jnk cNW cmr oTL @@ -101412,25 +101424,25 @@ cli jLw iuO iuO -cEF +blg cNW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -101573,16 +101585,16 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk uXB -gXW +jnk asB tMT itK @@ -101659,7 +101671,7 @@ mtK bNA cvO cOT -gXW +jnk cOT oTL wql @@ -101671,23 +101683,23 @@ cOT cOT cNW cNW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -ixv -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +eGm +jnk +jnk gQb gQb gQb @@ -101830,16 +101842,16 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk uXB -gXW +jnk asB asB asB @@ -101887,16 +101899,16 @@ uXG vqr uvi pLE -qyV +ruo dFZ gLh izq fTI bCX -hyQ +gtm loi -psu -tSh +fvo +tEi qTI gzD sVl @@ -101916,35 +101928,35 @@ mtK nmw cvO cOT -gXW +jnk cOT ydc cNW cNW cNW -gXW -gXW -gXW -gXW -uJR -uJR -uJR -uJR -uJR -uJR -uJR -uJR -oQF -uJR -uJR -uJR -uJR -uJR -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +dUi +dUi +dUi +dUi +dUi +dUi +dUi +dUi +cul +dUi +dUi +dUi +dUi +dUi +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -102089,16 +102101,16 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk cwi -gXW -gXW -gXW +jnk +jnk +jnk uXB eKT eKT @@ -102149,7 +102161,7 @@ mqf lRm vui gXV -jAj +fAi njW loi loi @@ -102173,35 +102185,35 @@ mtK vJp cvO cNW -gXW +jnk cNW ydc cNW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -cRg -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -uJR -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +pCq +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +dUi +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -102346,16 +102358,16 @@ gQb gQb gQb gQb -gXW -gXW -gXW -ixv -gXW -gXW +jnk +jnk +jnk +eGm +jnk +jnk cwi -gXW -gXW -gXW +jnk +jnk +jnk uXB eKT eKT @@ -102374,7 +102386,7 @@ pLk seu sdJ oKR -dCW +pqO eHY wsg wsg @@ -102434,31 +102446,31 @@ cNW cNW ydc cNW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk wYI jgu wYI -gXW +jnk wYI jgu wYI -gXW +jnk wYI jgu wYI -gXW -uJR -gXW -gXW -gXW -gXW -gXW +jnk +dUi +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -102604,15 +102616,15 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk uXB -gXW -gXW -gXW +jnk +jnk +jnk cwi eKT eKT @@ -102644,7 +102656,7 @@ jSV wAz lbN fym -gsw +xqE uRF xyA vvQ @@ -102672,7 +102684,7 @@ tmu pRo cnT cnT -nyQ +ezW bQZ txm bQZ @@ -102682,8 +102694,8 @@ bTl bTl mtK jjw -daI -vJy +rFu +uxq cNW cvO ciL @@ -102691,31 +102703,31 @@ cOe cOe efZ cOT -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk wYI jgu wYI -gXW +jnk wYI jgu wYI -gXW +jnk wYI jgu wYI -gXW -uJR -gXW -gXW -gXW -gXW -gXW +jnk +dUi +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -102862,14 +102874,14 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk uXB -gXW -gXW -gXW +jnk +jnk +jnk cwi eKT eKT @@ -102913,12 +102925,12 @@ dPc qcB bDW tlp -mfm +bXy bEC sqJ ejr upA -hXT +sXN bEs ert ert @@ -102948,31 +102960,31 @@ ydc ydc ydc cOT -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk wYI jgu wYI -gXW +jnk wYI jgu wYI -gXW +jnk wYI jgu wYI -gXW -uJR -gXW -gXW -gXW -gXW -gXW +jnk +dUi +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -103119,14 +103131,14 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk uXB eKT eKT @@ -103149,7 +103161,7 @@ xze dXd fwM hto -veG +mTM uEc cZI kaC @@ -103177,7 +103189,7 @@ mpU upA rDJ bEs -tnD +lFt ubI iCR mho @@ -103205,31 +103217,31 @@ nzu bMB clw cNW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk wYI jgu wYI -gXW +jnk wYI jgu wYI -gXW +jnk wYI jgu wYI -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -103376,14 +103388,14 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk uXB eKT eKT @@ -103399,14 +103411,14 @@ eKT sdJ xjW dzn -qGu +gjk sdJ rmV xze cZI lWq hto -veG +mTM uEc cZI bnW @@ -103429,8 +103441,8 @@ lnF tKu kMq bEC -lpa -kKS +hFn +kMd iqv jJE bEs @@ -103440,7 +103452,7 @@ hsh tfw bbg vhT -jOW +eBV fXx bMu xPi @@ -103452,7 +103464,7 @@ bTl bTl bTl mtK -nNO +opr cOe gdK cbv @@ -103463,30 +103475,30 @@ mtK mtK mtK cnj -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk wYI jgu wYI -gXW +jnk wYI jgu wYI -gXW +jnk wYI jgu wYI -gXW -gXW -uJR -uJR -uJR -gXW -gXW +jnk +jnk +dUi +dUi +dUi +jnk +jnk gQb gQb gQb @@ -103634,13 +103646,13 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk uXB eKT eKT @@ -103663,14 +103675,14 @@ xze dnZ qoF qJR -veG +mTM geG pHX lvE qJj gtk wwQ -pVM +oVF pVM pVM pVM @@ -103686,18 +103698,18 @@ nSf xaY eGI bEC -sTH -kKS +jKu +kMd gVZ -poa +nBq bEs -gVB +cjK ibF iYY gNX nqP gNX -xyS +gHC ejA bMu xPi @@ -103723,27 +103735,27 @@ cnj cnj cnj cwi -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk jgu -gXW -gXW -gXW +jnk +jnk +jnk jgu -gXW -gXW -gXW +jnk +jnk +jnk jgu -gXW -gXW -gXW -gXW -gXW -uJR -gXW -gXW +jnk +jnk +jnk +jnk +jnk +dUi +jnk +jnk gQb gQb gQb @@ -103892,12 +103904,12 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk uXB eKT eKT @@ -103920,7 +103932,7 @@ xze cZI lWq hto -veG +mTM uEc cZI fwM @@ -103997,10 +104009,10 @@ cwi jgu jgu rhU -gXW -uJR -gXW -gXW +jnk +dUi +jnk +jnk gQb gQb gQb @@ -104149,13 +104161,13 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk eKT eKT eKT @@ -104177,7 +104189,7 @@ xze cZI fwM hto -veG +mTM uEc dXd fwM @@ -104237,27 +104249,27 @@ cnj cnj cnj dKt -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk jgu -gXW -gXW -gXW +jnk +jnk +jnk jgu -gXW -gXW -gXW +jnk +jnk +jnk jgu -gXW -gXW -gXW -gXW -gXW -uJR -gXW -gXW +jnk +jnk +jnk +jnk +jnk +dUi +jnk +jnk gQb gQb gQb @@ -104407,13 +104419,13 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk eKT eKT eKT @@ -104422,7 +104434,7 @@ eKT eKT eKT eKT -gXW +jnk cwi sef fAL @@ -104463,7 +104475,7 @@ rhJ hqQ gAG sYH -nXU +uNd nXU hub cOe @@ -104491,30 +104503,30 @@ cjD cjD cjD cnj -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk wYI jgu wYI -gXW +jnk wYI jgu wYI -gXW +jnk wYI jgu wYI -gXW -gXW -uJR -uJR -uJR -gXW -gXW +jnk +jnk +dUi +dUi +dUi +jnk +jnk gQb gQb gQb @@ -104666,20 +104678,20 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk cwi sef unl @@ -104714,7 +104726,7 @@ oSD knQ aMI sYH -elq +abJ ocU iaj jiY @@ -104743,35 +104755,35 @@ cNW mKO xvV cNW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk wYI jgu wYI -gXW +jnk wYI jgu wYI -gXW +jnk wYI jgu wYI -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -104926,17 +104938,17 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk src src -gXW +jnk cwi sef sef @@ -105000,35 +105012,35 @@ cfv cBL xpA cNW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk wYI jgu wYI -gXW +jnk wYI jgu wYI -gXW +jnk wYI jgu wYI -gXW -uJR -gXW -gXW -gXW -gXW -gXW +jnk +dUi +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -105183,17 +105195,17 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk cwi cwi cwi @@ -105229,7 +105241,7 @@ wAz eRG wAz wAz -xBV +rXL cMf lLs qSA @@ -105239,17 +105251,17 @@ bNC cOe pYw cNW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk cNW nmw cOe cae cOe -cNC +aiR cOe cOe xlv @@ -105257,35 +105269,35 @@ cNW cOe chH cNW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk wYI jgu wYI -gXW +jnk wYI jgu wYI -gXW +jnk wYI jgu wYI -gXW -uJR -gXW -gXW -gXW -gXW -gXW +jnk +dUi +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -105440,43 +105452,43 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk src -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk bnK vQk bnK vQk bnK -gXW -gXW -gXW +jnk +jnk +jnk bnK vQk bnK vQk bnK -gXW -gXW +jnk +jnk src -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk src src -gXW +jnk wAz dXU tKG @@ -105486,7 +105498,7 @@ tKG mhg cqQ wAz -hIN +hgK atS gpI klw @@ -105496,11 +105508,11 @@ rly tCt bPP cNW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk cNW cNW cOT @@ -105514,35 +105526,35 @@ cNW cNW cNW cNW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -oQF -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +cul +jnk wYI jgu wYI -gXW +jnk wYI jgu wYI -gXW +jnk wYI jgu wYI -gXW -uJR -gXW -gXW -gXW -gXW -gXW +jnk +dUi +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -105697,43 +105709,43 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk src -gXW +jnk bnK aKV bnK lTB bnK -gXW -gXW -gXW +jnk +jnk +jnk bnK aKV bnK lTB bnK -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk src -gXW +jnk src src -gXW -gXW +jnk +jnk kfb qfh rHa @@ -105743,7 +105755,7 @@ rHa rHa fIh wAz -vmL +wrl cUD oCz klw @@ -105753,53 +105765,53 @@ odq cdV eJm cNW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk cNW ceU cNW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -uJR -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -oQF -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +dUi +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +cul +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -105955,41 +105967,41 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk bnK vQk bnK vQk bnK -gXW -gXW -gXW +jnk +jnk +jnk bnK vQk bnK vQk bnK -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk src kfb gQX @@ -106010,53 +106022,53 @@ cOT cOT cOT cNW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk cNW owf cNW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -uJR -uJR -uJR -uJR -uJR -uJR -uJR -uJR -uJR -uJR -uJR -uJR -uJR -uJR -uJR -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +dUi +dUi +dUi +dUi +dUi +dUi +dUi +dUi +dUi +dUi +dUi +dUi +dUi +dUi +dUi +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -106213,41 +106225,41 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk bnK xbo gjH xfn bnK -gXW -gXW -gXW +jnk +jnk +jnk bnK xfn gjH pVH bnK -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk wAz wAz wAz @@ -106257,63 +106269,63 @@ cIL wAz wAz wAz -gXW -gXW -gXW +jnk +jnk +jnk dKt cwi dKt -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk dKt cwi cwi -gXW -gXW -gXW -gXW -gXW -gXW -gXW -ixv -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -ixv -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +eGm +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +eGm +jnk +jnk gQb gQb gQb @@ -106471,106 +106483,106 @@ gQb gQb gQb gQb -gXW -myh -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +rdV +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk cwi cwi cwi etZ cwi -gXW -gXW -gXW +jnk +jnk +jnk cwi cwi cwi cwi cwi -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -myh -gXW -gXW -ado -oRI -sLC -sLC -sLC -oRI -iwJ -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -ixv -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +rdV +jnk +jnk +qQx +cRQ +wxb +wxb +wxb +cRQ +tKa +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +eGm +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -106728,106 +106740,106 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -jJu -oRI -oRI -oRI -oRI -oRI -jqE -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +czB +cRQ +cRQ +cRQ +cRQ +cRQ +elx +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -106985,106 +106997,106 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -107242,55 +107254,55 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -107308,7 +107320,7 @@ gQb gQb gQb gQb -gXW +jnk gQb gQb gQb @@ -107499,55 +107511,55 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -ixv -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +eGm +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -107565,7 +107577,7 @@ gQb gQb gQb gQb -gXW +jnk gQb gQb gQb @@ -107756,55 +107768,55 @@ gQb gQb gQb gQb -gXW -myh -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -myh -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +rdV +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +rdV +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -108013,55 +108025,55 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -108270,55 +108282,55 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -108527,55 +108539,55 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -108784,55 +108796,55 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -109041,55 +109053,55 @@ gQb gQb gQb gQb -gXW -myh -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -myh -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +rdV +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +rdV +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -109298,55 +109310,55 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -109555,55 +109567,55 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -109812,55 +109824,55 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -110069,55 +110081,55 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -110326,55 +110338,55 @@ gQb gQb gQb gQb -gXW -myh -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -myh -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +rdV +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +rdV +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -110583,55 +110595,55 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -110840,55 +110852,55 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -111097,55 +111109,55 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -111354,55 +111366,55 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -111611,56 +111623,56 @@ gQb gQb gQb gQb -gXW -myh -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -myh -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -myh -gXW -myh -gXW +jnk +rdV +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +rdV +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +rdV +jnk +rdV +jnk gQb gQb gQb @@ -111868,57 +111880,57 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk bgx boq bgx -gXW -gXW +jnk +jnk gQb gQb gQb @@ -112125,58 +112137,58 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk bIX bgx bsF bgx bIX -gXW -gXW +jnk +jnk gQb gQb gQb @@ -112382,50 +112394,50 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk bgx bgx bjJ @@ -112433,8 +112445,8 @@ boq btN bgx bgx -gXW -gXW +jnk +jnk gQb gQb gQb @@ -112639,49 +112651,49 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb gQb gQb -gXW -gXW +jnk +jnk bGe bGe bhc @@ -112691,7 +112703,7 @@ blQ bum bGe bGe -gXW +jnk gQb gQb gQb @@ -112895,50 +112907,50 @@ gQb gQb gQb gQb -gXW -gXW -myh -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -myh -gXW -gXW +jnk +jnk +rdV +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +rdV +jnk +jnk gQb gQb gQb gQb gQb gQb -gXW -gXW +jnk +jnk bgx bHw bhj @@ -112948,9 +112960,9 @@ blQ bun bOJ bgx -gXW -gXW -gXW +jnk +jnk +jnk gQb gQb gQb @@ -113151,43 +113163,43 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -113195,7 +113207,7 @@ gQb gQb gQb gQb -gXW +jnk bGe bGe bjI @@ -113205,7 +113217,7 @@ blQ buq bGe bGe -gXW +jnk gQb gQb gQb @@ -113409,8 +113421,8 @@ gQb gQb gQb gQb -gXW -gXW +jnk +jnk gQb gQb gQb @@ -113442,8 +113454,8 @@ gQb gQb gQb gQb -gXW -gXW +jnk +jnk gQb gQb gQb @@ -113452,8 +113464,8 @@ gQb gQb gQb gQb -gXW -gXW +jnk +jnk bgx bgx bne @@ -113461,8 +113473,8 @@ bLr btY bgx bgx -gXW -gXW +jnk +jnk gQb gQb gQb @@ -113666,7 +113678,7 @@ gQb gQb gQb gQb -gXW +jnk gQb gQb gQb @@ -113710,15 +113722,15 @@ gQb gQb gQb gQb -gXW -gXW +jnk +jnk bIX bgx bLq bgx bIX -gXW -gXW +jnk +jnk gQb gQb gQb @@ -113968,13 +113980,13 @@ gQb gQb gQb gQb -gXW -gXW +jnk +jnk bgx bGe bgx -gXW -gXW +jnk +jnk gQb gQb gQb @@ -114226,11 +114238,11 @@ gQb gQb gQb gQb -gXW -gXW -gXW -gXW -gXW +jnk +jnk +jnk +jnk +jnk gQb gQb gQb @@ -114484,9 +114496,9 @@ gQb gQb gQb gQb -gXW -gXW -gXW +jnk +jnk +jnk gQb gQb gQb @@ -114742,7 +114754,7 @@ gQb gQb gQb gQb -gXW +jnk gQb gQb gQb @@ -114999,7 +115011,7 @@ gQb gQb gQb gQb -gXW +jnk gQb gQb gQb diff --git a/_maps/map_files/KiloStation/KiloStation.dmm b/_maps/map_files/KiloStation/KiloStation.dmm index f2402985141..df8c0362e71 100644 --- a/_maps/map_files/KiloStation/KiloStation.dmm +++ b/_maps/map_files/KiloStation/KiloStation.dmm @@ -21,6 +21,10 @@ "aaf" = ( /turf/closed/wall/r_wall, /area/security/brig) +"aag" = ( +/obj/machinery/air_sensor/air_tank, +/turf/open/floor/engine/air, +/area/engineering/atmos) "aaj" = ( /turf/closed/wall, /area/security/brig) @@ -210,6 +214,11 @@ "aaY" = ( /turf/closed/wall, /area/security/detectives_office) +"aba" = ( +/obj/structure/transit_tube/diagonal/crossing/topleft, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) "abc" = ( /obj/effect/turf_decal/tile/red{ dir = 4 @@ -495,6 +504,11 @@ /obj/structure/lattice, /turf/open/space/basic, /area/space/nearstation) +"acn" = ( +/obj/structure/transit_tube/diagonal/topleft, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) "acr" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -1052,6 +1066,22 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/iron, /area/security/brig) +"afu" = ( +/obj/structure/transit_tube/station/reverse{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/transit_tube_pod{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/hallway/primary/central/fore) "afv" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -1091,6 +1121,17 @@ /obj/structure/sign/warning/securearea, /turf/closed/wall, /area/maintenance/port/lesser) +"afA" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "afE" = ( /obj/effect/turf_decal/tile/red{ dir = 4 @@ -1541,6 +1582,12 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/science/xenobiology) +"ahv" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/service/chapel/dock) "ahD" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 @@ -2000,6 +2047,20 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/maintenance/port/fore) +"ajJ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "ajL" = ( /obj/machinery/door/poddoor/preopen{ id = "Biohazard"; @@ -2136,6 +2197,12 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark, /area/ai_monitored/security/armory) +"akF" = ( +/obj/machinery/light/directional{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/service/chapel/dock) "akI" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -2191,17 +2258,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"akV" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark/corner, -/area/hallway/primary/central/fore) "akW" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -2825,6 +2881,24 @@ /obj/item/camera, /turf/open/floor/wood, /area/maintenance/starboard/fore) +"anW" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/hallway/primary/fore) "anX" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -3111,6 +3185,17 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, /turf/open/floor/engine, /area/science/xenobiology) +"apT" = ( +/obj/effect/turf_decal/siding/thinplating/dark, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/obj/structure/window/spawner, +/obj/structure/window/spawner/north, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/lavendergrass, +/turf/open/floor/grass, +/area/service/chapel/dock) "apU" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/bot, @@ -3525,13 +3610,6 @@ }, /turf/open/floor/plating, /area/maintenance/port/greater) -"asi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/grimy, -/area/hallway/primary/fore) "ask" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -3698,6 +3776,14 @@ }, /turf/open/floor/iron/dark, /area/security/courtroom) +"asX" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/carpet/royalblue, +/area/service/chapel/office) "asZ" = ( /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/ai) @@ -4196,14 +4282,12 @@ }, /turf/open/space/basic, /area/space) -"avj" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/door/airlock/public/glass{ - name = "Chapel Hallway" - }, -/turf/open/floor/iron/dark, -/area/hallway/primary/fore) +"avh" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/bottle/holywater, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/grimy, +/area/service/chapel/office) "avk" = ( /obj/machinery/recharge_station, /obj/effect/turf_decal/bot, @@ -4224,6 +4308,12 @@ /obj/structure/closet/emcloset, /turf/open/floor/plating, /area/maintenance/starboard/fore) +"avn" = ( +/obj/structure/cable, +/obj/machinery/power/smes, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/smooth_large, +/area/maintenance/department/chapel/monastery) "avp" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/delivery, @@ -4243,6 +4333,9 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/security/courtroom) +"avv" = ( +/turf/closed/wall, +/area/hallway/primary/central/fore) "avy" = ( /obj/structure/table/wood, /obj/item/clipboard, @@ -4463,6 +4556,19 @@ /obj/structure/cable, /turf/open/floor/iron, /area/hallway/primary/port) +"axo" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "axu" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/stripes/corner{ @@ -4482,6 +4588,12 @@ /obj/structure/cable, /turf/open/floor/engine/telecomms, /area/tcommsat/server) +"axz" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "axC" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment, @@ -4491,6 +4603,25 @@ "axF" = ( /turf/closed/wall, /area/hallway/primary/aft) +"axG" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/sign/departments/science{ + pixel_x = 32; + pixel_y = 32 + }, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "axH" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -5300,13 +5431,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/showroomfloor, /area/medical/exam_room) -"aCI" = ( -/obj/structure/table/reinforced/plastitaniumglass, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell, -/turf/open/floor/iron/dark, -/area/service/chapel/storage) "aCM" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/sign/warning/electricshock{ @@ -5354,6 +5478,10 @@ }, /turf/open/floor/iron/showroomfloor, /area/science/research) +"aDf" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall, +/area/hallway/primary/central/fore) "aDj" = ( /turf/closed/wall, /area/security/checkpoint/engineering) @@ -5623,6 +5751,10 @@ }, /turf/open/floor/iron/showroomfloor, /area/science/mixing) +"aEB" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/hallway/primary/central/fore) "aEL" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" @@ -5722,22 +5854,32 @@ /obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, /turf/closed/wall, /area/medical/exam_room) -"aFp" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/bot, +"aFq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/portable_atmospherics/canister/anesthetic_mix, -/turf/open/floor/iron/dark, -/area/medical/medbay/central) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/caution, +/obj/structure/cable, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "aFr" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 }, /turf/open/floor/iron/showroomfloor, /area/medical/exam_room) +"aFs" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/monitored/air_output{ + dir = 4 + }, +/turf/open/floor/engine/air, +/area/engineering/atmos) "aFv" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ @@ -5845,6 +5987,15 @@ /obj/machinery/door/poddoor/incinerator_atmos_main, /turf/open/floor/engine/vacuum, /area/maintenance/disposal/incinerator) +"aGj" = ( +/obj/machinery/door/morgue{ + name = "Mass Driver"; + req_access_txt = "22" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/service/chapel/funeral) "aGm" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -5857,16 +6008,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/medical/storage) -"aGx" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Chapel Hallway" - }, -/turf/open/floor/iron/dark, -/area/hallway/primary/fore) "aHe" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -5972,6 +6113,12 @@ }, /turf/open/floor/iron/showroomfloor, /area/medical/medbay/central) +"aIc" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "aIf" = ( /obj/structure/window/reinforced{ dir = 8 @@ -5984,6 +6131,30 @@ }, /turf/open/floor/grass, /area/science/genetics) +"aIk" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) +"aIm" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) +"aIp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/fore) "aIr" = ( /obj/machinery/portable_atmospherics/canister/nitrogen, /obj/effect/turf_decal/delivery, @@ -6038,6 +6209,13 @@ }, /turf/open/floor/plating, /area/engineering/lobby) +"aIQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Medbay" + }, +/turf/open/floor/iron/dark, +/area/hallway/primary/central/fore) "aIR" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -6053,6 +6231,28 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/primary/aft) +"aIX" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/hallway/primary/central/fore) +"aJb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "aJd" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -6061,6 +6261,22 @@ icon_state = "platingdmg3" }, /area/maintenance/fore) +"aJB" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/sign/departments/science{ + name = "ROBOTICS"; + pixel_y = 32 + }, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "aJE" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -6076,6 +6292,18 @@ /obj/machinery/duct, /turf/open/floor/iron/showroomfloor, /area/service/bar/atrium) +"aJK" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "aJU" = ( /turf/closed/wall, /area/medical/paramedic) @@ -6095,6 +6323,20 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/showroomfloor, /area/medical/exam_room) +"aKb" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "aKf" = ( /obj/effect/turf_decal/tile/purple, /obj/effect/turf_decal/tile/purple{ @@ -6198,6 +6440,56 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/engine, /area/ai_monitored/turret_protected/aisat_interior) +"aKJ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) +"aKK" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) +"aKN" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "aKV" = ( /obj/structure/flora/junglebush/c, /turf/open/floor/grass, @@ -6222,6 +6514,46 @@ }, /turf/open/floor/iron/dark, /area/security/brig) +"aLb" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) +"aLc" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "aLh" = ( /obj/effect/turf_decal/tile/green{ dir = 8 @@ -6238,6 +6570,26 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron/showroomfloor, /area/medical/virology) +"aLn" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "aLp" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ @@ -6252,6 +6604,25 @@ }, /turf/open/floor/iron/dark, /area/security/checkpoint/science/research) +"aLr" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "aLu" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -6263,6 +6634,44 @@ icon_state = "platingdmg1" }, /area/maintenance/port/aft) +"aLy" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) +"aLz" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "aLB" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/engineering{ @@ -6315,12 +6724,118 @@ /obj/effect/turf_decal/tile/purple, /turf/open/floor/iron/showroomfloor, /area/science/genetics) +"aLV" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) +"aLZ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) +"aMc" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "aMd" = ( /obj/effect/landmark/event_spawn, /obj/machinery/holopad, /obj/effect/turf_decal/bot, /turf/open/floor/iron/showroomfloor, /area/medical/psychology) +"aMf" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) +"aMh" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) +"aMl" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/cable, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "aMy" = ( /obj/effect/turf_decal/tile/purple, /obj/effect/turf_decal/tile/purple{ @@ -6372,15 +6887,12 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/iron/dark, /area/medical/medbay/lobby) -"aMU" = ( -/obj/structure/table/wood/fancy/blue, -/obj/effect/turf_decal/siding/wood{ - dir = 8 +"aMT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 }, -/obj/item/reagent_containers/food/drinks/trophy/bronze_cup, -/obj/machinery/camera/autoname/directional/west, -/turf/open/floor/carpet/royalblue, -/area/service/chapel/office) +/turf/open/floor/iron/dark, +/area/service/chapel/dock) "aNk" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating{ @@ -6421,6 +6933,25 @@ /obj/structure/curtain, /turf/open/floor/iron/dark, /area/medical/exam_room) +"aNU" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Upload"; + location = "Science"; + name = "science navigation beacon" + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "aNW" = ( /obj/machinery/rnd/production/protolathe/department/engineering, /obj/effect/turf_decal/delivery, @@ -6679,6 +7210,22 @@ }, /turf/open/floor/iron/showroomfloor, /area/medical/exam_room) +"aPv" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "aPx" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -6910,6 +7457,67 @@ /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/port/fore) +"aRj" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) +"aRk" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) +"aRl" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L1" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/sign/directions/security{ + dir = 8; + pixel_y = 32 + }, +/obj/structure/sign/directions/medical{ + dir = 8; + pixel_y = 40 + }, +/obj/structure/sign/directions/command{ + dir = 8; + pixel_y = 24 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "aRn" = ( /obj/machinery/smartfridge/chemistry/preloaded, /turf/closed/wall, @@ -6930,12 +7538,74 @@ /obj/item/bedsheet/medical, /turf/open/floor/iron/dark, /area/medical/medbay/central) +"aRv" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L13" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_y = 24 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) +"aRw" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/sign/directions/science{ + dir = 4; + pixel_y = 40 + }, +/obj/structure/sign/directions/supply{ + dir = 4; + pixel_y = 32 + }, +/obj/structure/sign/directions/engineering{ + dir = 4; + pixel_y = 24 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "aRx" = ( /obj/machinery/rnd/production/techfab/department/medical, /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/stripes/box, /turf/open/floor/iron/dark, /area/medical/storage) +"aRy" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "aRz" = ( /obj/effect/decal/cleanable/oil, /obj/effect/turf_decal/siding/purple{ @@ -7160,16 +7830,6 @@ icon_state = "platingdmg1" }, /area/maintenance/port/fore) -"aSa" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/anesthetic_mix, -/turf/open/floor/iron/dark, -/area/medical/medbay/central) "aSe" = ( /obj/structure/sign/departments/medbay/alt{ pixel_x = -32 @@ -7374,6 +8034,11 @@ /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, /area/maintenance/port/greater) +"aTo" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/service/chapel/dock) "aTp" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment, @@ -7390,18 +8055,25 @@ /obj/machinery/dna_scannernew, /turf/open/floor/iron/dark, /area/science/genetics) -"aTv" = ( +"aTs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ - dir = 4 + dir = 8 }, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/dark/corner{ +/obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/area/hallway/primary/fore) +/obj/effect/turf_decal/plaque{ + icon_state = "L2" + }, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "aTw" = ( /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/yellow{ @@ -7540,6 +8212,14 @@ /obj/effect/landmark/start/scientist, /turf/open/floor/iron/showroomfloor, /area/science/mixing) +"aUc" = ( +/obj/machinery/atmospherics/components/binary/valve, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) "aUi" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, @@ -7558,20 +8238,6 @@ }, /turf/open/floor/iron/dark, /area/security/courtroom) -"aUl" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/iron/stairs/left{ - dir = 1 - }, -/area/service/chapel/dock) "aUp" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral{ @@ -7634,28 +8300,6 @@ /obj/structure/sign/warning/biohazard, /turf/closed/wall/r_wall/rust, /area/medical/virology) -"aUQ" = ( -/obj/structure/chair/sofa/bench/left{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/obj/machinery/status_display/ai/directional/west, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/hallway/primary/central/fore) "aUR" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -8304,6 +8948,19 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/science/lab) +"aYk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "Satellite Access"; + req_one_access_txt = "32;19" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/hallway/primary/central/fore) "aYn" = ( /obj/effect/turf_decal/tile/purple{ dir = 4 @@ -8349,14 +9006,6 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/hallway/primary/port) -"aYz" = ( -/obj/machinery/atmospherics/components/tank/air, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) "aYB" = ( /obj/machinery/door/poddoor/shutters/preopen{ id = "emmd"; @@ -8556,6 +9205,23 @@ "aZr" = ( /turf/closed/wall/r_wall, /area/science/research) +"aZs" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/sign/nanotrasen{ + pixel_y = 32 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/hallway/primary/central/fore) "aZv" = ( /turf/closed/wall, /area/science/genetics) @@ -8575,6 +9241,16 @@ }, /turf/open/floor/plating, /area/science/robotics/lab) +"aZA" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/chapel/dock) "aZB" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -8747,17 +9423,6 @@ /obj/effect/decal/cleanable/blood/old, /turf/open/floor/engine/vacuum, /area/science/mixing/chamber) -"bar" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "bav" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command/glass{ @@ -8925,14 +9590,6 @@ /obj/effect/turf_decal/caution/stand_clear, /turf/open/floor/iron/dark, /area/science/robotics/mechbay) -"baX" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/ordnance_mixing_input, -/obj/machinery/sparker/ordmix{ - name = "chamber igniter"; - pixel_x = -16 - }, -/turf/open/floor/engine/vacuum, -/area/science/mixing/chamber) "baY" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -9024,11 +9681,6 @@ }, /turf/open/floor/iron/dark, /area/science/mixing) -"bbt" = ( -/obj/machinery/air_sensor/atmos/ordnance_mixing_tank, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/engine/vacuum, -/area/science/mixing/chamber) "bbu" = ( /turf/closed/wall/r_wall/rust, /area/science/mixing/chamber) @@ -9307,6 +9959,9 @@ /obj/machinery/atmospherics/components/unary/portables_connector/visible, /turf/open/floor/iron/dark, /area/science/mixing) +"bcK" = ( +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "bcL" = ( /obj/structure/table/reinforced, /obj/item/wrench, @@ -9393,6 +10048,11 @@ }, /turf/open/floor/grass, /area/science/genetics) +"bdf" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/iron/dark, +/area/hallway/primary/central/fore) "bdh" = ( /obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, /turf/closed/wall/r_wall, @@ -9507,14 +10167,6 @@ }, /turf/open/floor/iron/dark, /area/science/genetics) -"bdS" = ( -/obj/machinery/atmospherics/components/binary/valve, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) "bdT" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -9795,6 +10447,11 @@ /obj/item/storage/toolbox/mechanical, /turf/open/floor/iron/dark, /area/science/xenobiology) +"bfk" = ( +/obj/machinery/airalarm/directional/south, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron/dark, +/area/service/chapel/funeral) "bfo" = ( /obj/machinery/light/floor, /obj/effect/turf_decal/box, @@ -9873,6 +10530,10 @@ }, /turf/open/floor/iron/dark, /area/science/xenobiology) +"bfM" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/service/chapel/dock) "bfN" = ( /obj/structure/table/reinforced, /obj/machinery/button/door{ @@ -10115,18 +10776,6 @@ }, /turf/open/floor/iron, /area/security/checkpoint/customs) -"bhM" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/corner, -/area/hallway/primary/central/fore) "bhN" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/cardboard, @@ -10372,6 +11021,15 @@ }, /turf/open/floor/iron, /area/service/hydroponics) +"bkz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/hallway/primary/fore) "bkD" = ( /obj/machinery/holopad, /obj/effect/turf_decal/bot, @@ -10398,6 +11056,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/security/checkpoint/supply) +"ble" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/iron/dark/corner, +/area/hallway/primary/fore) "blf" = ( /turf/closed/wall, /area/security/checkpoint/supply) @@ -10468,6 +11136,10 @@ /obj/item/radio/intercom/directional/south, /turf/open/floor/iron/dark, /area/cargo/miningoffice) +"blz" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/smooth_large, +/area/maintenance/department/chapel/monastery) "blJ" = ( /obj/effect/spawner/random/vending/snackvend, /obj/effect/turf_decal/tile/neutral{ @@ -10707,6 +11379,11 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/service/hydroponics) +"boa" = ( +/obj/effect/decal/remains/robot, +/obj/effect/decal/cleanable/oil/streak, +/turf/open/floor/iron/dark, +/area/service/chapel/storage) "bok" = ( /obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, @@ -10973,18 +11650,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/port/lesser) -"bpV" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "bpX" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -11052,15 +11717,37 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/command/heads_quarters/hos) -"brg" = ( +"brq" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 +/obj/machinery/camera/directional/west{ + c_tag = "Satellite Transit Access"; + name = "satellite camera"; + network = list("minisat") }, -/turf/open/floor/iron/dark/corner{ - dir = 8 +/obj/machinery/button/door/directional/west{ + id = "transittube_ai"; + name = "Transit Tube Lockdown Toggle"; + req_access_txt = "19" }, +/turf/open/floor/iron, /area/hallway/primary/central/fore) "brr" = ( /obj/structure/sign/departments/xenobio, @@ -11132,20 +11819,6 @@ /obj/structure/sign/departments/custodian, /turf/closed/wall, /area/maintenance/fore) -"bsq" = ( -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/meter/atmos/layer4{ - name = "gas flow meter" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/lesser) "bsw" = ( /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/yellow, @@ -11209,18 +11882,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/showroomfloor, /area/medical/medbay/central) -"bsS" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/hallway/primary/fore) "bsV" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -11262,6 +11923,17 @@ icon_state = "panelscorched" }, /area/maintenance/starboard) +"bus" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/radio/intercom/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/hallway/primary/fore) "buv" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/neutral{ @@ -11528,6 +12200,17 @@ icon_state = "platingdmg3" }, /area/maintenance/port/lesser) +"byC" = ( +/obj/machinery/door/poddoor/preopen{ + id = "transittube_ai"; + name = "Transit Tube Blast Door" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/hallway/primary/central/fore) "byD" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -11548,15 +12231,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/maintenance/port/greater) -"byW" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/hallway/primary/central/fore) "bzl" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/mining/glass{ @@ -11800,18 +12474,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/hallway/primary/starboard) -"bBd" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/service/chapel/dock) "bBj" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/caution/stand_clear, @@ -11967,6 +12629,9 @@ /obj/structure/cable, /turf/open/floor/iron, /area/security/brig) +"bCl" = ( +/turf/closed/wall/rust, +/area/service/chapel/storage) "bCu" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/blood/old, @@ -12131,6 +12796,15 @@ /obj/machinery/firealarm/directional/north, /turf/open/floor/iron/dark, /area/service/chapel/monastery) +"bDN" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external/glass{ + name = "Monastery External Airlock" + }, +/turf/open/floor/plating, +/area/service/chapel/dock) "bDO" = ( /obj/machinery/computer/cargo{ dir = 8 @@ -12351,31 +13025,6 @@ "bET" = ( /turf/closed/wall/rust, /area/maintenance/aft) -"bEW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L8" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Medical"; - location = "Upload"; - name = "Upload navigation beacon" - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "bEZ" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -12564,6 +13213,12 @@ dir = 8 }, /area/hallway/primary/port) +"bGh" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/plasma_input{ + dir = 1 + }, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) "bGl" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ @@ -12638,15 +13293,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/security/processing) -"bGQ" = ( -/obj/machinery/door/morgue{ - name = "Mass Driver"; - req_access_txt = "22" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/service/chapel/funeral) "bGS" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -12784,11 +13430,6 @@ dir = 8 }, /area/hallway/primary/port) -"bHJ" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/iron/dark, -/area/service/chapel/storage) "bHO" = ( /obj/structure/table, /obj/item/storage/toolbox/emergency, @@ -13053,9 +13694,6 @@ }, /turf/open/floor/iron/dark, /area/maintenance/fore) -"bLi" = ( -/turf/closed/wall/rust, -/area/service/chapel/funeral) "bLq" = ( /obj/machinery/door/airlock/maintenance{ id_tag = "bankvault"; @@ -13124,12 +13762,6 @@ icon_state = "panelscorched" }, /area/maintenance/central) -"bMx" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/service/chapel/funeral) "bMy" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -13337,25 +13969,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/hallway/secondary/exit/departure_lounge) -"bPg" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "bPj" = ( /obj/machinery/door/airlock/engineering{ name = "Emergency Storage" @@ -13439,12 +14052,6 @@ /obj/effect/turf_decal/stripes/line, /turf/open/misc/asteroid/airless, /area/space/nearstation) -"bPY" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/engine/hull/reinforced, -/area/space/nearstation) "bPZ" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/decal/cleanable/dirt, @@ -13570,6 +14177,10 @@ }, /turf/open/floor/iron/dark/corner, /area/hallway/primary/central) +"bRh" = ( +/obj/structure/transit_tube/diagonal/topleft, +/turf/open/space/basic, +/area/space/nearstation) "bRp" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -13855,18 +14466,6 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) -"bTw" = ( -/obj/structure/window/reinforced/spawner{ - dir = 4 - }, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/window/reinforced/spawner{ - dir = 1 - }, -/obj/structure/flora/ausbushes/ywflowers, -/turf/open/floor/grass, -/area/hallway/primary/fore) "bTx" = ( /obj/structure/sign/departments/security, /turf/closed/wall, @@ -14202,6 +14801,12 @@ }, /turf/open/space, /area/space) +"bVa" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/smooth_large, +/area/maintenance/department/chapel/monastery) "bVb" = ( /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) @@ -15235,6 +15840,14 @@ /obj/effect/turf_decal/caution/stand_clear, /turf/open/floor/iron/dark, /area/hallway/primary/aft) +"caE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "caJ" = ( /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/grassybush, @@ -15962,6 +16575,13 @@ /obj/structure/cable, /turf/open/floor/circuit/green/telecomms/mainframe, /area/tcommsat/server) +"cdO" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/hallway/primary/central/fore) "cdU" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" @@ -16178,10 +16798,6 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) -"cfm" = ( -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating, -/area/service/chapel/dock) "cfn" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -16367,6 +16983,18 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/tcommsat/computer) +"cgw" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/bot, +/obj/machinery/vending/cigarette, +/turf/open/floor/iron/dark, +/area/hallway/primary/central/fore) "cgF" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -16446,6 +17074,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/maintenance/port/fore) +"cgX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "cgZ" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -16558,6 +17192,15 @@ /obj/structure/cable, /turf/open/floor/iron, /area/hallway/primary/aft) +"chr" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "chz" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -16606,6 +17249,27 @@ "chR" = ( /turf/open/floor/plating, /area/security/prison) +"chU" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "chV" = ( /turf/closed/wall/rust, /area/ai_monitored/turret_protected/aisat_interior) @@ -16827,6 +17491,19 @@ /obj/item/tank/internals/oxygen, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat/atmos) +"cjh" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "cji" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -16837,6 +17514,16 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/iron, /area/hallway/secondary/entry) +"cjj" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "cjD" = ( /obj/structure/chair{ dir = 4 @@ -16980,6 +17667,10 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/maintenance/solars/starboard/aft) +"ckC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark, +/area/service/chapel/dock) "ckI" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -17419,15 +18110,6 @@ /obj/structure/lattice, /turf/open/space/basic, /area/space) -"cmK" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/service/chapel/dock) "cmM" = ( /obj/effect/turf_decal/bot, /obj/structure/rack, @@ -17483,17 +18165,6 @@ "cnd" = ( /turf/closed/wall/rust, /area/maintenance/disposal) -"cne" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/meter/atmos/layer4{ - name = "gas flow meter" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) "cnf" = ( /obj/structure/grille, /turf/open/misc/asteroid/airless, @@ -18398,6 +19069,12 @@ /obj/structure/flora/ausbushes/fernybush, /turf/open/misc/asteroid, /area/maintenance/port/lesser) +"csW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/mix_output{ + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) "csX" = ( /obj/effect/turf_decal/delivery, /obj/machinery/door/airlock/security{ @@ -18458,20 +19135,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/port/aft) -"cts" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/hallway/primary/central/fore) "ctt" = ( /obj/effect/turf_decal/tile/red{ dir = 4 @@ -18911,9 +19574,6 @@ icon_state = "panelscorched" }, /area/maintenance/port/fore) -"cwT" = ( -/turf/closed/wall/rust, -/area/service/chapel/storage) "cwZ" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -18962,14 +19622,26 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/maintenance/port/fore) -"cxg" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 +"cxm" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/candle_box, +/obj/item/storage/fancy/candle_box, +/obj/item/storage/fancy/candle_box{ + pixel_x = 6; + pixel_y = 5 }, -/turf/open/floor/iron/dark/corner{ - dir = 8 +/obj/item/storage/fancy/candle_box{ + pixel_x = -5; + pixel_y = 5 }, -/area/hallway/primary/central/fore) +/obj/machinery/airalarm/directional/north, +/obj/machinery/light/directional/north, +/obj/item/storage/box/matches{ + pixel_x = -3; + pixel_y = 2 + }, +/turf/open/floor/iron/grimy, +/area/service/chapel/office) "cxn" = ( /obj/effect/decal/cleanable/blood/gibs/old, /obj/effect/decal/cleanable/blood/old, @@ -19071,6 +19743,12 @@ }, /turf/open/floor/iron/dark, /area/security/processing) +"cxB" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/oxygen_input{ + dir = 4 + }, +/turf/open/floor/engine/o2, +/area/engineering/atmos) "cxC" = ( /obj/structure/girder, /obj/effect/decal/cleanable/dirt, @@ -19135,15 +19813,6 @@ /obj/structure/cable, /turf/open/floor/iron/showroomfloor, /area/ai_monitored/security/armory) -"cxQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/plaque{ - icon_state = "L7" - }, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "cxS" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/old, @@ -19245,6 +19914,20 @@ icon_state = "platingdmg1" }, /area/maintenance/port/fore) +"cyn" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron, +/area/hallway/primary/fore) "cyq" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/firecloset, @@ -19451,28 +20134,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/maintenance/port/fore) -"czd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L4" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "czh" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -19734,6 +20395,14 @@ /obj/structure/sign/departments/security, /turf/closed/wall, /area/maintenance/fore) +"cAM" = ( +/obj/structure/table/bronze, +/obj/item/clothing/suit/bronze, +/obj/item/clothing/shoes/bronze{ + pixel_x = -12 + }, +/turf/open/floor/bronze, +/area/maintenance/department/chapel) "cAY" = ( /obj/docking_port/stationary{ dheight = 1; @@ -19874,6 +20543,10 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/iron/dark, /area/hallway/secondary/entry) +"cCl" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark, +/area/service/chapel/dock) "cCr" = ( /obj/effect/decal/cleanable/cobweb, /obj/effect/decal/cleanable/dirt, @@ -20029,6 +20702,11 @@ icon_state = "panelscorched" }, /area/maintenance/fore) +"cDP" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/iron/dark, +/area/service/chapel/storage) "cDR" = ( /obj/structure/bookcase/random/reference, /obj/effect/decal/cleanable/cobweb/cobweb2, @@ -20043,6 +20721,20 @@ /obj/machinery/light/small/directional/west, /turf/open/floor/engine, /area/science/xenobiology) +"cDV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/hallway/primary/central/fore) "cDW" = ( /obj/structure/chair/sofa/right{ color = "#c45c57" @@ -20348,18 +21040,6 @@ }, /turf/open/floor/plating, /area/hallway/secondary/exit/departure_lounge) -"cFF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/hallway/primary/central/fore) "cFK" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -20430,6 +21110,20 @@ /obj/structure/sign/warning/fire, /turf/closed/wall/r_wall, /area/maintenance/disposal/incinerator) +"cGa" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/kirbyplants{ + icon_state = "applebush" + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/hallway/primary/central/fore) "cGb" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -20449,6 +21143,29 @@ icon_state = "wood-broken3" }, /area/maintenance/starboard/fore) +"cGs" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/hallway/primary/central/fore) +"cGx" = ( +/obj/structure/transit_tube/curved/flipped, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/primary/central/fore) "cGy" = ( /obj/item/target/clown, /obj/structure/window/reinforced{ @@ -20827,14 +21544,6 @@ }, /turf/open/floor/iron/dark, /area/construction/mining/aux_base) -"cJm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/iron/dark, -/area/hallway/primary/central/fore) "cJo" = ( /obj/docking_port/stationary{ area_type = /area/construction/mining/aux_base; @@ -20896,6 +21605,26 @@ }, /turf/open/floor/iron/white, /area/security/prison) +"cJH" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "cJI" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -21643,6 +22372,15 @@ /obj/structure/sign/poster/official/fruit_bowl, /turf/closed/wall/r_wall, /area/security/prison/safe) +"cRa" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/service/chapel/dock) "cRb" = ( /obj/structure/sign/warning/docking, /turf/closed/wall, @@ -21658,12 +22396,6 @@ /obj/effect/turf_decal/stripes/box, /turf/open/floor/iron/dark, /area/security/office) -"cSv" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/bottle/holywater, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/grimy, -/area/service/chapel/office) "cSy" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -21672,6 +22404,23 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/showroomfloor, /area/medical/medbay/central) +"cSB" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "cSJ" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -21771,6 +22520,10 @@ }, /turf/open/floor/iron, /area/hallway/primary/starboard) +"cUc" = ( +/obj/structure/transit_tube, +/turf/open/space/basic, +/area/space/nearstation) "cUt" = ( /obj/structure/plasticflaps, /obj/machinery/conveyor{ @@ -21825,25 +22578,27 @@ /obj/item/analyzer, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"cVo" = ( -/obj/effect/turf_decal/tile/neutral, +"cVp" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/service/chapel/funeral) +"cVv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, /obj/effect/turf_decal/tile/neutral{ dir = 8 }, +/obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, /obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Lockers"; - location = "Medical"; - name = "medical navigation beacon" - }, -/obj/structure/cable, /turf/open/floor/iron, /area/hallway/primary/central/fore) "cVx" = ( @@ -21895,6 +22650,10 @@ }, /turf/open/floor/iron, /area/engineering/atmos/pumproom) +"cVV" = ( +/obj/effect/decal/cleanable/robot_debris, +/turf/closed/wall/r_wall/rust, +/area/service/chapel/dock) "cVW" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -22118,6 +22877,15 @@ /obj/effect/spawner/random/medical/memeorgans, /turf/open/floor/plating, /area/maintenance/port/lesser) +"dap" = ( +/obj/structure/table/wood/fancy/blue, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/item/reagent_containers/food/drinks/trophy/bronze_cup, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/carpet/royalblue, +/area/service/chapel/office) "daF" = ( /obj/effect/turf_decal/bot, /obj/structure/reagent_dispensers/watertank, @@ -22178,6 +22946,18 @@ "dbG" = ( /turf/closed/wall, /area/command/bridge) +"dbN" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/hallway/primary/fore) "dcf" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -22245,6 +23025,18 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/security/prison) +"ddw" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/bluespace_vendor/directional/north, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/hallway/primary/fore) "ddA" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/tile/blue{ @@ -22304,6 +23096,14 @@ }, /turf/open/floor/iron, /area/engineering/lobby) +"ddR" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/airlock/public/glass{ + name = "Chapel Hallway" + }, +/turf/open/floor/iron/dark, +/area/hallway/primary/fore) "ddY" = ( /obj/structure/table/wood, /obj/item/storage/fancy/donut_box, @@ -22312,23 +23112,6 @@ "deb" = ( /turf/closed/wall/r_wall, /area/engineering/gravity_generator) -"den" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "deq" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -22387,6 +23170,10 @@ /obj/effect/turf_decal/tile/purple, /turf/open/floor/iron/showroomfloor, /area/science/storage) +"dfo" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/service/chapel/dock) "dfq" = ( /obj/effect/turf_decal/bot, /obj/structure/rack, @@ -22611,15 +23398,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/security/prison/safe) -"djP" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron/showroomfloor, -/area/science/xenobiology) -"djW" = ( +"djO" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -22630,11 +23409,21 @@ /obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, /turf/open/floor/iron, /area/hallway/primary/fore) +"djP" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/showroomfloor, +/area/science/xenobiology) "dkb" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -22673,20 +23462,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/command/heads_quarters/hos) -"dkV" = ( -/obj/structure/table/wood/fancy/black, -/obj/item/food/grown/poppy/geranium{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/food/grown/poppy/geranium{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/food/grown/poppy/geranium, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/dark, -/area/service/chapel/dock) "dlt" = ( /obj/machinery/computer/secure_data{ dir = 4 @@ -22779,20 +23554,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/grass, /area/service/hydroponics/garden) -"dmU" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/iron/stairs/medium{ - dir = 4 - }, -/area/service/chapel/dock) "dmX" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -22818,15 +23579,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/maintenance/port/fore) -"dnA" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"dnv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/plaque{ + icon_state = "L7" }, /turf/open/floor/iron, /area/hallway/primary/central/fore) @@ -22880,6 +23638,16 @@ }, /turf/open/floor/iron, /area/engineering/hallway) +"doB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/airlock/public/glass{ + name = "Chapel Hallway" + }, +/turf/open/floor/iron/dark, +/area/hallway/primary/fore) "doG" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -22920,15 +23688,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/medical/virology) -"dpE" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/hallway/primary/central/fore) "dpL" = ( /obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ dir = 4 @@ -23066,6 +23825,20 @@ "dtq" = ( /turf/closed/wall/rust, /area/engineering/gravity_generator) +"dtr" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/hallway/primary/fore) "dtA" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -23093,17 +23866,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/hallway/secondary/exit/departure_lounge) -"duC" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/iron/stairs/left{ - dir = 1 - }, -/area/service/chapel/dock) "duH" = ( /turf/closed/wall/rust, /area/cargo/warehouse) @@ -23133,10 +23895,6 @@ icon_state = "platingdmg1" }, /area/maintenance/starboard/fore) -"dvj" = ( -/obj/structure/railing/corner, -/turf/open/floor/iron/dark, -/area/service/chapel/dock) "dvn" = ( /obj/structure/table, /obj/effect/turf_decal/tile/blue, @@ -23211,17 +23969,6 @@ "dws" = ( /turf/open/floor/carpet/royalblue, /area/command/heads_quarters/captain) -"dww" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/obj/item/radio/intercom/directional/north, -/obj/structure/sign/departments/medbay/alt{ - pixel_x = -32 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark, -/area/hallway/primary/fore) "dwO" = ( /obj/effect/turf_decal/tile/yellow{ dir = 1 @@ -23237,25 +23984,6 @@ }, /turf/open/floor/iron, /area/engineering/storage_shared) -"dwP" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "dwU" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -23266,10 +23994,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/security/interrogation) -"dxn" = ( -/obj/machinery/air_sensor/atmos/nitrous_tank, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) "dxD" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -23466,6 +24190,14 @@ }, /turf/open/floor/wood, /area/service/lawoffice) +"dBK" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/light/directional/north, +/turf/open/floor/carpet/royalblue, +/area/service/chapel/office) "dBP" = ( /obj/effect/turf_decal/tile/yellow{ dir = 1 @@ -23483,10 +24215,6 @@ /obj/machinery/atmospherics/components/trinary/mixer/airmix, /turf/open/floor/iron, /area/engineering/atmos) -"dBR" = ( -/obj/machinery/light/directional/east, -/turf/open/floor/iron/dark, -/area/service/chapel/monastery) "dBT" = ( /obj/machinery/rnd/production/circuit_imprinter/department/science, /obj/effect/turf_decal/bot, @@ -23513,6 +24241,13 @@ /obj/structure/window/reinforced, /turf/open/floor/plating, /area/maintenance/disposal/incinerator) +"dCL" = ( +/obj/structure/frame/computer, +/obj/effect/turf_decal/siding/thinplating/dark, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron, +/area/service/chapel/storage) "dDq" = ( /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/yellow{ @@ -23536,14 +24271,6 @@ icon_state = "platingdmg1" }, /area/maintenance/starboard/fore) -"dEd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "dEq" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -23558,14 +24285,6 @@ /obj/item/wrench, /turf/open/floor/iron, /area/engineering/atmos) -"dEx" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/hallway/primary/central/fore) "dEA" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -23611,6 +24330,25 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark, /area/hallway/primary/starboard) +"dEZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L14" + }, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "dFl" = ( /turf/closed/wall/r_wall, /area/service/chapel/monastery) @@ -23817,6 +24555,12 @@ }, /turf/open/floor/glass/reinforced, /area/service/chapel/monastery) +"dJm" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrogen_output{ + dir = 4 + }, +/turf/open/floor/engine/n2, +/area/engineering/atmos) "dJB" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -23855,6 +24599,19 @@ /obj/machinery/navbeacon/wayfinding, /turf/open/floor/iron/dark, /area/commons/locker) +"dJZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/line, +/obj/structure/sign/poster/random{ + pixel_x = 32 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/hallway/primary/fore) "dKg" = ( /obj/structure/flora/grass/jungle, /obj/structure/flora/ausbushes/lavendergrass, @@ -23946,6 +24703,14 @@ /obj/item/pen, /turf/open/floor/iron/dark, /area/medical/virology) +"dKZ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating/airless, +/area/space/nearstation) "dLd" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -23986,6 +24751,15 @@ }, /turf/open/floor/engine/vacuum, /area/maintenance/disposal/incinerator) +"dLD" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/corner, +/area/hallway/primary/central/fore) "dLG" = ( /obj/structure/rack, /obj/item/clothing/gloves/color/black, @@ -24085,6 +24859,20 @@ /obj/item/taperecorder, /turf/open/floor/iron/dark, /area/maintenance/port/greater) +"dNi" = ( +/obj/structure/table/wood/fancy, +/obj/effect/turf_decal/siding/wideplating/dark/corner, +/obj/item/food/grown/poppy{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/food/grown/poppy{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/food/grown/poppy, +/turf/open/floor/iron/dark, +/area/service/chapel/dock) "dNs" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, /obj/effect/decal/cleanable/dirt, @@ -24149,11 +24937,6 @@ }, /turf/open/floor/iron, /area/engineering/storage_shared) -"dOl" = ( -/obj/effect/turf_decal/siding/wood, -/obj/machinery/camera/autoname/directional/south, -/turf/open/floor/carpet/red, -/area/service/chapel/monastery) "dOn" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -24216,6 +24999,15 @@ dir = 1 }, /area/hallway/primary/starboard) +"dQl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/service/chapel/dock) "dQq" = ( /obj/structure/bookcase/random/adult, /obj/effect/turf_decal/tile/neutral, @@ -24284,6 +25076,22 @@ /obj/machinery/status_display/evac/directional/south, /turf/open/floor/iron/dark, /area/engineering/atmos) +"dRy" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/meter/monitored/waste_loop, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/iron/dark, +/area/engineering/atmos/pumproom) "dRQ" = ( /obj/structure/rack, /obj/item/stack/medical/gauze, @@ -24292,20 +25100,31 @@ /obj/machinery/light/small/directional/north, /turf/open/floor/plating, /area/maintenance/port/greater) -"dSm" = ( -/obj/effect/turf_decal/siding/thinplating/dark/end{ +"dSa" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/chair/wood{ dir = 8 }, -/obj/structure/window/spawner, -/obj/structure/window/spawner/west, -/obj/structure/window/spawner/north, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/brflowers, -/turf/open/floor/grass, -/area/service/chapel/dock) -"dSz" = ( -/turf/open/floor/bronze, -/area/maintenance/department/chapel) +/obj/item/radio/intercom/chapel/directional/north, +/turf/open/floor/wood/parquet, +/area/service/chapel/monastery) +"dSK" = ( +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark, +/area/service/chapel/monastery) +"dSV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "dTp" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -24323,14 +25142,6 @@ /obj/machinery/light/directional/south, /turf/open/floor/engine, /area/engineering/supermatter/room) -"dTv" = ( -/obj/structure/window/reinforced/spawner{ - dir = 1 - }, -/obj/structure/flora/ausbushes/leafybush, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/grass, -/area/hallway/primary/fore) "dTy" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -24355,11 +25166,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/maintenance/aft) -"dTE" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) "dTF" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -24393,6 +25199,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/cargo/storage) +"dTU" = ( +/obj/structure/closet/crate/coffin, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/service/chapel/funeral) "dTV" = ( /obj/structure/chair/pew/left{ dir = 8 @@ -24402,12 +25213,6 @@ }, /turf/open/floor/iron/chapel, /area/service/chapel/monastery) -"dTX" = ( -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/components/tank/air, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) "dUd" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/yellow, @@ -24523,12 +25328,6 @@ }, /turf/open/floor/iron/white, /area/security/prison) -"dVa" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/dark, -/area/service/chapel/storage) "dVd" = ( /obj/machinery/camera/directional/west{ c_tag = "Satellite External Starboard"; @@ -24547,6 +25346,20 @@ /obj/effect/turf_decal/siding/wood/corner, /turf/open/floor/iron/grimy, /area/service/chapel/office) +"dVA" = ( +/obj/structure/chair/sofa/bench{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/hallway/primary/central/fore) "dVC" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/engine, @@ -24610,10 +25423,17 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"dWO" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/service/chapel/dock) +"dXg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/corner, +/area/hallway/primary/fore) "dXw" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, @@ -24696,48 +25516,10 @@ /obj/item/kirbyplants/random, /turf/open/floor/iron, /area/hallway/primary/starboard) -"dZo" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) -"dZr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/meter/atmos/layer4{ - name = "gas flow meter" - }, -/turf/open/floor/plating, -/area/maintenance/port/greater) "dZP" = ( /obj/structure/sign/warning/securearea, /turf/closed/wall/rust, /area/engineering/gravity_generator) -"dZT" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/machinery/newscaster/directional/west, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark, -/area/service/chapel/dock) "dZU" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ @@ -24763,6 +25545,11 @@ }, /turf/open/floor/iron, /area/security/checkpoint/customs) +"eai" = ( +/obj/machinery/camera/autoname/directional/west, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark, +/area/service/chapel/funeral) "eam" = ( /obj/machinery/light/directional/south, /obj/machinery/status_display/ai/directional/south, @@ -25000,19 +25787,6 @@ }, /turf/open/floor/iron, /area/security/office) -"eeV" = ( -/mob/living/simple_animal/bot/cleanbot/medbay{ - maints_access_required = list(22); - name = "Deacon Scrubsy" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/turf/open/floor/iron/smooth_large, -/area/maintenance/department/chapel/monastery) "eff" = ( /obj/effect/turf_decal/bot, /obj/structure/rack, @@ -25057,6 +25831,23 @@ /obj/effect/turf_decal/trimline/green/filled/line, /turf/open/floor/iron/dark, /area/service/hydroponics) +"efq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "efC" = ( /turf/closed/wall/r_wall, /area/maintenance/starboard/aft) @@ -25112,6 +25903,26 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/engineering/atmos) +"ehq" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "ehz" = ( /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/tile/neutral{ @@ -25149,23 +25960,6 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron/dark, /area/maintenance/port/aft) -"eig" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) -"eiy" = ( -/obj/machinery/light/directional{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/service/chapel/dock) "eiK" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -25307,6 +26101,11 @@ }, /turf/open/floor/iron/showroomfloor, /area/service/bar/atrium) +"elP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/service/chapel/dock) "elR" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/tile/neutral, @@ -25359,6 +26158,14 @@ }, /turf/open/misc/asteroid, /area/space/nearstation) +"emi" = ( +/obj/effect/turf_decal/siding/thinplating/light/corner{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark, +/area/service/chapel/dock) "emk" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -25401,16 +26208,6 @@ }, /turf/open/floor/iron/dark, /area/security/office) -"emE" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/hallway/primary/fore) "enb" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/neutral{ @@ -25421,23 +26218,17 @@ }, /turf/open/floor/iron, /area/security/office) -"end" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ +"eng" = ( +/obj/machinery/light/directional/north, +/obj/structure/chair/sofa/bench/left{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/siding/wood{ dir = 4 }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) +/turf/open/floor/wood, +/area/service/chapel/dock) "enl" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -25577,6 +26368,12 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/security/brig) +"eoz" = ( +/obj/structure/chair/comfy/black, +/obj/effect/landmark/start/chaplain, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/grimy, +/area/service/chapel/office) "eoB" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -25600,6 +26397,15 @@ /obj/machinery/status_display/evac/directional/north, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) +"epa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron/dark/corner, +/area/hallway/primary/central/fore) "epb" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -25715,12 +26521,6 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron/showroomfloor, /area/security/office) -"eqM" = ( -/obj/structure/sign/departments/mait{ - pixel_y = 32 - }, -/turf/open/misc/asteroid/airless, -/area/space/nearstation) "eqV" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -25945,15 +26745,6 @@ /obj/effect/turf_decal/box, /turf/open/floor/iron, /area/hallway/primary/port) -"eve" = ( -/obj/structure/cable, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/service/chapel/dock) "evh" = ( /obj/effect/turf_decal/bot, /obj/machinery/conveyor{ @@ -26004,18 +26795,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/solars/port/aft) -"evO" = ( -/obj/structure/table/bronze, -/obj/item/clothing/head/bronze{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/machinery/light/small/directional/east, -/obj/item/toy/clockwork_watch{ - pixel_x = -5 - }, -/turf/open/floor/bronze/filled, -/area/maintenance/department/chapel) "evP" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -26222,18 +27001,19 @@ /obj/structure/cable, /turf/open/floor/iron, /area/hallway/primary/aft) -"eAp" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ +"ezY" = ( +/obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/obj/effect/turf_decal/stripes/line{ +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark/corner{ dir = 4 }, -/turf/open/floor/iron/dark, -/area/service/chapel/dock) +/area/hallway/primary/fore) "eAv" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -26306,11 +27086,6 @@ /obj/effect/turf_decal/stripes/corner, /turf/open/floor/iron, /area/service/janitor) -"eBt" = ( -/obj/structure/flora/ausbushes/ppflowers, -/obj/machinery/light/directional/east, -/turf/open/floor/grass, -/area/service/chapel/monastery) "eBE" = ( /obj/structure/flora/ausbushes/brflowers, /obj/item/radio/intercom/directional/south, @@ -26346,6 +27121,12 @@ /obj/item/screwdriver/power, /turf/open/floor/iron/dark, /area/ai_monitored/command/nuke_storage) +"eCf" = ( +/obj/structure/table/wood/fancy, +/obj/item/storage/fancy/candle_box, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark, +/area/service/chapel/dock) "eCi" = ( /obj/machinery/door/poddoor{ id = "QMLoaddoor2"; @@ -26543,6 +27324,24 @@ /obj/structure/noticeboard/directional/north, /turf/open/floor/iron/dark, /area/science/robotics/lab) +"eFu" = ( +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/iron/dark/corner, +/area/hallway/primary/central/fore) +"eFy" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "eFD" = ( /obj/effect/turf_decal/bot, /obj/structure/table, @@ -26688,16 +27487,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/iron/dark, /area/cargo/sorting) -"eIg" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "eIm" = ( /obj/machinery/vending/hydronutrients, /obj/effect/turf_decal/delivery, @@ -26719,19 +27508,6 @@ }, /turf/open/floor/iron/dark, /area/command/bridge) -"eIo" = ( -/obj/structure/table/wood/fancy, -/obj/item/food/grown/poppy{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/food/grown/poppy{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/food/grown/poppy, -/turf/open/floor/iron/dark, -/area/service/chapel/dock) "eIs" = ( /obj/structure/table, /obj/machinery/light/directional/west, @@ -26772,28 +27548,6 @@ icon_state = "wood-broken5" }, /area/maintenance/port/fore) -"eJi" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/box, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "eJz" = ( /obj/machinery/computer/station_alert{ dir = 8 @@ -26879,6 +27633,19 @@ icon_state = "panelscorched" }, /area/maintenance/starboard) +"eKB" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/dark, +/area/service/chapel/funeral) "eLh" = ( /obj/machinery/firealarm/directional/west, /obj/structure/cable, @@ -27000,13 +27767,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/service/hydroponics/garden) -"eNv" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner, -/area/hallway/primary/central/fore) "eNx" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -27081,11 +27841,6 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/floor/iron/dark, /area/security/checkpoint/engineering) -"eOk" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/turf/open/misc/asteroid/airless, -/area/space/nearstation) "eOv" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral{ @@ -27176,6 +27931,30 @@ /obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible, /turf/open/space/basic, /area/space/nearstation) +"eQo" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/obj/machinery/computer/atmos_control/nitrogen_tank{ + dir = 4 + }, +/turf/open/floor/iron/showroomfloor, +/area/engineering/atmos) "eQt" = ( /obj/machinery/vending/assist, /obj/effect/turf_decal/delivery, @@ -27272,21 +28051,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, /turf/open/floor/plating, /area/cargo/warehouse) -"eRu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/newscaster/security_unit/directional/south, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/hallway/primary/central/fore) "eRN" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -27394,6 +28158,18 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron/dark, /area/command/heads_quarters/rd) +"eTk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/transit_tube/station/dispenser/reverse{ + dir = 1 + }, +/turf/open/floor/catwalk_floor/iron, +/area/service/chapel/dock) "eTB" = ( /obj/structure/cable, /obj/structure/table, @@ -27481,6 +28257,32 @@ icon_state = "platingdmg3" }, /area/maintenance/starboard/aft) +"eUf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/meter/layer2, +/turf/open/floor/plating, +/area/maintenance/port/greater) +"eUr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/iron/stairs/medium{ + dir = 4 + }, +/area/service/chapel/dock) "eUu" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -27674,12 +28476,6 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron/dark, /area/security/office) -"eXi" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/floor/engine/hull/reinforced, -/area/space/nearstation) "eXj" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -27733,12 +28529,6 @@ /obj/item/storage/box/lights/mixed, /turf/open/floor/iron/dark, /area/cargo/sorting) -"eXS" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/flora/grass/jungle, -/obj/effect/decal/cleanable/dirt, -/turf/open/misc/asteroid/airless, -/area/space/nearstation) "eYL" = ( /obj/effect/decal/cleanable/oil, /obj/effect/decal/cleanable/dirt, @@ -27791,6 +28581,27 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/cargo/storage) +"eZE" = ( +/obj/structure/table, +/obj/item/storage/box/bodybags{ + pixel_x = 6 + }, +/obj/item/storage/box/gloves{ + pixel_x = -5 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/dark, +/area/service/chapel/funeral) +"eZQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/iron/dark/corner, +/area/hallway/primary/central/fore) "eZR" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/loading_area, @@ -27830,17 +28641,6 @@ icon_state = "platingdmg1" }, /area/maintenance/port/greater) -"fat" = ( -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 1 - }, -/obj/structure/window/spawner, -/obj/structure/window/spawner/north, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/fullgrass, -/turf/open/floor/grass, -/area/service/chapel/dock) "faE" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -27925,17 +28725,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/hallway/primary/aft) -"fbI" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/iron/stairs/right{ - dir = 1 - }, -/area/service/chapel/dock) "fbO" = ( /obj/effect/turf_decal/siding/white{ dir = 1 @@ -27960,6 +28749,17 @@ }, /turf/open/floor/iron/dark, /area/service/bar/atrium) +"fbT" = ( +/obj/effect/turf_decal/siding/thinplating/dark, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/obj/structure/window/spawner, +/obj/structure/window/spawner/north, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/fullgrass, +/turf/open/floor/grass, +/area/service/chapel/dock) "fbZ" = ( /obj/structure/chair{ dir = 8 @@ -28113,19 +28913,6 @@ }, /turf/open/floor/iron/dark, /area/security/prison) -"feS" = ( -/obj/structure/transit_tube/diagonal/topleft, -/turf/open/space/basic, -/area/space/nearstation) -"ffe" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/hallway/primary/fore) "ffq" = ( /obj/structure/rack, /obj/effect/turf_decal/bot, @@ -28137,12 +28924,6 @@ }, /turf/open/floor/iron/dark, /area/hallway/primary/aft) -"ffw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "ffO" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 4; @@ -28159,6 +28940,14 @@ /obj/structure/cable, /turf/open/floor/engine, /area/engineering/supermatter/room) +"fga" = ( +/obj/structure/sign/departments/holy{ + pixel_y = 30 + }, +/turf/open/floor/iron/stairs/right{ + dir = 4 + }, +/area/hallway/primary/fore) "fgj" = ( /obj/effect/landmark/event_spawn, /obj/structure/cable, @@ -28191,6 +28980,10 @@ /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood, /area/cargo/qm) +"fgM" = ( +/obj/effect/turf_decal/siding/thinplating/dark/end, +/turf/open/floor/glass/reinforced, +/area/service/chapel/monastery) "fgN" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -28230,9 +29023,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/showroomfloor, /area/security/prison) -"fhH" = ( -/turf/closed/wall/r_wall/rust, -/area/service/chapel/funeral) "fhM" = ( /obj/structure/table/wood, /obj/structure/mirror/directional/west, @@ -28298,12 +29088,9 @@ /obj/machinery/duct, /turf/open/floor/plastic, /area/hallway/secondary/service) -"fkl" = ( -/obj/structure/railing{ - dir = 9 - }, -/turf/open/floor/engine/hull/reinforced, -/area/space/nearstation) +"fjR" = ( +/turf/closed/wall/r_wall/rust, +/area/service/chapel/office) "fkn" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -28347,19 +29134,18 @@ /obj/machinery/airalarm/directional/south, /turf/open/floor/iron/dark, /area/ai_monitored/command/storage/eva) -"fkS" = ( -/obj/structure/table/wood/fancy/black, -/obj/item/food/grown/poppy/geranium{ - pixel_x = -6; - pixel_y = 6 +"fkT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Medbay" }, -/obj/item/food/grown/poppy/geranium{ - pixel_x = 6; - pixel_y = 6 +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/food/grown/poppy/geranium, /turf/open/floor/iron/dark, -/area/service/chapel/dock) +/area/hallway/primary/central/fore) "flh" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -28384,15 +29170,6 @@ /obj/effect/landmark/start/geneticist, /turf/open/floor/iron/dark, /area/science/genetics) -"flE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner, -/area/hallway/primary/central/fore) "flI" = ( /obj/effect/turf_decal/tile/purple, /obj/effect/turf_decal/tile/blue, @@ -28414,16 +29191,6 @@ }, /turf/open/floor/iron/dark, /area/hallway/secondary/exit/departure_lounge) -"fmf" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/door/airlock/public/glass{ - name = "Chapel Hallway" - }, -/turf/open/floor/iron/dark, -/area/hallway/primary/fore) "fmg" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -28512,6 +29279,16 @@ }, /turf/open/floor/iron, /area/hallway/primary/starboard) +"fnz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Chapel Hallway" + }, +/turf/open/floor/iron/dark, +/area/hallway/primary/fore) "fnD" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -28528,16 +29305,6 @@ }, /turf/open/floor/plating, /area/maintenance/department/bridge) -"fnG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/iron/dark/corner, -/area/hallway/primary/central/fore) "fod" = ( /obj/effect/turf_decal/tile/purple{ dir = 8 @@ -28564,6 +29331,11 @@ /obj/structure/lattice/catwalk, /turf/open/space/basic, /area/solars/port/aft) +"fop" = ( +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/iron/dark, +/area/service/chapel/dock) "foE" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -28606,6 +29378,16 @@ }, /turf/open/floor/iron/dark, /area/security/checkpoint/science/research) +"foX" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/hallway/primary/fore) "fpc" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -28659,16 +29441,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/aft) -"fqb" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/machinery/door/morgue{ - name = "Coffin Storage"; - req_access_txt = "22" - }, -/turf/open/floor/iron/dark, -/area/service/chapel/funeral) "fqg" = ( /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/yellow{ @@ -28768,6 +29540,16 @@ }, /turf/open/floor/iron/dark, /area/maintenance/fore) +"fqT" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/hallway/primary/fore) "fqU" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -28798,17 +29580,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/command/bridge) -"frv" = ( -/obj/machinery/camera/autoname/directional/east, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 4 - }, -/turf/open/floor/iron/grimy, -/area/service/chapel/office) "frw" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -29218,18 +29989,6 @@ }, /turf/open/floor/plating, /area/maintenance/port/lesser) -"fzz" = ( -/obj/structure/bodycontainer/morgue{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/service/chapel/funeral) "fzA" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -29239,23 +29998,11 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark, /area/engineering/supermatter/room) -"fAi" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/iron/dark/corner, -/area/hallway/primary/central/fore) -"fAm" = ( -/turf/closed/wall/r_wall/rust, -/area/service/chapel/office) +"fAF" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/carpet/red, +/area/service/chapel/monastery) "fAV" = ( /obj/item/radio/intercom/directional/north, /obj/effect/turf_decal/stripes/line{ @@ -29450,14 +30197,6 @@ /obj/effect/decal/cleanable/dirt, /turf/closed/wall, /area/maintenance/fore) -"fDo" = ( -/obj/effect/turf_decal/siding/thinplating/light/corner{ - dir = 4 - }, -/obj/machinery/airalarm/directional/north, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark, -/area/service/chapel/dock) "fDp" = ( /obj/machinery/door/window/northright{ name = "Hydroponics Delivery Access"; @@ -29511,6 +30250,16 @@ }, /turf/open/floor/iron/dark, /area/hallway/secondary/entry) +"fEm" = ( +/obj/machinery/door/airlock/grunge{ + name = "Crematorium"; + req_access_txt = "22" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/service/chapel/funeral) "fEB" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -29586,22 +30335,6 @@ }, /turf/open/floor/iron, /area/command/bridge) -"fFe" = ( -/obj/effect/turf_decal/siding/wood/end{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/airlock/grunge{ - name = "Chapel Office"; - req_access_txt = "22" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet/royalblue, -/area/service/chapel/monastery) "fFl" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -29627,12 +30360,6 @@ /obj/machinery/firealarm/directional/south, /turf/open/floor/plating, /area/maintenance/disposal/incinerator) -"fGa" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/service/chapel/funeral) "fGe" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 4 @@ -29670,10 +30397,6 @@ /obj/machinery/light/directional/west, /turf/open/floor/circuit/green/telecomms/mainframe, /area/tcommsat/server) -"fGq" = ( -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron/dark, -/area/service/chapel/funeral) "fGU" = ( /obj/machinery/door/airlock/external{ name = "Departure Shuttle Airlock" @@ -29720,6 +30443,19 @@ /obj/machinery/light/small/directional/east, /turf/open/floor/iron, /area/hallway/secondary/entry) +"fHt" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/dark, +/area/hallway/primary/central/fore) "fHO" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -29736,20 +30472,6 @@ /obj/machinery/duct, /turf/open/floor/iron/showroomfloor, /area/service/bar/atrium) -"fHR" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "fHS" = ( /obj/structure/closet/radiation, /obj/effect/turf_decal/bot, @@ -29819,6 +30541,12 @@ }, /turf/open/floor/iron/dark, /area/engineering/atmos) +"fIn" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/flora/grass/jungle, +/obj/effect/decal/cleanable/dirt, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) "fIr" = ( /obj/machinery/light/directional/east, /obj/machinery/newscaster/directional/east, @@ -29874,9 +30602,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/commons/toilet/restrooms) -"fJq" = ( -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "fJz" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -29924,6 +30649,19 @@ }, /turf/open/floor/iron/dark, /area/engineering/atmos) +"fKp" = ( +/obj/item/clothing/suit/hooded/techpriest{ + pixel_y = 8 + }, +/obj/item/clothing/suit/hooded/techpriest{ + pixel_y = 6 + }, +/obj/item/clothing/suit/hooded/techpriest{ + pixel_y = 4 + }, +/obj/structure/rack, +/turf/open/floor/iron/dark, +/area/service/chapel/storage) "fKt" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, @@ -30132,11 +30870,6 @@ /obj/machinery/navbeacon/wayfinding/bridge, /turf/open/floor/iron/dark, /area/command/bridge) -"fPr" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark/corner, -/area/hallway/primary/central/fore) "fPs" = ( /obj/effect/turf_decal/tile/brown{ dir = 1 @@ -30176,14 +30909,18 @@ /obj/machinery/portable_atmospherics/canister/air, /turf/open/floor/engine/air, /area/engineering/atmos) -"fQr" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 +"fQx" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/iron/grimy, -/area/hallway/primary/fore) +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/corner, +/area/hallway/primary/central/fore) "fQX" = ( /obj/machinery/light/small/directional/south, /obj/effect/decal/cleanable/dirt, @@ -30282,6 +31019,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/grimy, /area/security/prison/safe) +"fSz" = ( +/obj/machinery/firealarm/directional/north, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/iron/stairs/right{ + dir = 4 + }, +/area/service/chapel/dock) "fSQ" = ( /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/yellow, @@ -30303,28 +31049,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/medical/virology) -"fSY" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Morgue Entrance"; - name = "medical camera"; - network = list("ss13","medical") - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/firealarm/directional/north, -/obj/machinery/light/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/hallway/primary/fore) "fSZ" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -30348,26 +31072,6 @@ }, /turf/open/floor/iron, /area/service/hydroponics) -"fUa" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "fUt" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -30495,6 +31199,19 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating/airless, /area/space/nearstation) +"fYn" = ( +/mob/living/simple_animal/bot/cleanbot/medbay{ + maints_access_required = list(22); + name = "Deacon Scrubsy" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/smooth_large, +/area/maintenance/department/chapel/monastery) "fYy" = ( /obj/structure/disposalpipe/segment, /turf/closed/mineral/random/labormineral, @@ -30552,12 +31269,14 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/hallway/primary/port) -"fZF" = ( -/obj/structure/table/wood/fancy, -/obj/item/storage/fancy/candle_box, -/obj/machinery/light/directional/north, +"fZI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/status_display/evac/directional/south, /turf/open/floor/iron/dark, -/area/service/chapel/dock) +/area/hallway/primary/central/fore) "fZM" = ( /obj/machinery/vending/cigarette, /obj/effect/turf_decal/bot, @@ -30621,6 +31340,24 @@ icon_state = "panelscorched" }, /area/maintenance/port/fore) +"gaj" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L5" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "gaV" = ( /obj/machinery/exodrone_launcher, /obj/effect/turf_decal/trimline/yellow, @@ -30649,13 +31386,6 @@ /obj/machinery/light_switch/directional/south, /turf/open/floor/iron/dark, /area/command/gateway) -"gbh" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/wood, -/area/service/chapel/dock) "gci" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -30705,15 +31435,6 @@ icon_state = "platingdmg3" }, /area/engineering/storage/tcomms) -"gdB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "gdN" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/siding/wood{ @@ -30740,6 +31461,12 @@ }, /turf/open/floor/iron, /area/commons/storage/primary) +"ger" = ( +/obj/structure/table/bronze, +/obj/machinery/light/small/directional/west, +/obj/item/toy/plush/ratplush, +/turf/open/floor/bronze/filled, +/area/maintenance/department/chapel) "ges" = ( /obj/structure/reflector/box/anchored{ dir = 1 @@ -30812,6 +31539,30 @@ /obj/structure/sign/departments/evac, /turf/closed/wall, /area/security/checkpoint/customs) +"gfI" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/machinery/computer/atmos_control/plasma_tank{ + dir = 1 + }, +/turf/open/floor/iron/showroomfloor, +/area/engineering/atmos) "gfK" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -30831,23 +31582,6 @@ }, /turf/open/floor/iron, /area/engineering/atmos) -"gfR" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "ggd" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -31129,6 +31863,12 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, /area/security/courtroom) +"gkl" = ( +/obj/machinery/mecha_part_fabricator/maint{ + name = "forgotten exosuit fabricator" + }, +/turf/open/floor/iron/dark, +/area/service/chapel/storage) "gkx" = ( /obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, /obj/structure/lattice/catwalk, @@ -31148,20 +31888,6 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/floor/engine, /area/ai_monitored/turret_protected/ai) -"gkE" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/chair/sofa/bench/right, -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/hallway/primary/central/fore) "gkJ" = ( /obj/effect/turf_decal/tile/brown{ dir = 4 @@ -31252,22 +31978,14 @@ icon_state = "platingdmg1" }, /area/maintenance/starboard/aft) -"gnl" = ( -/turf/closed/wall/rust, -/area/service/chapel/monastery) -"gnm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ +"gne" = ( +/obj/structure/railing/corner{ dir = 8 }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/corner, -/area/hallway/primary/central/fore) +/obj/machinery/newscaster/directional/west, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/dark, +/area/service/chapel/dock) "gno" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -31290,6 +32008,24 @@ /obj/structure/sign/poster/official/wtf_is_co2, /turf/closed/wall, /area/engineering/atmos) +"gnJ" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/hallway/primary/fore) "gnY" = ( /obj/structure/railing{ dir = 8 @@ -31334,13 +32070,12 @@ /obj/machinery/airalarm/directional/north, /turf/open/floor/carpet/blue, /area/command/heads_quarters/hop) -"gok" = ( +"goy" = ( /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron/dark, -/area/service/chapel/dock) +/area/service/chapel/storage) "goO" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -31376,21 +32111,6 @@ "gpw" = ( /turf/closed/wall/rust, /area/maintenance/space_hut/plasmaman) -"gpx" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "gpA" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ @@ -31568,16 +32288,6 @@ }, /turf/open/floor/iron/dark, /area/service/hydroponics) -"gsf" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/service/chapel/funeral) "gsn" = ( /obj/machinery/mineral/stacking_machine{ input_dir = 2 @@ -31788,28 +32498,6 @@ icon_state = "panelscorched" }, /area/maintenance/starboard/fore) -"gwf" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L9" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Fore Hallway Centre"; - name = "fore camera" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "gwo" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -31912,9 +32600,6 @@ }, /turf/open/floor/circuit/telecomms, /area/science/xenobiology) -"gxe" = ( -/turf/open/floor/iron/dark, -/area/service/chapel/dock) "gxs" = ( /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/brown{ @@ -31946,6 +32631,15 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/service/hydroponics) +"gxH" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/service/chapel/funeral) "gxM" = ( /obj/machinery/oven, /obj/effect/turf_decal/tile/neutral{ @@ -32097,10 +32791,6 @@ /obj/machinery/newscaster/directional/north, /turf/open/floor/iron, /area/security/courtroom) -"gAM" = ( -/obj/machinery/air_sensor/atmos/air_tank, -/turf/open/floor/engine/air, -/area/engineering/atmos) "gAW" = ( /obj/machinery/door/poddoor/preopen{ id = "gravity"; @@ -32158,6 +32848,13 @@ }, /turf/open/floor/iron, /area/engineering/atmos) +"gBF" = ( +/obj/structure/transit_tube, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/iron/grimy, +/area/hallway/primary/fore) "gBG" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -32184,6 +32881,15 @@ icon_state = "panelscorched" }, /area/security/prison) +"gCd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/iron/dark/corner, +/area/hallway/primary/central/fore) "gCi" = ( /turf/open/floor/plating{ icon_state = "platingdmg2" @@ -32341,6 +33047,18 @@ /obj/structure/reagent_dispensers/servingdish, /turf/open/floor/iron/white, /area/security/prison) +"gEY" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/dark, +/area/service/chapel/storage) +"gFh" = ( +/obj/structure/bodycontainer/crematorium, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/iron/dark/textured_large, +/area/service/chapel/funeral) "gFo" = ( /obj/machinery/camera/directional/west{ c_tag = "Xenobiology Cell 5"; @@ -32369,19 +33087,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/bar) -"gGh" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "gGi" = ( /obj/effect/turf_decal/sand/plating, /obj/structure/grille/broken, @@ -32492,6 +33197,14 @@ /obj/structure/cable, /turf/open/floor/iron/showroomfloor, /area/command/heads_quarters/rd) +"gHF" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/grimy, +/area/hallway/primary/fore) "gHO" = ( /obj/item/storage/medkit/regular{ pixel_x = 3; @@ -32545,10 +33258,6 @@ }, /turf/open/floor/iron/dark, /area/science/storage) -"gIv" = ( -/obj/machinery/air_sensor/atmos/oxygen_tank, -/turf/open/floor/engine/o2, -/area/engineering/atmos) "gIy" = ( /obj/effect/turf_decal/box/corners{ dir = 8 @@ -32570,13 +33279,19 @@ /obj/machinery/light/small/directional/north, /turf/open/floor/wood/parquet, /area/command/heads_quarters/captain/private) -"gJK" = ( -/obj/effect/decal/cleanable/robot_debris/limb, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/oil/streak, -/obj/effect/decal/cleanable/robot_debris/old, +"gKl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, /turf/open/floor/iron/dark, -/area/service/chapel/storage) +/area/hallway/primary/central/fore) +"gKF" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/service/chapel/dock) "gKG" = ( /obj/structure/sign/departments/engineering{ pixel_x = 32; @@ -32653,6 +33368,19 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, /turf/closed/wall, /area/science/storage) +"gLp" = ( +/obj/structure/window/reinforced/spawner, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"gLs" = ( +/obj/machinery/airalarm/directional/north, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/iron/stairs/right{ + dir = 4 + }, +/area/service/chapel/dock) "gLE" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 1 @@ -32720,6 +33448,18 @@ /obj/structure/cable, /turf/open/floor/engine, /area/engineering/supermatter/room) +"gNc" = ( +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/service/chapel/funeral) "gNj" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb/cobweb2, @@ -32742,6 +33482,11 @@ icon_state = "panelscorched" }, /area/maintenance/port/fore) +"gNI" = ( +/obj/structure/transit_tube, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) "gNL" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -32775,17 +33520,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/maintenance/port/lesser) -"gNT" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/hallway/primary/fore) "gOi" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -32872,6 +33606,16 @@ }, /turf/open/floor/iron, /area/hallway/primary/starboard) +"gPP" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/hallway/primary/central/fore) "gQG" = ( /obj/effect/turf_decal/delivery, /turf/open/floor/iron/freezer, @@ -32953,12 +33697,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/showroomfloor, /area/service/bar/atrium) -"gSf" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/plasma_input{ - dir = 1 - }, -/turf/open/floor/engine/plasma, -/area/engineering/atmos) "gSi" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, @@ -32981,12 +33719,6 @@ }, /turf/open/floor/circuit/green/telecomms/mainframe, /area/tcommsat/server) -"gSE" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/catwalk_floor/iron_smooth, -/area/maintenance/department/chapel/monastery) "gST" = ( /obj/structure/table, /obj/item/flashlight/lamp/green{ @@ -33144,6 +33876,18 @@ }, /turf/open/floor/iron/dark, /area/command/heads_quarters/cmo) +"gUq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/hallway/primary/central/fore) "gUz" = ( /obj/machinery/door/airlock/maintenance{ name = "Ordnance Lab Maintenance"; @@ -33157,20 +33901,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/maintenance/starboard) -"gUB" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/iron/stairs/right{ - dir = 4 - }, -/area/service/chapel/dock) "gUI" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, @@ -33210,6 +33940,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/maintenance/department/bridge) +"gVK" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/landmark/start/chaplain, +/turf/open/floor/iron/dark, +/area/service/chapel/dock) "gVT" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -33269,6 +34006,18 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark, /area/service/janitor) +"gWS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/hallway/primary/central/fore) "gWV" = ( /turf/open/floor/engine/vacuum, /area/maintenance/disposal/incinerator) @@ -33433,9 +34182,6 @@ /obj/machinery/holopad, /turf/open/floor/wood, /area/cargo/qm) -"gZI" = ( -/turf/closed/wall, -/area/service/chapel/storage) "gZR" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -33449,6 +34195,9 @@ }, /turf/open/floor/iron/dark, /area/engineering/atmos) +"har" = ( +/turf/closed/wall/r_wall/rust, +/area/service/chapel/monastery) "haD" = ( /obj/structure/grille/broken, /obj/effect/decal/cleanable/cobweb, @@ -33463,11 +34212,6 @@ icon_state = "platingdmg1" }, /area/maintenance/starboard/fore) -"haE" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/closet/emcloset/anchored, -/turf/open/floor/plating, -/area/service/chapel/dock) "haI" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -33484,10 +34228,6 @@ }, /turf/open/floor/iron, /area/commons/locker) -"haJ" = ( -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark, -/area/service/chapel/funeral) "haP" = ( /obj/machinery/power/smes, /obj/effect/turf_decal/bot, @@ -33897,12 +34637,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/medical/virology) -"hhs" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/open/floor/grass, -/area/hallway/primary/fore) "hht" = ( /obj/machinery/atmospherics/components/binary/pump{ name = "East Ports to Engine" @@ -33912,6 +34646,12 @@ }, /turf/open/floor/iron, /area/engineering/atmos) +"hhD" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/mix_input{ + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) "hhG" = ( /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/yellow{ @@ -33991,6 +34731,18 @@ }, /turf/open/floor/iron, /area/command/bridge) +"hiy" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/hallway/primary/fore) "hiz" = ( /obj/structure/sign/departments/custodian, /turf/closed/wall/rust, @@ -34026,16 +34778,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/security/brig) -"hjw" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/hallway/primary/fore) "hjD" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small/directional/west, @@ -34121,6 +34863,19 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/showroomfloor, /area/medical/storage) +"hkx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/corner, +/area/hallway/primary/central/fore) "hkM" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/cafeteria, @@ -34143,17 +34898,32 @@ /obj/machinery/light/small/directional/east, /turf/open/floor/iron/dark, /area/security/lockers) -"hlh" = ( +"hlD" = ( /obj/structure/cable, -/obj/machinery/air_sensor/atmos/incinerator_tank{ - pixel_x = 32; - pixel_y = -23 +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/service/chapel/funeral) +"hmj" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 }, -/obj/machinery/igniter{ - id = "Incinerator" +/obj/effect/turf_decal/tile/blue{ + dir = 8 }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/obj/machinery/computer/atmos_control/air_tank{ + dir = 4 + }, +/turf/open/floor/iron/showroomfloor, +/area/engineering/atmos) "hms" = ( /obj/structure/flora/rock, /turf/open/misc/asteroid/airless, @@ -34222,42 +34992,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/medical/medbay/central) -"hof" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) -"hou" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L12" - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "hoF" = ( /obj/effect/turf_decal/bot, /obj/machinery/power/emitter, @@ -34291,24 +35025,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plating, /area/maintenance/port/greater) -"hpb" = ( -/obj/structure/chair/sofa/bench/right{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/box/corners, -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron/dark, -/area/hallway/primary/fore) "hpd" = ( /obj/machinery/vending/medical, /obj/effect/turf_decal/delivery, @@ -34323,14 +35039,6 @@ }, /turf/open/floor/iron/dark, /area/medical/storage) -"hpi" = ( -/obj/machinery/light/small/directional/east, -/obj/structure/chair/wood{ - dir = 8 - }, -/obj/item/radio/intercom/chapel/directional/north, -/turf/open/floor/wood/parquet, -/area/service/chapel/monastery) "hpp" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -34525,6 +35233,9 @@ /obj/item/radio/intercom/directional/east, /turf/open/floor/iron/dark, /area/security/courtroom) +"hrW" = ( +/turf/closed/wall, +/area/service/chapel/storage) "hrX" = ( /obj/effect/turf_decal/tile/red/half/contrasted, /turf/open/floor/iron/showroomfloor, @@ -34576,6 +35287,15 @@ /obj/structure/noticeboard/directional/east, /turf/closed/mineral/random/labormineral, /area/space/nearstation) +"htu" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/meter/layer2, +/turf/open/floor/plating, +/area/maintenance/starboard) "htL" = ( /obj/structure/cable, /obj/effect/turf_decal/stripes/line{ @@ -34600,6 +35320,33 @@ /obj/structure/cable, /turf/open/floor/iron/showroomfloor, /area/commons/toilet/restrooms) +"huy" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/ordnance_mixing_input, +/obj/machinery/sparker/ordmix{ + name = "chamber igniter"; + pixel_x = -16 + }, +/turf/open/floor/engine/vacuum, +/area/science/mixing/chamber) +"huB" = ( +/obj/machinery/door/firedoor, +/obj/structure/sign/directions/medical{ + dir = 8; + pixel_x = 32; + pixel_y = 8 + }, +/obj/structure/sign/directions/security{ + pixel_x = 32 + }, +/obj/structure/sign/directions/command{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/hallway/primary/central/fore) "huC" = ( /obj/effect/turf_decal/siding/purple{ dir = 8 @@ -34613,22 +35360,6 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/iron/freezer, /area/service/kitchen/coldroom) -"huT" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/hallway/primary/fore) "hvw" = ( /obj/structure/chair/pew{ dir = 8 @@ -34639,33 +35370,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/chapel, /area/service/chapel/monastery) -"hvI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, +"hwh" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) -"hvJ" = ( -/obj/structure/window/reinforced/spawner{ - dir = 4 - }, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/leafybush, -/mob/living/simple_animal/butterfly, -/turf/open/floor/grass, -/area/hallway/primary/fore) +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/anesthetic_mix, +/turf/open/floor/iron/dark, +/area/medical/medbay/central) "hwr" = ( /obj/structure/table, /obj/machinery/cell_charger{ @@ -34794,6 +35508,20 @@ }, /turf/open/floor/iron/dark, /area/maintenance/port/greater) +"hyz" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/iron/stairs/right{ + dir = 1 + }, +/area/service/chapel/dock) "hyB" = ( /obj/structure/table, /obj/machinery/computer/security/telescreen/cmo{ @@ -34880,26 +35608,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/hallway/secondary/service) -"hAq" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "hAH" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -34912,14 +35620,6 @@ icon_state = "platingdmg1" }, /area/hallway/secondary/entry) -"hBg" = ( -/obj/machinery/light/directional/north, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/smooth_large, -/area/maintenance/department/chapel/monastery) "hBo" = ( /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/grassybush, @@ -34941,18 +35641,6 @@ "hBN" = ( /turf/closed/wall, /area/commons/fitness/recreation) -"hCx" = ( -/obj/machinery/mech_bay_recharge_port{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 6 - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/iron, -/area/service/chapel/storage) "hCz" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -34977,29 +35665,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/medical/medbay/central) -"hCD" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/service/chapel/dock) -"hCJ" = ( -/obj/machinery/door/firedoor, -/obj/structure/sign/directions/medical{ - dir = 8; - pixel_x = 32; - pixel_y = 8 - }, -/obj/structure/sign/directions/security{ - pixel_x = 32 - }, -/obj/structure/sign/directions/command{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/hallway/primary/central/fore) "hCQ" = ( /obj/machinery/computer/upload/borg{ dir = 1 @@ -35041,19 +35706,6 @@ /obj/structure/sign/warning/nosmoking, /turf/closed/wall, /area/engineering/atmos) -"hDq" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/middle{ - dir = 4 - }, -/obj/structure/transit_tube/horizontal, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/service/chapel/dock) "hDz" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -35275,19 +35927,6 @@ /obj/machinery/holopad/secure, /turf/open/floor/carpet/royalblue, /area/command/heads_quarters/captain) -"hGH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/meter/atmos/layer2{ - name = "gas flow meter" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/aft) "hGI" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 @@ -35384,6 +36023,23 @@ }, /turf/open/floor/iron/dark, /area/command/heads_quarters/rd) +"hHI" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "hHK" = ( /obj/structure/disposalpipe/segment{ dir = 9 @@ -35426,6 +36082,20 @@ icon_state = "platingdmg1" }, /area/maintenance/port/greater) +"hIG" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/iron/stairs/left{ + dir = 1 + }, +/area/service/chapel/dock) "hIH" = ( /obj/structure/sign/warning/securearea, /obj/item/multitool, @@ -35472,13 +36142,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/maintenance/starboard/aft) -"hJw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Medbay" - }, -/turf/open/floor/iron/dark, -/area/hallway/primary/central/fore) "hJF" = ( /obj/structure/closet/secure_closet/detective, /obj/structure/reagent_dispensers/wall/peppertank/directional/north, @@ -35576,6 +36239,18 @@ }, /turf/open/floor/iron, /area/engineering/atmos) +"hKk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner, +/area/hallway/primary/central/fore) "hKx" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -35658,6 +36333,12 @@ }, /turf/open/floor/plating, /area/engineering/atmos/storage/gas) +"hMF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrous_output{ + dir = 1 + }, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) "hMH" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -35722,6 +36403,19 @@ /obj/structure/sign/warning/vacuum, /turf/closed/wall/rust, /area/cargo/warehouse) +"hNt" = ( +/obj/structure/table/wood/fancy/black, +/obj/item/food/grown/poppy/lily{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/food/grown/poppy/lily{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/food/grown/poppy/lily, +/turf/open/floor/iron/dark, +/area/service/chapel/dock) "hNz" = ( /obj/structure/reagent_dispensers/watertank, /obj/effect/turf_decal/delivery, @@ -35756,6 +36450,20 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/central) +"hNY" = ( +/obj/structure/sign/departments/mait{ + pixel_y = 32 + }, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"hOq" = ( +/obj/machinery/atmospherics/components/tank/air, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) "hOv" = ( /obj/machinery/deepfryer, /obj/effect/turf_decal/tile/neutral{ @@ -35777,6 +36485,19 @@ /obj/effect/decal/cleanable/generic, /turf/open/floor/plating, /area/maintenance/department/bridge) +"hOU" = ( +/obj/structure/table/wood/fancy/black, +/obj/item/food/grown/poppy/geranium{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/food/grown/poppy/geranium{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/food/grown/poppy/geranium, +/turf/open/floor/iron/dark, +/area/service/chapel/dock) "hOZ" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt, @@ -35812,6 +36533,11 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat_interior) +"hPE" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/hallway/primary/central/fore) "hPF" = ( /obj/structure/bed/dogbed/runtime, /obj/effect/turf_decal/tile/neutral, @@ -35870,6 +36596,18 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron/dark, /area/command/bridge) +"hQE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/lapvend, +/turf/open/floor/iron/dark, +/area/hallway/primary/central/fore) "hQO" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -36015,6 +36753,14 @@ }, /turf/open/floor/iron/dark, /area/commons/locker) +"hUw" = ( +/obj/machinery/air_sensor/nitrogen_tank, +/turf/open/floor/engine/n2, +/area/engineering/atmos) +"hUG" = ( +/obj/structure/chair/bronze, +/turf/open/floor/bronze, +/area/maintenance/department/chapel) "hUJ" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral{ @@ -36076,6 +36822,17 @@ /obj/structure/sign/warning/fire, /turf/closed/wall, /area/maintenance/port/lesser) +"hVm" = ( +/obj/effect/turf_decal/siding/thinplating/dark/end{ + dir = 8 + }, +/obj/structure/window/spawner, +/obj/structure/window/spawner/west, +/obj/structure/window/spawner/north, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass, +/area/service/chapel/dock) "hVs" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -36134,10 +36891,6 @@ }, /turf/open/floor/plating, /area/cargo/warehouse) -"hWq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/dark, -/area/service/chapel/dock) "hWC" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/stripes/line{ @@ -36146,20 +36899,22 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/cargo/warehouse) +"hWH" = ( +/obj/effect/turf_decal/box/corners, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/computer/atmos_control/nocontrol/ordnancemix{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/science/mixing) "hWI" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron, /area/cargo/miningoffice) -"hWK" = ( -/obj/machinery/door/airlock/external/glass{ - name = "Monastery External Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plating, -/area/service/chapel/dock) "hWU" = ( /obj/machinery/computer/security{ dir = 4 @@ -36201,6 +36956,9 @@ }, /turf/open/floor/iron/dark, /area/commons/fitness/recreation) +"hXa" = ( +/turf/open/floor/bronze, +/area/maintenance/department/chapel) "hXg" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -36282,6 +37040,27 @@ /obj/machinery/newscaster/directional/south, /turf/open/floor/iron/dark, /area/security/checkpoint/science/research) +"hYC" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Lockers"; + location = "Medical"; + name = "medical navigation beacon" + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "hYD" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/old, @@ -36397,6 +37176,13 @@ }, /turf/open/floor/iron/dark, /area/service/bar/atrium) +"iaZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "iba" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -36424,11 +37210,6 @@ }, /turf/open/floor/iron, /area/maintenance/disposal/incinerator) -"ibH" = ( -/obj/structure/railing, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/iron/dark, -/area/service/chapel/dock) "ibJ" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -36441,14 +37222,6 @@ /obj/structure/cable, /turf/open/floor/iron/showroomfloor, /area/ai_monitored/security/armory) -"ibP" = ( -/obj/effect/turf_decal/siding/wood, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/carpet/royalblue, -/area/service/chapel/office) "ibQ" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/siding/blue{ @@ -36487,6 +37260,22 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/commons/fitness/recreation) +"icj" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron, +/area/hallway/primary/fore) "icn" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/vault{ @@ -36544,23 +37333,6 @@ /obj/machinery/light/directional/south, /turf/open/floor/iron/dark, /area/medical/medbay/lobby) -"icG" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "icK" = ( /obj/machinery/door/poddoor/shutters/preopen{ id = "emmd"; @@ -36590,6 +37362,19 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/engineering/atmos) +"icW" = ( +/obj/structure/table/wood/fancy, +/obj/item/food/grown/poppy{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/food/grown/poppy{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/food/grown/poppy, +/turf/open/floor/iron/dark, +/area/service/chapel/dock) "idm" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/effect/decal/cleanable/dirt, @@ -36666,6 +37451,20 @@ }, /turf/open/floor/iron/showroomfloor, /area/service/bar/atrium) +"iek" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/chair/sofa/bench/right, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/hallway/primary/central/fore) "ieq" = ( /obj/structure/closet/secure_closet/bar{ req_access_txt = "25" @@ -36704,10 +37503,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/security/courtroom) -"ieC" = ( -/obj/machinery/air_sensor/atmos/carbon_tank, -/turf/open/floor/engine/co2, -/area/engineering/atmos) "ieD" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/structure/table_or_rack, @@ -36745,6 +37540,23 @@ }, /turf/open/floor/iron, /area/hallway/primary/starboard) +"ieW" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "ifu" = ( /obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/cobweb, @@ -36824,11 +37636,6 @@ icon_state = "platingdmg1" }, /area/maintenance/fore) -"ifZ" = ( -/obj/structure/transit_tube, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) "igk" = ( /obj/structure/rack, /obj/effect/spawner/random/techstorage/rnd_secure_all, @@ -36890,31 +37697,6 @@ /obj/structure/cable, /turf/open/floor/plating/rust, /area/security/prison) -"ihz" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "plant-16" - }, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "ihG" = ( /turf/closed/wall/rust, /area/maintenance/department/crew_quarters/bar) @@ -37029,17 +37811,18 @@ }, /turf/open/floor/iron/dark, /area/command/bridge) -"ikC" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/newscaster/directional/south, -/obj/machinery/camera/autoname/directional/south, -/obj/structure/disposalpipe/segment{ +"ikW" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/chair/sofa/bench/left, +/obj/effect/turf_decal/box/corners{ dir = 4 }, +/obj/effect/turf_decal/box/corners, /turf/open/floor/iron/dark, -/area/service/chapel/monastery) +/area/hallway/primary/central/fore) "ill" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -37093,22 +37876,6 @@ /obj/structure/sign/warning/deathsposal, /turf/closed/wall, /area/maintenance/starboard/aft) -"ilN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "ilP" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /obj/effect/turf_decal/tile/neutral{ @@ -37124,17 +37891,12 @@ /obj/structure/cable, /turf/open/floor/iron, /area/command/bridge) -"ilV" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/computer/atmos_control, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, +"imf" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, /obj/machinery/light/directional/north, -/obj/machinery/newscaster/directional/north, /turf/open/floor/iron/dark, -/area/engineering/atmos/storage/gas) +/area/hallway/primary/central/fore) "img" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating{ @@ -37180,21 +37942,6 @@ }, /turf/open/floor/iron/dark, /area/engineering/atmos) -"ini" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "ins" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, @@ -37326,6 +38073,15 @@ }, /turf/open/floor/carpet/green, /area/maintenance/port/greater) +"ioU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "ipk" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral, @@ -37341,16 +38097,6 @@ /obj/structure/disposalpipe/trunk, /turf/open/floor/iron/dark, /area/engineering/atmos/storage/gas) -"ipo" = ( -/obj/structure/chair/sofa/bench/right{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/wood, -/area/service/chapel/dock) "ips" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -37364,21 +38110,6 @@ }, /turf/open/floor/iron/dark, /area/maintenance/port/greater) -"ipG" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/bluespace_vendor/directional/north, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/hallway/primary/fore) -"ipO" = ( -/turf/closed/wall/r_wall, -/area/service/chapel/dock) "ipQ" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt, @@ -37469,13 +38200,6 @@ /obj/structure/table, /turf/open/floor/iron/cafeteria, /area/security/prison) -"irU" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/smooth_large, -/area/maintenance/department/chapel/monastery) "isi" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/stripes/line{ @@ -37525,6 +38249,19 @@ "isL" = ( /turf/closed/wall/r_wall, /area/engineering/atmos/pumproom) +"isR" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/iron/dark/corner, +/area/hallway/primary/central/fore) "ita" = ( /obj/structure/flora/junglebush/b, /obj/structure/flora/ausbushes/ppflowers, @@ -37537,6 +38274,19 @@ /mob/living/carbon/human/species/monkey, /turf/open/floor/grass, /area/medical/virology) +"itd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/service/chapel/dock) +"iti" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/air_input{ + dir = 4 + }, +/turf/open/floor/engine/air, +/area/engineering/atmos) "itn" = ( /turf/closed/wall/r_wall/rust, /area/ai_monitored/command/nuke_storage) @@ -37769,6 +38519,18 @@ /obj/item/radio/intercom/directional/north, /turf/open/floor/iron/dark, /area/engineering/storage/tech) +"ixw" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/hallway/primary/fore) "ixF" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -37781,6 +38543,15 @@ }, /turf/open/floor/iron/showroomfloor, /area/medical/medbay/central) +"ixI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "ixJ" = ( /obj/structure/girder, /turf/open/floor/plating, @@ -37887,6 +38658,22 @@ }, /turf/open/floor/engine, /area/engineering/supermatter/room) +"izT" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/hallway/primary/central/fore) "iAe" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, @@ -37906,6 +38693,13 @@ }, /turf/open/floor/iron/dark, /area/command/teleporter) +"iAj" = ( +/obj/effect/turf_decal/siding/thinplating/light/corner{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark, +/area/service/chapel/dock) "iAn" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, @@ -38010,12 +38804,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/engine, /area/ai_monitored/turret_protected/ai) -"iBO" = ( -/obj/structure/transit_tube/curved/flipped{ - dir = 1 - }, -/turf/open/space/basic, -/area/space/nearstation) "iBR" = ( /obj/machinery/firealarm/directional/west, /obj/effect/turf_decal/caution/stand_clear, @@ -38032,16 +38820,31 @@ icon_state = "wood-broken" }, /area/commons/locker) -"iCl" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/smooth_large, -/area/maintenance/department/chapel/monastery) "iCr" = ( /obj/effect/decal/cleanable/cobweb, /turf/open/floor/plating{ icon_state = "platingdmg3" }, /area/maintenance/department/crew_quarters/bar) +"iCI" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/hallway/primary/central/fore) "iCS" = ( /obj/effect/turf_decal/stripes/end{ dir = 8 @@ -38049,38 +38852,6 @@ /obj/machinery/airalarm/directional/west, /turf/open/floor/engine, /area/ai_monitored/turret_protected/ai_upload) -"iDr" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera/directional/west{ - c_tag = "Satellite Transit Access"; - name = "satellite camera"; - network = list("minisat") - }, -/obj/machinery/button/door/directional/west{ - id = "transittube_ai"; - name = "Transit Tube Lockdown Toggle"; - req_access_txt = "19" - }, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "iDt" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -38569,6 +39340,18 @@ /obj/structure/flora/tree/jungle, /turf/open/floor/grass, /area/service/chapel/monastery) +"iJE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/service/chapel/dock) "iJF" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -38615,18 +39398,6 @@ }, /turf/open/floor/plating, /area/maintenance/port/greater) -"iKb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/meter/atmos/layer2{ - name = "gas flow meter" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard) "iKf" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -38781,6 +39552,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/showroomfloor, /area/science/mixing) +"iMQ" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark, +/area/service/chapel/dock) "iNb" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -38944,11 +39719,13 @@ }, /turf/open/floor/iron/dark, /area/security/execution/education) -"iPX" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/service/chapel/dock) +"iPZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/smooth_large, +/area/maintenance/department/chapel/monastery) "iQk" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -39053,6 +39830,24 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron/dark, /area/maintenance/department/bridge) +"iQJ" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/computer/atmos_control/oxygen_tank{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, +/turf/open/floor/iron/showroomfloor, +/area/engineering/atmos) "iQP" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, @@ -39269,6 +40064,12 @@ /obj/structure/table, /turf/open/floor/iron/dark, /area/ai_monitored/command/storage/eva) +"iSL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/service/chapel/funeral) "iTj" = ( /turf/closed/wall/r_wall, /area/maintenance/starboard/fore) @@ -39337,6 +40138,15 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/fore) +"iUv" = ( +/obj/machinery/firealarm/directional/south, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/iron/stairs/left{ + dir = 4 + }, +/area/service/chapel/dock) "iUx" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -39429,12 +40239,17 @@ /obj/structure/reagent_dispensers/watertank, /turf/open/floor/iron/dark, /area/engineering/supermatter/room) -"iWo" = ( -/obj/machinery/mecha_part_fabricator/maint{ - name = "forgotten exosuit fabricator" +"iWr" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/iron/dark, -/area/service/chapel/storage) +/obj/effect/landmark/start/hangover, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/corner, +/area/hallway/primary/central/fore) "iWu" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -39722,6 +40537,28 @@ /obj/item/kirbyplants/potty, /turf/open/floor/iron/showroomfloor, /area/command/heads_quarters/rd) +"iZq" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L9" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Fore Hallway Centre"; + name = "fore camera" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "iZr" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -40125,6 +40962,15 @@ }, /turf/open/floor/engine, /area/engineering/supermatter/room) +"jfp" = ( +/turf/open/floor/plating, +/area/service/chapel/dock) +"jfq" = ( +/obj/structure/closet/crate/coffin, +/obj/effect/turf_decal/bot_white, +/obj/effect/mob_spawn/corpse/human/skeleton, +/turf/open/floor/iron/dark/textured_large, +/area/service/chapel/funeral) "jfB" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, @@ -40140,26 +40986,6 @@ /obj/structure/cable, /turf/open/floor/wood, /area/security/detectives_office) -"jfQ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "jgw" = ( /obj/effect/decal/cleanable/chem_pile, /obj/structure/cable, @@ -40225,6 +41051,28 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/floor/plating, /area/maintenance/port/fore) +"jhQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/camera/directional/south{ + c_tag = "Fore Hallway Vault"; + name = "fore camera" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/camera/directional/south{ + c_tag = "Fore Hallway Vault"; + name = "fore camera" + }, +/obj/structure/sign/poster/official/random/directional/south, +/turf/open/floor/iron/dark/corner, +/area/hallway/primary/central/fore) "jin" = ( /obj/machinery/light/small/directional/west, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -40318,11 +41166,6 @@ dir = 4 }, /area/hallway/primary/port) -"jjN" = ( -/obj/machinery/firealarm/directional/north, -/obj/machinery/camera/autoname/directional/north, -/turf/open/floor/iron/dark, -/area/service/chapel/dock) "jjR" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt, @@ -40396,21 +41239,6 @@ }, /turf/open/floor/iron/dark, /area/engineering/atmos/storage/gas) -"jkz" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "jls" = ( /obj/machinery/camera/directional/south{ c_tag = "Medical Operating Theater A"; @@ -40509,24 +41337,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/security/prison) -"joz" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/firealarm/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/hallway/primary/central/fore) "joH" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line{ @@ -40556,6 +41366,22 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/primary/aft) +"joZ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron, +/area/hallway/primary/fore) "jpb" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -40882,26 +41708,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold/green/visible, /turf/open/floor/iron, /area/engineering/atmos/pumproom) -"jtJ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "jtY" = ( /turf/closed/wall/rust, /area/medical/psychology) @@ -40930,6 +41736,9 @@ icon_state = "panelscorched" }, /area/engineering/supermatter/room) +"juS" = ( +/turf/closed/wall/r_wall, +/area/service/chapel/dock) "juT" = ( /obj/structure/reagent_dispensers/watertank, /obj/effect/turf_decal/tile/neutral{ @@ -40938,13 +41747,35 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark, /area/engineering/atmos) -"juY" = ( +"jvb" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/turf/open/floor/iron/dark, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/box, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, /area/hallway/primary/central/fore) +"jvg" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/button/door/directional/east{ + id = "Arrival Shuttle Bay"; + name = "Arrival Shuttle Bay Toggle"; + req_access_txt = "19" + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plating/airless, +/area/hallway/secondary/entry) "jvp" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -40969,17 +41800,6 @@ /obj/machinery/navbeacon/wayfinding/hydro, /turf/open/floor/iron, /area/service/hydroponics) -"jvz" = ( -/obj/machinery/door/airlock/grunge{ - name = "Chapel Office"; - req_access_txt = "22" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/service/chapel/office) "jvI" = ( /turf/open/floor/grass, /area/service/hydroponics/garden) @@ -41092,6 +41912,11 @@ icon_state = "platingdmg3" }, /area/security/execution/education) +"jyx" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/light/directional/east, +/turf/open/floor/plating/airless, +/area/hallway/secondary/entry) "jyH" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -41202,27 +42027,6 @@ /obj/effect/landmark/start/clown, /turf/open/floor/iron, /area/service/theater) -"jAU" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "jBn" = ( /obj/structure/grille/broken, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -41255,16 +42059,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/security/prison) -"jBJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "jBT" = ( /obj/machinery/light_switch/directional/east, /obj/item/radio/intercom/directional/north, @@ -41286,6 +42080,10 @@ /obj/structure/sign/poster/contraband/random/directional/south, /turf/open/floor/plating, /area/maintenance/port/fore) +"jCd" = ( +/obj/machinery/air_sensor/plasma_tank, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) "jCj" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -41403,12 +42201,6 @@ }, /turf/open/floor/iron/dark, /area/engineering/supermatter/room) -"jDT" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/mix_input{ - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) "jEk" = ( /obj/machinery/hydroponics/soil, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -41474,6 +42266,11 @@ }, /turf/open/floor/iron/dark/corner, /area/hallway/primary/port) +"jEZ" = ( +/obj/machinery/newscaster/directional/north, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark, +/area/service/chapel/dock) "jFI" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/corner{ @@ -41485,6 +42282,16 @@ /obj/effect/spawner/random/structure/crate, /turf/open/floor/plating, /area/maintenance/port/fore) +"jFN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/sign/poster/official/random/directional/south, +/turf/open/floor/iron/dark/corner, +/area/hallway/primary/central/fore) "jFO" = ( /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/yellow{ @@ -41540,11 +42347,6 @@ icon_state = "platingdmg3" }, /area/maintenance/port/greater) -"jGM" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron/dark, -/area/service/chapel/funeral) "jGP" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -41560,12 +42362,6 @@ icon_state = "panelscorched" }, /area/maintenance/starboard) -"jHj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrogen_output{ - dir = 4 - }, -/turf/open/floor/engine/n2, -/area/engineering/atmos) "jHA" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb/cobweb2, @@ -41589,6 +42385,16 @@ /obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/showroomfloor, /area/commons/toilet/restrooms) +"jIb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, +/obj/machinery/door/airlock/grunge{ + name = "Monastery Atmos" + }, +/obj/effect/turf_decal/siding/thinplating/dark, +/turf/open/floor/iron/smooth_large, +/area/maintenance/department/chapel/monastery) "jIo" = ( /obj/structure/sign/warning/electricshock, /turf/closed/wall/r_wall, @@ -41683,6 +42489,17 @@ }, /turf/open/floor/iron/dark, /area/medical/virology) +"jJY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "jKx" = ( /obj/machinery/airalarm/directional/east, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -41711,6 +42528,18 @@ icon_state = "platingdmg1" }, /area/maintenance/fore) +"jLm" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "jLK" = ( /obj/item/radio/intercom/directional/east, /obj/effect/turf_decal/delivery, @@ -41749,32 +42578,13 @@ /obj/structure/noticeboard/directional/north, /turf/open/floor/wood, /area/service/theater) -"jMm" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +"jML" = ( +/obj/machinery/door/airlock/grunge, /obj/structure/cable, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) -"jMH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/service/chapel/dock) "jMR" = ( /turf/closed/wall, /area/cargo/qm) @@ -41854,20 +42664,6 @@ /obj/structure/extinguisher_cabinet/directional/east, /turf/open/floor/iron/dark, /area/security/interrogation) -"jOt" = ( -/obj/structure/table/wood/fancy, -/obj/effect/turf_decal/siding/wideplating/dark/corner, -/obj/item/food/grown/poppy{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/food/grown/poppy{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/food/grown/poppy, -/turf/open/floor/iron/dark, -/area/service/chapel/dock) "jOH" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/blue{ @@ -41936,18 +42732,6 @@ /obj/machinery/light_switch/directional/north, /turf/open/floor/iron/dark, /area/medical/storage) -"jPD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/hallway/primary/central/fore) "jPE" = ( /obj/effect/turf_decal/delivery, /obj/machinery/light/directional/north, @@ -42087,22 +42871,6 @@ icon_state = "platingdmg3" }, /area/maintenance/starboard) -"jRh" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "jRn" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -42172,24 +42940,6 @@ }, /turf/open/floor/iron, /area/cargo/drone_bay) -"jRW" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/north{ - pixel_x = -4 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/hallway/primary/central/fore) "jSc" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral{ @@ -42378,30 +43128,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/starboard) -"jUC" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/lapvend, -/turf/open/floor/iron/dark, -/area/hallway/primary/central/fore) -"jUY" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/hallway/primary/central/fore) "jVg" = ( /obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ dir = 4 @@ -42419,12 +43145,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/command/heads_quarters/cmo) -"jVw" = ( -/obj/structure/cable, -/obj/machinery/power/smes, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/smooth_large, -/area/maintenance/department/chapel/monastery) "jVJ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/loading_area{ @@ -42537,25 +43257,6 @@ icon_state = "panelscorched" }, /area/maintenance/starboard) -"jXp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L2" - }, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "jXK" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -42577,6 +43278,20 @@ /obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/iron, /area/hallway/primary/central) +"jYa" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron/dark/corner, +/area/hallway/primary/central/fore) "jYl" = ( /obj/structure/chair/office/light{ dir = 4 @@ -42647,6 +43362,18 @@ }, /turf/open/floor/iron/dark, /area/command/heads_quarters/rd) +"jZi" = ( +/obj/structure/table/bronze, +/obj/item/clothing/head/bronze{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/machinery/light/small/directional/east, +/obj/item/toy/clockwork_watch{ + pixel_x = -5 + }, +/turf/open/floor/bronze/filled, +/area/maintenance/department/chapel) "jZj" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -42875,6 +43602,23 @@ /obj/machinery/duct, /turf/open/floor/wood, /area/service/bar/atrium) +"kdD" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/effect/turf_decal/box/corners, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/hallway/primary/central/fore) "kdG" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/grunge{ @@ -42974,12 +43718,6 @@ }, /turf/open/floor/plating, /area/maintenance/port/lesser) -"kfo" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/service/chapel/dock) "kfu" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -43186,6 +43924,20 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) +"kjx" = ( +/obj/structure/table/wood/fancy/black, +/obj/item/flashlight/lantern{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/flashlight/lantern{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/flashlight/lantern, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/dark, +/area/service/chapel/monastery) "kjD" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/clothing/wardrobe_closet_colored, @@ -43217,6 +43969,14 @@ }, /turf/open/floor/plating, /area/medical/virology) +"kkc" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) "kki" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -43324,6 +44084,13 @@ }, /turf/open/floor/iron, /area/engineering/atmos) +"kkN" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron/dark/corner, +/area/hallway/primary/central/fore) "klb" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, @@ -43452,6 +44219,23 @@ /obj/machinery/door/airlock/bronze, /turf/open/floor/bronze, /area/maintenance/department/chapel) +"kmn" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Fore Hallway Diner"; + name = "fore camera" + }, +/obj/machinery/bluespace_vendor/directional/north, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "kmJ" = ( /obj/structure/cable, /obj/structure/chair/sofa/right{ @@ -43478,16 +44262,6 @@ }, /turf/open/misc/asteroid/airless, /area/space/nearstation) -"kmP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "kmT" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ @@ -43752,12 +44526,33 @@ }, /turf/open/floor/iron/dark, /area/service/janitor) +"kpK" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/nitrous_input{ + dir = 1 + }, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) "kpP" = ( /obj/item/kirbyplants{ icon_state = "plant-22" }, /turf/open/floor/iron/dark, /area/command/bridge) +"kpS" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"kpX" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/navbeacon/wayfinding/chapel, +/obj/structure/transit_tube/station/dispenser/reverse/flipped{ + dir = 8 + }, +/turf/open/floor/iron/grimy, +/area/hallway/primary/fore) "kpY" = ( /obj/effect/turf_decal/tile/yellow{ dir = 1 @@ -43942,17 +44737,6 @@ /obj/structure/cable, /turf/open/floor/engine/telecomms, /area/tcommsat/server) -"ksY" = ( -/obj/structure/sign/departments/holy{ - pixel_y = -30 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/stairs/left{ - dir = 4 - }, -/area/hallway/primary/fore) "ktk" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -44163,10 +44947,6 @@ /obj/structure/reagent_dispensers/wall/virusfood/directional/south, /turf/open/floor/iron/dark, /area/medical/virology) -"kwR" = ( -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/service/chapel/dock) "kwT" = ( /obj/machinery/door/airlock/external{ name = "Atmospherics External Airlock"; @@ -44179,15 +44959,6 @@ icon_state = "panelscorched" }, /area/maintenance/disposal/incinerator) -"kxc" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external/glass{ - name = "Monastery External Airlock" - }, -/turf/open/floor/plating, -/area/service/chapel/dock) "kxi" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -44235,6 +45006,23 @@ icon_state = "platingdmg1" }, /area/maintenance/disposal/incinerator) +"kyf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/camera/directional/south{ + c_tag = "Fore Hallway Robotics Bay"; + name = "fore camera" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/corner, +/area/hallway/primary/central/fore) "kyi" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -44339,10 +45127,6 @@ "kzH" = ( /turf/closed/wall/rust, /area/service/chapel/dock) -"kzM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/grimy, -/area/hallway/primary/fore) "kzS" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 @@ -44602,6 +45386,10 @@ /obj/effect/turf_decal/siding/purple, /turf/open/floor/iron/showroomfloor, /area/science/robotics/lab) +"kDs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/service/chapel/dock) "kDU" = ( /obj/structure/closet/secure_closet/brig, /obj/effect/turf_decal/tile/red/anticorner/contrasted, @@ -44616,26 +45404,6 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron/dark, /area/command/bridge) -"kEb" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/button/door/directional/north{ - id = "Skynet_launch"; - name = "Mech Bay Door Control"; - req_access_txt = "29" - }, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "kEu" = ( /obj/effect/decal/cleanable/blood/old, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -44710,14 +45478,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/port/lesser) -"kGi" = ( -/obj/machinery/door/airlock/grunge, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark, -/area/service/chapel/dock) "kGl" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -44756,13 +45516,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/medical/medbay/lobby) -"kGV" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/machinery/camera/autoname/directional/north, -/turf/open/floor/carpet/red, -/area/service/chapel/monastery) "kGZ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/landmark/start/bartender, @@ -44830,18 +45583,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/service/bar/atrium) -"kId" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/machinery/camera/autoname/directional/north, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/iron/stairs/right{ - dir = 4 - }, -/area/service/chapel/dock) "kIo" = ( /obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ dir = 4 @@ -44896,13 +45637,16 @@ /obj/machinery/smartfridge, /turf/closed/wall, /area/service/hydroponics) -"kJi" = ( +"kJw" = ( +/obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ dir = 8 }, +/obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, /area/hallway/primary/central/fore) "kJD" = ( @@ -45021,6 +45765,12 @@ /obj/structure/cable, /turf/open/floor/iron, /area/security/prison) +"kLu" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/carbon_input{ + dir = 1 + }, +/turf/open/floor/engine/co2, +/area/engineering/atmos) "kLy" = ( /obj/structure/flora/ausbushes/palebush{ icon_state = "fernybush_3" @@ -45056,20 +45806,6 @@ "kMd" = ( /turf/closed/wall, /area/medical/surgery/fore) -"kMp" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/hallway/primary/fore) "kMH" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -45097,17 +45833,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/medical/morgue) -"kNa" = ( -/obj/machinery/door/window/northleft{ - req_access_txt = "22" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating, -/area/service/chapel/funeral) "kNl" = ( /obj/structure/sign/warning/fire, /obj/machinery/atmospherics/pipe/smart/simple/supply/hidden{ @@ -45124,13 +45849,6 @@ }, /turf/open/floor/iron, /area/service/hydroponics) -"kNw" = ( -/obj/effect/turf_decal/siding/thinplating/light/corner{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark, -/area/service/chapel/dock) "kNx" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -45159,12 +45877,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/port/greater) -"kOb" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/iron/dark, -/area/hallway/primary/central/fore) "kOw" = ( /obj/structure/table, /obj/structure/cable, @@ -45195,20 +45907,13 @@ }, /turf/open/floor/iron/dark, /area/hallway/secondary/exit/departure_lounge) -"kOW" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) +"kOG" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/reedbush, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/machinery/light/directional/south, +/turf/open/floor/grass, +/area/hallway/primary/fore) "kPg" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -45358,6 +46063,20 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/service/janitor) +"kQA" = ( +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "kQG" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -45486,23 +46205,6 @@ icon_state = "panelscorched" }, /area/maintenance/starboard) -"kSa" = ( -/obj/structure/table/wood/fancy, -/obj/effect/turf_decal/siding/wideplating/dark/corner{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/obj/item/food/grown/harebell, -/obj/item/food/grown/harebell{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/food/grown/harebell{ - pixel_x = -3; - pixel_y = 3 - }, -/turf/open/floor/iron/dark, -/area/service/chapel/dock) "kSi" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/stripes/line{ @@ -45564,6 +46266,10 @@ /obj/structure/cable, /turf/open/floor/plating, /area/ai_monitored/command/storage/eva) +"kTu" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/service/chapel/storage) "kTz" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -45681,6 +46387,31 @@ /obj/machinery/status_display/evac/directional/north, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) +"kVj" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/item/kirbyplants{ + icon_state = "plant-16" + }, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "kVo" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -45775,12 +46506,6 @@ }, /turf/open/floor/iron/dark, /area/security/warden) -"kWQ" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/carbon_input{ - dir = 1 - }, -/turf/open/floor/engine/co2, -/area/engineering/atmos) "kWT" = ( /obj/effect/turf_decal/loading_area{ dir = 1 @@ -45819,10 +46544,6 @@ icon_state = "platingdmg3" }, /area/security/prison) -"kXI" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/dark, -/area/service/chapel/dock) "kXW" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment, @@ -45879,22 +46600,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, /turf/open/floor/iron/dark/telecomms, /area/science/server) -"kYz" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/noticeboard/directional/north{ - dir = 2; - name = "Chapel Notice Board" - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/hallway/primary/fore) "kYM" = ( /obj/machinery/pdapainter, /obj/structure/sign/poster/official/ian{ @@ -46141,20 +46846,6 @@ }, /turf/open/floor/iron/dark, /area/security/execution/education) -"ldN" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "ldP" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -46163,25 +46854,10 @@ icon_state = "platingdmg1" }, /area/maintenance/fore) -"leh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner, -/area/hallway/primary/central/fore) -"lez" = ( -/obj/machinery/door/morgue{ - name = "Religious Equipment"; - req_access_txt = "22" - }, -/turf/open/floor/cult, -/area/service/chapel/office) +"led" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/iron/dark, +/area/service/chapel/funeral) "leW" = ( /obj/structure/closet/crate, /obj/item/stack/sheet/iron/fifty, @@ -46254,6 +46930,12 @@ icon_state = "platingdmg1" }, /area/maintenance/disposal) +"lge" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "lgq" = ( /obj/effect/turf_decal/box, /obj/machinery/light/directional/north, @@ -46295,19 +46977,10 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) -"lgK" = ( -/turf/closed/wall/r_wall/rust, -/area/maintenance/department/chapel/monastery) "lgT" = ( /obj/structure/window/reinforced/spawner/north, /turf/open/floor/plating, /area/maintenance/fore) -"lgZ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/iron/smooth_large, -/area/maintenance/department/chapel/monastery) "lhD" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -46337,12 +47010,6 @@ "lih" = ( /turf/closed/wall/r_wall, /area/command/teleporter) -"liu" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/service/chapel/monastery) "liy" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -46491,11 +47158,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/showroomfloor, /area/science/xenobiology) -"lkB" = ( -/turf/open/floor/iron/stairs/medium{ - dir = 4 - }, -/area/hallway/primary/fore) "lkE" = ( /obj/item/radio/intercom/directional/north, /obj/machinery/vending/cigarette, @@ -46648,6 +47310,11 @@ icon_state = "platingdmg1" }, /area/maintenance/solars/port/aft) +"lnu" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/machinery/light/directional/east, +/turf/open/floor/grass, +/area/service/chapel/monastery) "lnx" = ( /obj/structure/flora/ausbushes/sparsegrass, /turf/open/floor/grass, @@ -46714,22 +47381,6 @@ /obj/structure/cable, /turf/open/floor/iron/showroomfloor, /area/command/heads_quarters/rd) -"lnX" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/hallway/primary/central/fore) "lnZ" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -46897,6 +47548,14 @@ "lpT" = ( /turf/closed/wall/r_wall/rust, /area/maintenance/starboard/fore) +"lpU" = ( +/obj/machinery/light/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/smooth_large, +/area/maintenance/department/chapel/monastery) "lpY" = ( /obj/machinery/shower{ dir = 8 @@ -46954,10 +47613,18 @@ /obj/structure/table_frame, /turf/open/floor/plating, /area/cargo/warehouse) -"lrp" = ( -/obj/structure/transit_tube/diagonal/crossing/topleft, -/turf/open/space/basic, -/area/space/nearstation) +"lqX" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/hallway/primary/fore) "lrw" = ( /obj/structure/chair/comfy/brown, /obj/effect/spawner/random/maintenance, @@ -47039,6 +47706,12 @@ "lsw" = ( /turf/closed/wall, /area/engineering/gravity_generator) +"lsE" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "ltb" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -47050,6 +47723,18 @@ "ltg" = ( /turf/closed/wall/r_wall, /area/security/interrogation) +"ltr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/light/small/directional/west, +/obj/machinery/meter/layer4, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/greater) "lum" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -47230,10 +47915,6 @@ /obj/effect/turf_decal/tile/blue, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) -"lwP" = ( -/obj/machinery/air_sensor/atmos/plasma_tank, -/turf/open/floor/engine/plasma, -/area/engineering/atmos) "lxf" = ( /obj/effect/turf_decal/stripes/line{ dir = 5 @@ -47246,12 +47927,6 @@ }, /turf/open/floor/engine, /area/ai_monitored/turret_protected/aisat_interior) -"lxk" = ( -/obj/effect/turf_decal/siding/thinplating/dark/end{ - dir = 8 - }, -/turf/open/floor/glass/reinforced, -/area/service/chapel/dock) "lxl" = ( /obj/effect/turf_decal/bot, /obj/machinery/holopad, @@ -47324,21 +47999,16 @@ }, /turf/open/floor/iron, /area/engineering/lobby) +"lyw" = ( +/obj/structure/table/reinforced/plastitaniumglass, +/obj/item/mmi, +/turf/open/floor/iron/dark, +/area/service/chapel/storage) "lyz" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp/green, /turf/open/floor/wood/tile, /area/service/library) -"lyE" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/hallway/primary/central/fore) "lyF" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -47381,6 +48051,26 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/medical/surgery/fore) +"lzj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L12" + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "lzk" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/bot, @@ -47426,6 +48116,25 @@ }, /turf/open/floor/iron/dark, /area/command/heads_quarters/rd) +"lzN" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/sorting/mail{ + dir = 4; + name = "library sorting disposal pipe"; + sortType = 16 + }, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "lzW" = ( /obj/structure/closet/emcloset/anchored, /obj/effect/turf_decal/delivery, @@ -47472,12 +48181,6 @@ /obj/effect/landmark/start/cargo_technician, /turf/open/floor/iron, /area/cargo/storage) -"lBc" = ( -/obj/structure/cable, -/obj/machinery/power/port_gen/pacman, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/catwalk_floor/iron_smooth, -/area/maintenance/department/chapel/monastery) "lBe" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -47582,21 +48285,6 @@ /obj/item/kirbyplants/random, /turf/open/floor/iron/dark, /area/security/courtroom) -"lDR" = ( -/obj/machinery/computer/atmos_control/tank/mix_tank{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/engineering/atmos/pumproom) "lEG" = ( /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/tile/neutral, @@ -47666,10 +48354,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/showroomfloor, /area/engineering/atmos) -"lFt" = ( -/obj/effect/spawner/structure/window/bronze, -/turf/open/floor/plating, -/area/maintenance/department/chapel) "lFA" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -47838,25 +48522,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) -"lHG" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrogen_input{ - dir = 4 - }, -/turf/open/floor/engine/n2, -/area/engineering/atmos) -"lHU" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "Satellite Access"; - req_one_access_txt = "32;19" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/hallway/primary/central/fore) "lIe" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -48050,16 +48715,6 @@ /obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/carpet, /area/medical/psychology) -"lKf" = ( -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 1 - }, -/obj/structure/window/spawner, -/obj/structure/window/spawner/north, -/obj/structure/flora/rock/pile, -/turf/open/floor/grass, -/area/service/chapel/dock) "lKt" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -48174,6 +48829,20 @@ }, /turf/open/floor/iron/dark, /area/engineering/atmos) +"lNe" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark/corner, +/area/hallway/primary/central/fore) "lNB" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -48182,14 +48851,13 @@ icon_state = "platingdmg1" }, /area/security/prison) -"lNF" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/obj/item/kirbyplants/random, +"lNL" = ( +/obj/structure/cable, +/obj/structure/barricade/wooden/crude, +/obj/machinery/door/airlock/maintenance_hatch, +/obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron/dark, -/area/service/chapel/dock) +/area/service/chapel/storage) "lNT" = ( /obj/effect/turf_decal/delivery, /obj/machinery/space_heater, @@ -48205,6 +48873,9 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/bar) +"lNZ" = ( +/turf/closed/wall/r_wall/rust, +/area/service/chapel/funeral) "lOa" = ( /obj/effect/landmark/start/lawyer, /obj/structure/chair/office{ @@ -48400,19 +49071,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/maintenance/port/lesser) -"lQY" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/service/chapel/storage) -"lRa" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/service/chapel/dock) "lRG" = ( /obj/machinery/atmospherics/pipe/smart/simple/green/visible, /obj/structure/grille, @@ -48449,6 +49107,9 @@ /obj/effect/landmark/start/paramedic, /turf/open/floor/iron/showroomfloor, /area/medical/paramedic) +"lSh" = ( +/turf/closed/wall/r_wall/rust, +/area/maintenance/department/chapel/monastery) "lSk" = ( /obj/structure/sign/warning/securearea, /turf/closed/wall, @@ -48657,6 +49318,26 @@ /obj/structure/cable, /turf/open/floor/plating, /area/security/prison) +"lUa" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Chapel Hallway" + }, +/turf/open/floor/iron/dark, +/area/hallway/primary/fore) "lUc" = ( /obj/effect/turf_decal/tile/yellow{ dir = 1 @@ -48805,14 +49486,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/maintenance/disposal/incinerator) -"lVQ" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark, -/area/service/chapel/monastery) "lWh" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -48826,25 +49499,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/engineering/atmos) -"lWk" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L3" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/item/radio/intercom/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "lWq" = ( /obj/structure/table/wood/fancy/blue, /obj/effect/turf_decal/siding/wood{ @@ -49164,6 +49818,16 @@ }, /turf/open/floor/iron/dark, /area/engineering/storage/tech) +"maX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "mbo" = ( /obj/structure/closet/crate/freezer, /obj/item/reagent_containers/blood, @@ -49196,6 +49860,19 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron/dark, /area/medical/virology) +"mbC" = ( +/obj/structure/transit_tube/curved{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating/airless, +/area/space/nearstation) "mbL" = ( /obj/structure/closet/secure_closet/quartermaster, /obj/effect/turf_decal/tile/neutral, @@ -49439,20 +50116,6 @@ icon_state = "panelscorched" }, /area/science/xenobiology) -"mfY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/meter/atmos/layer2{ - name = "gas flow meter" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/greater) "mgi" = ( /obj/structure/table, /obj/machinery/recharger, @@ -49500,6 +50163,18 @@ luminosity = 2 }, /area/ai_monitored/turret_protected/aisat_interior) +"mhm" = ( +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/meter/layer4, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/lesser) "mhx" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -49551,15 +50226,6 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/floor/iron/dark, /area/engineering/storage/tech) -"mhW" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "mio" = ( /obj/machinery/light/small/directional/south, /obj/effect/decal/cleanable/dirt, @@ -49578,6 +50244,10 @@ /obj/structure/sign/departments/restroom, /turf/closed/wall, /area/commons/locker) +"miR" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/iron/dark, +/area/service/chapel/monastery) "miS" = ( /obj/machinery/camera/directional/west{ c_tag = "Atmospherics Tank - Mix"; @@ -49601,6 +50271,17 @@ }, /turf/open/floor/iron, /area/hallway/primary/central) +"mja" = ( +/obj/machinery/door/airlock/grunge{ + name = "Chapel Office"; + req_access_txt = "22" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/service/chapel/office) "mjh" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -49689,24 +50370,6 @@ /obj/structure/cable, /turf/open/floor/engine, /area/ai_monitored/turret_protected/aisat/foyer) -"mli" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/hallway/primary/fore) "mll" = ( /obj/effect/decal/cleanable/blood/old, /obj/effect/decal/cleanable/dirt, @@ -49803,6 +50466,17 @@ "mlQ" = ( /turf/closed/wall/r_wall, /area/maintenance/department/bridge) +"mlW" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/hallway/primary/fore) "mme" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line{ @@ -50067,6 +50741,25 @@ }, /turf/open/floor/iron/dark, /area/security/lockers) +"mqE" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/dark, +/area/hallway/primary/fore) "mqF" = ( /obj/effect/turf_decal/arrows/red{ dir = 4; @@ -50077,23 +50770,6 @@ }, /turf/open/floor/iron, /area/maintenance/disposal/incinerator) -"mqL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/iron/dark/corner, -/area/hallway/primary/central/fore) "mqV" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -50199,6 +50875,21 @@ /obj/structure/cable, /turf/open/floor/engine, /area/ai_monitored/turret_protected/aisat/foyer) +"mtf" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/hallway/primary/fore) "mtp" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall, @@ -50288,22 +50979,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, /turf/open/floor/engine, /area/engineering/supermatter/room) -"muG" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 4; - name = "chapel sorting disposal pipe"; - sortType = 17 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/hallway/primary/fore) "muK" = ( /obj/structure/chair, /mob/living/simple_animal/bot/secbot/beepsky/officer, @@ -50372,12 +51047,6 @@ /mob/living/simple_animal/hostile/giant_spider/hunter/scrawny, /turf/open/floor/iron/dark, /area/maintenance/port/greater) -"mvu" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/service/chapel/funeral) "mvP" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/machinery/power/apc/auto_name/directional/north, @@ -50569,6 +51238,12 @@ }, /turf/open/floor/iron/dark, /area/science/robotics/mechbay) +"myX" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/siding/thinplating/dark, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/recharge_floor, +/area/service/chapel/storage) "mzi" = ( /obj/effect/turf_decal/loading_area, /obj/machinery/door/poddoor/shutters/preopen{ @@ -50600,6 +51275,10 @@ }, /turf/open/floor/iron/dark, /area/commons/toilet/restrooms) +"mzI" = ( +/obj/structure/transit_tube/diagonal/crossing/topleft, +/turf/open/space/basic, +/area/space/nearstation) "mzP" = ( /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/tile/neutral{ @@ -50893,6 +51572,12 @@ icon_state = "platingdmg1" }, /area/maintenance/disposal) +"mGa" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/service/chapel/dock) "mGf" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bodycontainer/crematorium{ @@ -50976,26 +51661,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/hallway/primary/aft) -"mHk" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/obj/machinery/computer/atmos_control/tank/air_tank{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/engineering/atmos) "mHn" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -51080,22 +51745,10 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/security/armory) -"mHW" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/newscaster/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Fore Hallway Monastary Tube"; - name = "fore camera" - }, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/hallway/primary/fore) +"mHS" = ( +/obj/machinery/air_sensor/carbon_tank, +/turf/open/floor/engine/co2, +/area/engineering/atmos) "mId" = ( /obj/machinery/computer/station_alert{ dir = 8 @@ -51135,6 +51788,18 @@ /mob/living/simple_animal/bot/secbot/pingsky, /turf/open/floor/engine, /area/ai_monitored/turret_protected/aisat_interior) +"mJu" = ( +/obj/machinery/newscaster/directional/south, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/dark, +/area/hallway/primary/fore) "mJz" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment{ @@ -51177,6 +51842,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/command/gateway) +"mJU" = ( +/obj/structure/window/reinforced/spawner{ + dir = 1 + }, +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/grass, +/area/hallway/primary/fore) "mJV" = ( /obj/machinery/power/smes{ charge = 5e+006 @@ -51188,15 +51861,6 @@ /obj/structure/cable, /turf/open/floor/circuit/red/telecomms, /area/tcommsat/server) -"mKw" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/catwalk_floor/iron_dark, -/area/service/chapel/dock) "mKE" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -51280,6 +51944,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/maintenance/starboard/aft) +"mMF" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/turf/open/floor/iron/dark, +/area/service/chapel/funeral) "mMH" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/hydroponics/constructable, @@ -51434,15 +52105,12 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/security/brig) -"mOp" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, +"mOw" = ( /obj/structure/cable, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/hallway/primary/central/fore) +/obj/machinery/power/port_gen/pacman, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/maintenance/department/chapel/monastery) "mOD" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -51452,13 +52120,6 @@ /obj/effect/decal/cleanable/blood/old, /turf/open/floor/iron/dark, /area/security/interrogation) -"mOE" = ( -/obj/structure/cable, -/obj/structure/barricade/wooden/crude, -/obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/dark, -/area/service/chapel/storage) "mPo" = ( /obj/structure/table, /obj/item/stack/sheet/iron/fifty, @@ -51555,6 +52216,23 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/maintenance/aft) +"mQP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "mQS" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -51590,6 +52268,24 @@ }, /turf/open/floor/iron, /area/command/bridge) +"mRr" = ( +/obj/structure/railing, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/iron/dark, +/area/service/chapel/dock) +"mRu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/iron/grimy, +/area/service/chapel/office) "mRK" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -51722,6 +52418,14 @@ /obj/structure/cable, /turf/open/floor/iron, /area/commons/fitness/recreation) +"mTR" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark, +/area/service/chapel/dock) "mTW" = ( /obj/structure/table/wood, /obj/effect/turf_decal/box/corners, @@ -51761,11 +52465,6 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/engineering/atmos) -"mUJ" = ( -/obj/effect/turf_decal/sand/plating, -/obj/item/poster/random_contraband, -/turf/open/floor/plating/airless, -/area/space/nearstation) "mUT" = ( /obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ dir = 4 @@ -51834,6 +52533,26 @@ }, /turf/open/floor/iron/dark, /area/security/checkpoint/medical) +"mWk" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ + dir = 4 + }, +/obj/machinery/computer/atmos_control/nitrous_tank{ + dir = 1 + }, +/turf/open/floor/iron/showroomfloor, +/area/engineering/atmos) "mWp" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral{ @@ -51946,28 +52665,6 @@ /obj/structure/sign/departments/cargo, /turf/closed/wall, /area/cargo/warehouse) -"mWN" = ( -/obj/structure/table, -/obj/item/radio/intercom{ - broadcasting = 1; - frequency = 1447; - name = "Private AI Channel"; - pixel_y = -2 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen/minisat{ - dir = 1; - pixel_y = -28 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating, -/area/hallway/primary/central/fore) "mWQ" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -52071,12 +52768,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/engineering/lobby) -"mYm" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/service/chapel/dock) "mYq" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -52138,10 +52829,6 @@ }, /turf/open/floor/iron, /area/security/office) -"mZe" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/service/chapel/monastery) "mZs" = ( /obj/machinery/skill_station, /obj/effect/turf_decal/tile/neutral{ @@ -52190,6 +52877,17 @@ }, /turf/open/floor/iron, /area/hallway/primary/port) +"mZP" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/hallway/primary/fore) "mZT" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, /turf/closed/wall/rust, @@ -52200,18 +52898,6 @@ /obj/structure/cable, /turf/open/floor/iron/showroomfloor, /area/security/prison) -"nan" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/hallway/primary/central/fore) "naF" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -52279,6 +52965,11 @@ }, /turf/open/floor/iron/dark, /area/engineering/atmos) +"ncq" = ( +/turf/open/floor/iron/stairs/medium{ + dir = 4 + }, +/area/hallway/primary/fore) "ncv" = ( /obj/effect/decal/cleanable/blood/old, /obj/effect/decal/cleanable/dirt, @@ -52314,6 +53005,17 @@ "ndB" = ( /turf/closed/wall/r_wall, /area/maintenance/central) +"nek" = ( +/obj/structure/sign/departments/holy{ + pixel_y = -30 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/stairs/left{ + dir = 4 + }, +/area/hallway/primary/fore) "nev" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -52381,14 +53083,6 @@ icon_state = "panelscorched" }, /area/maintenance/port/fore) -"nfm" = ( -/obj/structure/table/bronze, -/obj/item/clothing/suit/bronze, -/obj/item/clothing/shoes/bronze{ - pixel_x = -12 - }, -/turf/open/floor/bronze, -/area/maintenance/department/chapel) "nfn" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -52453,20 +53147,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/service/hydroponics/garden) -"nga" = ( -/obj/structure/table/wood/fancy/black, -/obj/item/flashlight/lantern{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/flashlight/lantern{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/flashlight/lantern, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/service/chapel/monastery) "ngn" = ( /obj/effect/turf_decal/tile/red{ dir = 8 @@ -52556,6 +53236,10 @@ }, /turf/open/floor/iron, /area/cargo/miningoffice) +"nhp" = ( +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/service/chapel/dock) "nhB" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" @@ -52579,6 +53263,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/security/prison) +"nhW" = ( +/obj/machinery/door/airlock/external/glass{ + name = "Monastery External Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/service/chapel/dock) "nig" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -52610,20 +53303,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark, /area/cargo/drone_bay) -"njf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/caution, -/obj/structure/cable, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "njh" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -52684,19 +53363,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/hallway/primary/aft) -"njD" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/iron/dark, -/area/service/chapel/funeral) "njK" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -52741,14 +53407,6 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/hallway/primary/starboard) -"nkO" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) "nlh" = ( /obj/structure/frame/machine, /obj/effect/turf_decal/stripes/line{ @@ -52791,13 +53449,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/cargo/storage) -"nlZ" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/iron/grimy, -/area/service/chapel/office) "nmb" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -52890,6 +53541,14 @@ /obj/effect/spawner/random/structure/crate, /turf/open/floor/iron, /area/cargo/storage) +"noe" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/hallway/primary/central/fore) "nof" = ( /obj/effect/turf_decal/tile/purple, /obj/effect/turf_decal/tile/purple{ @@ -52934,17 +53593,17 @@ /obj/effect/decal/cleanable/blood/old, /turf/open/floor/plating, /area/cargo/warehouse) -"noK" = ( +"noV" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, /obj/machinery/light/directional/north, -/obj/structure/chair/sofa/bench/left{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/wood, -/area/service/chapel/dock) +/obj/machinery/newscaster/directional/north, +/obj/machinery/computer/atmos_control/nocontrol/master, +/turf/open/floor/iron/dark, +/area/engineering/atmos/storage/gas) "noY" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -52986,15 +53645,6 @@ /obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/iron/dark, /area/medical/paramedic) -"npt" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "npu" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ @@ -53013,24 +53663,6 @@ /obj/item/radio/intercom/prison/directional/east, /turf/open/floor/iron/showroomfloor, /area/security/brig) -"npx" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/hallway/primary/central/fore) "npB" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -53057,12 +53689,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/command/heads_quarters/hos) -"npW" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "nqj" = ( /obj/structure/flora/grass/jungle/b, /obj/structure/flora/ausbushes/brflowers, @@ -53138,6 +53764,19 @@ }, /turf/open/floor/iron/dark, /area/service/bar) +"nry" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/hallway/primary/fore) "nrB" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -53167,12 +53806,6 @@ }, /turf/open/floor/iron, /area/security/brig) -"nrX" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/smooth_large, -/area/maintenance/department/chapel/monastery) "nrY" = ( /obj/structure/table/wood, /obj/item/paper_bin{ @@ -53208,15 +53841,11 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) -"nsJ" = ( -/obj/structure/closet/crate/coffin, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/iron/dark/textured_large, -/area/service/chapel/funeral) -"nsN" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/service/chapel/funeral) +"nsk" = ( +/obj/machinery/air_sensor/ordnance_mixing_tank, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/engine/vacuum, +/area/science/mixing/chamber) "nsR" = ( /obj/machinery/atmospherics/components/binary/valve/layer4, /obj/effect/turf_decal/stripes/line, @@ -53241,6 +53870,12 @@ "nuc" = ( /turf/closed/wall/r_wall/rust, /area/engineering/storage/tech) +"nvj" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/service/chapel/funeral) "nvo" = ( /obj/structure/grille, /obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ @@ -53318,6 +53953,18 @@ }, /turf/open/floor/iron/showroomfloor, /area/medical/medbay/central) +"nwJ" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/service/chapel/dock) "nxf" = ( /obj/machinery/camera/directional/north{ c_tag = "Atmospherics Tank - O2"; @@ -53347,10 +53994,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/cargo/drone_bay) -"nxu" = ( -/obj/effect/turf_decal/siding/thinplating/dark/end, -/turf/open/floor/glass/reinforced, -/area/service/chapel/monastery) "nxx" = ( /obj/effect/turf_decal/sand/plating, /obj/structure/disposalpipe/segment{ @@ -53393,16 +54036,6 @@ /obj/effect/turf_decal/stripes/corner, /turf/open/floor/iron/dark, /area/cargo/miningoffice) -"nya" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/carpet/red, -/area/service/chapel/monastery) "nyh" = ( /obj/effect/turf_decal/tile/purple, /obj/effect/turf_decal/tile/purple{ @@ -53471,29 +54104,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/maintenance/solars/port/aft) -"nyK" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/button/door/directional/north{ - id = "transittube_ai"; - name = "Transit Tube Lockdown Toggle"; - req_access_txt = "19" - }, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "nyP" = ( /obj/effect/turf_decal/delivery, /obj/machinery/door/window/northright{ @@ -53510,13 +54120,6 @@ }, /turf/open/floor/iron/dark, /area/command/bridge) -"nyY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/iron/dark, -/area/hallway/primary/central/fore) "nzm" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -53537,12 +54140,6 @@ icon_state = "platingdmg3" }, /area/maintenance/port/lesser) -"nzq" = ( -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/turf/open/floor/iron, -/area/service/chapel/dock) "nzw" = ( /obj/structure/rack, /obj/item/storage/toolbox/mechanical, @@ -53562,14 +54159,8 @@ }, /turf/open/floor/iron/dark, /area/command/heads_quarters/ce) -"nzN" = ( -/obj/machinery/firealarm/directional/south, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/iron/stairs/left{ - dir = 4 - }, +"nzG" = ( +/turf/open/floor/iron/dark, /area/service/chapel/dock) "nzQ" = ( /obj/machinery/door/airlock/grunge{ @@ -53580,18 +54171,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/security/prison/safe) -"nzV" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/hallway/primary/fore) "nAd" = ( /obj/structure/flora/ausbushes/leafybush, /obj/structure/flora/ausbushes/sunnybush, @@ -53620,22 +54199,6 @@ }, /turf/open/floor/iron/dark, /area/cargo/sorting) -"nAt" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "nAw" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/structure/girder, @@ -53725,17 +54288,6 @@ icon_state = "platingdmg1" }, /area/maintenance/port/greater) -"nBX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "nCo" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" @@ -53838,6 +54390,20 @@ }, /turf/open/floor/iron, /area/security/checkpoint/engineering) +"nDN" = ( +/obj/structure/table/wood/fancy/black, +/obj/item/food/grown/poppy/geranium{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/food/grown/poppy/geranium{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/food/grown/poppy/geranium, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/dark, +/area/service/chapel/dock) "nEj" = ( /obj/effect/turf_decal/tile/yellow{ dir = 1 @@ -53912,6 +54478,15 @@ /obj/structure/easel, /turf/open/floor/iron/grimy, /area/security/prison) +"nGm" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "nGt" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/effect/turf_decal/box, @@ -54041,6 +54616,28 @@ /obj/effect/landmark/start/chaplain, /turf/open/floor/carpet/royalblue, /area/service/chapel/office) +"nJo" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/iron/stairs/right{ + dir = 1 + }, +/area/service/chapel/dock) +"nJq" = ( +/obj/machinery/door/window/northleft{ + req_access_txt = "22" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/service/chapel/funeral) "nJS" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, @@ -54259,30 +54856,18 @@ /obj/effect/spawner/random/structure/crate, /turf/open/floor/plating, /area/maintenance/starboard) -"nNt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/directions/science{ - dir = 4; - pixel_x = -32; - pixel_y = 8 +"nNs" = ( +/obj/structure/window/reinforced/spawner{ + dir = 4 }, -/obj/structure/sign/directions/supply{ - pixel_x = -32 - }, -/obj/structure/sign/directions/engineering{ - pixel_x = -32; - pixel_y = -8 - }, -/obj/effect/turf_decal/tile/green{ +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/window/reinforced/spawner{ dir = 1 }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/hallway/primary/fore) "nNB" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -54316,6 +54901,20 @@ /obj/effect/mapping_helpers/airlock/abandoned, /turf/open/floor/iron/dark, /area/cargo/warehouse) +"nOi" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/iron/stairs/right{ + dir = 4 + }, +/area/service/chapel/dock) "nOD" = ( /obj/structure/chair{ dir = 8 @@ -54330,10 +54929,6 @@ icon_state = "platingdmg1" }, /area/maintenance/port/greater) -"nOP" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/dark, -/area/service/chapel/storage) "nOU" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -54354,6 +54949,15 @@ }, /turf/open/floor/iron, /area/service/hydroponics) +"nOW" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/service/chapel/dock) "nOZ" = ( /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/brown{ @@ -54414,6 +55018,19 @@ /obj/structure/sign/poster/official/pda_ad, /turf/closed/wall, /area/command/heads_quarters/hop) +"nQT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/directional/south, +/obj/structure/sign/departments/botany{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "nRg" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -54561,6 +55178,17 @@ "nTA" = ( /turf/closed/wall/r_wall, /area/hallway/secondary/service) +"nTC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/iron/stairs/medium{ + dir = 4 + }, +/area/service/chapel/dock) "nTF" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -54754,33 +55382,6 @@ }, /turf/open/floor/iron/dark, /area/security/warden) -"nVU" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/sign/directions/science{ - dir = 4; - pixel_y = 40 - }, -/obj/structure/sign/directions/supply{ - dir = 4; - pixel_y = 32 - }, -/obj/structure/sign/directions/engineering{ - dir = 4; - pixel_y = 24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "nWl" = ( /obj/structure/table, /obj/machinery/newscaster/directional/west, @@ -54791,6 +55392,11 @@ /obj/item/restraints/handcuffs, /turf/open/floor/iron/dark, /area/hallway/secondary/exit/departure_lounge) +"nWz" = ( +/obj/structure/table/wood/fancy, +/obj/item/storage/fancy/candle_box, +/turf/open/floor/iron/dark, +/area/service/chapel/dock) "nWD" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" @@ -54950,6 +55556,14 @@ /obj/machinery/light/small/directional/south, /turf/open/floor/iron/dark, /area/security/office) +"nYf" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark, +/area/hallway/primary/central/fore) "nYK" = ( /obj/effect/spawner/random/structure/crate, /turf/open/floor/plating{ @@ -55164,12 +55778,6 @@ /obj/structure/sign/poster/random/directional/north, /turf/open/floor/plating, /area/maintenance/central) -"ocw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrous_output{ - dir = 1 - }, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) "ocN" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -55189,10 +55797,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/command/heads_quarters/ce) -"ocW" = ( -/obj/machinery/air_sensor/atmos/mix_tank, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) +"ocT" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/machinery/light/directional/east, +/turf/open/floor/grass, +/area/service/chapel/monastery) "odd" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, @@ -55206,6 +55815,12 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/cargo/sorting) +"ode" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/turf/open/floor/iron, +/area/service/chapel/dock) "odr" = ( /obj/machinery/atmospherics/components/binary/valve, /obj/machinery/button/ignition/incinerator/ordmix{ @@ -55292,6 +55907,13 @@ icon_state = "panelscorched" }, /area/maintenance/fore) +"ofv" = ( +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 8 + }, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/maintenance/department/chapel/monastery) "ofH" = ( /obj/structure/sign/warning/docking, /turf/closed/wall, @@ -55555,6 +56177,33 @@ /obj/structure/grille, /turf/closed/wall/r_wall, /area/engineering/atmos) +"ojS" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/machinery/computer/atmos_control/carbon_tank{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/engineering/atmos) "okh" = ( /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/yellow{ @@ -55636,6 +56285,9 @@ }, /turf/open/floor/iron, /area/service/hydroponics) +"omf" = ( +/turf/closed/wall/rust, +/area/maintenance/department/chapel/monastery) "omv" = ( /obj/machinery/conveyor{ dir = 4; @@ -55781,13 +56433,6 @@ icon_state = "platingdmg1" }, /area/maintenance/fore) -"oop" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/landmark/start/chaplain, -/turf/open/floor/iron/dark, -/area/service/chapel/dock) "ooM" = ( /obj/effect/turf_decal/delivery, /obj/machinery/space_heater, @@ -55828,6 +56473,12 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron, /area/commons/storage/art) +"opt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/service/chapel/dock) "opx" = ( /obj/effect/turf_decal/bot, /obj/structure/punching_bag, @@ -55840,6 +56491,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, /turf/closed/wall/r_wall, /area/engineering/supermatter) +"opV" = ( +/obj/structure/transit_tube/curved/flipped{ + dir = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) "opW" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -55920,20 +56577,6 @@ /obj/effect/spawner/random/structure/crate, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"oqv" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "oqx" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -55943,6 +56586,24 @@ "oqI" = ( /turf/closed/wall, /area/security/lockers) +"oqJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/hallway/primary/central/fore) "oqQ" = ( /obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ dir = 8; @@ -56074,6 +56735,26 @@ }, /turf/open/floor/iron/dark, /area/command/heads_quarters/captain) +"osm" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/button/door/directional/north{ + id = "Skynet_launch"; + name = "Mech Bay Door Control"; + req_access_txt = "29" + }, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "oss" = ( /obj/effect/decal/cleanable/blood/old, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -56211,6 +56892,18 @@ /obj/machinery/light_switch/directional/north, /turf/open/floor/iron/dark, /area/science/robotics/lab) +"otJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/hallway/primary/fore) "otW" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -56244,6 +56937,11 @@ /obj/structure/curtain, /turf/open/floor/plating, /area/security/prison) +"oue" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) "ouv" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -56375,6 +57073,23 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/showroomfloor, /area/medical/chemistry) +"oxw" = ( +/obj/effect/decal/cleanable/robot_debris/limb, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/oil/streak, +/obj/effect/decal/cleanable/robot_debris/old, +/turf/open/floor/iron/dark, +/area/service/chapel/storage) +"oxH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/iron/dark/corner, +/area/hallway/primary/central/fore) "oxL" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -56454,20 +57169,6 @@ }, /turf/open/floor/iron, /area/command/bridge) -"ozi" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "ozk" = ( /obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ dir = 9 @@ -56475,6 +57176,15 @@ /obj/structure/lattice, /turf/open/space/basic, /area/space/nearstation) +"ozl" = ( +/obj/effect/landmark/start/chaplain, +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/machinery/light/small/directional/west, +/obj/item/radio/intercom/chapel/directional/north, +/turf/open/floor/wood/parquet, +/area/service/chapel/monastery) "ozA" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -56609,6 +57319,22 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/maintenance/port/aft) +"oAZ" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "oBv" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, @@ -56758,22 +57484,6 @@ /obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible, /turf/open/space/basic, /area/space/nearstation) -"oDw" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/hallway/primary/fore) "oDT" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, /turf/closed/wall/rust, @@ -56826,12 +57536,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood, /area/command/heads_quarters/captain) -"oEr" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/recharge_floor, -/area/service/chapel/storage) "oEv" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/grunge{ @@ -56894,6 +57598,15 @@ /obj/structure/sign/poster/random/directional/east, /turf/open/floor/iron/dark, /area/hallway/secondary/service) +"oFk" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/stairs{ + dir = 4 + }, +/area/service/chapel/funeral) "oFp" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -56929,6 +57642,13 @@ /obj/effect/decal/cleanable/vomit/old, /turf/open/floor/iron/dark, /area/maintenance/starboard) +"oFQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/grimy, +/area/hallway/primary/fore) "oFW" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -56970,11 +57690,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark, /area/cargo/drone_bay) -"oHt" = ( -/obj/structure/table/wood/fancy, -/obj/item/storage/fancy/candle_box, -/turf/open/floor/iron/dark, -/area/service/chapel/dock) "oHy" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -57085,22 +57800,6 @@ }, /turf/open/floor/iron/dark, /area/security/prison) -"oIS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light/small/directional/west, -/obj/machinery/atmospherics/components/binary/pump/on/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/hallway/primary/central/fore) "oJe" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -57267,18 +57966,6 @@ "oOf" = ( /turf/open/floor/engine/plasma, /area/engineering/atmos) -"oOE" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/hallway/primary/central/fore) "oOM" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -57288,6 +57975,10 @@ }, /turf/open/floor/iron/dark, /area/hallway/secondary/exit/departure_lounge) +"oOQ" = ( +/obj/machinery/newscaster/directional/north, +/turf/open/floor/iron/dark, +/area/service/chapel/dock) "oOV" = ( /obj/effect/turf_decal/tile/purple{ dir = 4 @@ -57306,6 +57997,13 @@ }, /turf/open/floor/iron/showroomfloor, /area/science/xenobiology) +"oPd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Chapel Hallway" + }, +/turf/open/floor/iron/dark, +/area/hallway/primary/fore) "oPj" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 @@ -57329,13 +58027,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/security/brig) -"oPA" = ( -/obj/structure/frame/computer, -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron, -/area/service/chapel/storage) "oPB" = ( /obj/machinery/door/airlock/highsecurity{ name = "AI Chamber"; @@ -57480,6 +58171,30 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/maintenance/port/lesser) +"oRZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/hallway/primary/central/fore) +"oSa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "oSs" = ( /obj/structure/flora/grass/jungle, /obj/effect/turf_decal/stripes/line{ @@ -57546,15 +58261,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/wood, /area/command/heads_quarters/captain) -"oSX" = ( -/obj/machinery/firealarm/directional/north, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/iron/stairs/right{ - dir = 4 - }, -/area/service/chapel/dock) "oTd" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -57591,11 +58297,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/engineering/atmos/storage/gas) -"oTp" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/dark, -/area/service/chapel/dock) "oTs" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -57685,19 +58386,6 @@ /obj/structure/sign/warning/docking, /turf/closed/wall/rust, /area/cargo/warehouse) -"oVa" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "oVl" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -57747,6 +58435,13 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/security/office) +"oWr" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/iron/grimy, +/area/service/chapel/office) "oWv" = ( /obj/effect/turf_decal/tile/red{ dir = 4 @@ -57779,16 +58474,6 @@ icon_state = "panelscorched" }, /area/engineering/supermatter/room) -"oXm" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/hallway/primary/fore) "oXo" = ( /obj/machinery/hydroponics/constructable, /obj/structure/railing/corner, @@ -57881,30 +58566,29 @@ /obj/machinery/computer/security/telescreen/entertainment/directional/north, /turf/open/floor/wood, /area/service/bar/atrium) -"oYG" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ +"oYr" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/hallway/primary/central/fore) +"oYt" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/purple{ +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/obj/machinery/computer/atmos_control/tank/plasma_tank{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/engineering/atmos) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/hallway/primary/fore) "oYZ" = ( /turf/closed/wall/rust, /area/engineering/supermatter/room) @@ -57966,9 +58650,6 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/iron/showroomfloor, /area/commons/storage/art) -"oZE" = ( -/turf/closed/wall/rust, -/area/maintenance/department/chapel/monastery) "oZJ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -58060,18 +58741,6 @@ }, /turf/open/floor/iron/dark, /area/commons/storage/primary) -"paF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/hallway/primary/central/fore) "paL" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -58172,6 +58841,29 @@ /obj/machinery/firealarm/directional/east, /turf/open/floor/iron/dark, /area/command/bridge) +"pcM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L6" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "pcO" = ( /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/tile/neutral{ @@ -58354,15 +59046,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/engine, /area/ai_monitored/turret_protected/aisat/atmos) -"pgd" = ( -/obj/machinery/airalarm/directional/north, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/iron/stairs/right{ - dir = 4 - }, -/area/service/chapel/dock) "pgf" = ( /obj/machinery/firealarm/directional/west, /obj/item/reagent_containers/glass/bottle/ammonia, @@ -58452,26 +59135,6 @@ }, /turf/open/misc/asteroid, /area/space/nearstation) -"phU" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "phZ" = ( /obj/structure/chair{ dir = 8 @@ -58618,24 +59281,6 @@ /obj/structure/flora/ausbushes/stalkybush, /turf/open/floor/grass, /area/service/hydroponics) -"pjW" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "pkb" = ( /obj/structure/cable, /obj/structure/table/wood, @@ -58672,12 +59317,6 @@ icon_state = "platingdmg1" }, /area/maintenance/disposal) -"pkY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/carbon_output{ - dir = 1 - }, -/turf/open/floor/engine/co2, -/area/engineering/atmos) "plq" = ( /obj/structure/cable, /obj/machinery/duct, @@ -58706,16 +59345,6 @@ /obj/machinery/computer/security/qm, /turf/open/floor/iron/dark, /area/security/checkpoint/supply) -"plZ" = ( -/obj/machinery/door/airlock/grunge{ - name = "Crematorium"; - req_access_txt = "22" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/service/chapel/funeral) "pme" = ( /obj/structure/window/reinforced/spawner{ dir = 4 @@ -58854,6 +59483,10 @@ icon_state = "panelscorched" }, /area/maintenance/starboard/aft) +"poi" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/dark, +/area/service/chapel/funeral) "pot" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -58897,6 +59530,12 @@ icon_state = "platingdmg1" }, /area/engineering/supermatter/room) +"poH" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/nitrogen_input{ + dir = 4 + }, +/turf/open/floor/engine/n2, +/area/engineering/atmos) "poN" = ( /obj/machinery/conveyor{ dir = 1; @@ -59036,6 +59675,22 @@ /obj/machinery/navbeacon/wayfinding/library, /turf/open/floor/iron/dark, /area/service/library) +"ppU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/noticeboard/directional/north{ + dir = 2; + name = "Chapel Notice Board" + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/hallway/primary/fore) "pqb" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -59102,9 +59757,6 @@ /obj/machinery/airalarm/directional/north, /turf/open/floor/iron/showroomfloor, /area/engineering/atmos) -"pqX" = ( -/turf/open/floor/iron/dark, -/area/service/chapel/funeral) "prk" = ( /obj/effect/decal/cleanable/ash, /obj/effect/decal/cleanable/dirt, @@ -59248,44 +59900,10 @@ /obj/machinery/light_switch/directional/north, /turf/open/floor/iron/dark, /area/engineering/atmos) -"psF" = ( -/obj/structure/bodycontainer/morgue{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/service/chapel/funeral) -"psO" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/computer/atmos_control/tank/carbon_tank{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/engineering/atmos) +"psW" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/service/chapel/dock) "pta" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -59336,6 +59954,11 @@ /obj/item/radio/intercom/directional/west, /turf/open/floor/iron, /area/command/gateway) +"ptL" = ( +/obj/effect/turf_decal/sand/plating, +/obj/item/poster/random_contraband, +/turf/open/floor/plating/airless, +/area/space/nearstation) "ptQ" = ( /obj/effect/turf_decal/tile/red{ dir = 8 @@ -59391,6 +60014,13 @@ }, /turf/open/floor/iron, /area/hallway/primary/starboard) +"puv" = ( +/obj/machinery/door/morgue{ + name = "Religious Equipment"; + req_access_txt = "22" + }, +/turf/open/floor/cult, +/area/service/chapel/office) "puG" = ( /obj/structure/table/wood, /obj/item/stack/package_wrap, @@ -59413,16 +60043,6 @@ }, /turf/open/floor/engine, /area/engineering/supermatter/room) -"pvc" = ( -/obj/effect/turf_decal/siding/thinplating/dark/end{ - dir = 4 - }, -/obj/structure/window/spawner, -/obj/structure/window/spawner/east, -/obj/structure/window/spawner/north, -/obj/structure/flora/ausbushes/ppflowers, -/turf/open/floor/grass, -/area/service/chapel/dock) "pvh" = ( /obj/structure/kitchenspike, /obj/effect/turf_decal/bot/left, @@ -59533,16 +60153,6 @@ icon_state = "platingdmg3" }, /area/maintenance/starboard/aft) -"pwt" = ( -/obj/structure/window/reinforced/spawner{ - dir = 1 - }, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/grassybush, -/mob/living/simple_animal/butterfly, -/turf/open/floor/grass, -/area/hallway/primary/fore) "pwv" = ( /obj/machinery/shower{ dir = 4 @@ -59612,25 +60222,6 @@ }, /turf/open/floor/iron/dark, /area/security/lockers) -"pxx" = ( -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark, -/area/hallway/primary/fore) "pyi" = ( /obj/effect/turf_decal/tile/brown{ dir = 1 @@ -59716,10 +60307,6 @@ /obj/effect/turf_decal/tile/brown, /turf/open/floor/iron, /area/cargo/office) -"pAv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/service/chapel/dock) "pAH" = ( /obj/effect/turf_decal/tile/red{ dir = 8 @@ -59759,21 +60346,12 @@ /obj/structure/mirror/directional/north, /turf/open/floor/iron/dark, /area/service/lawoffice) -"pBp" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) +"pBk" = ( +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/components/tank/air, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) "pBq" = ( /obj/effect/turf_decal/tile/blue/fourcorners, /obj/effect/turf_decal/tile/neutral, @@ -59831,12 +60409,6 @@ "pCD" = ( /turf/open/floor/iron, /area/cargo/storage) -"pCL" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/oxygen_input{ - dir = 4 - }, -/turf/open/floor/engine/o2, -/area/engineering/atmos) "pCV" = ( /obj/structure/rack, /obj/effect/turf_decal/bot, @@ -60068,11 +60640,6 @@ dir = 4 }, /area/cargo/qm) -"pEC" = ( -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/dark, -/area/service/chapel/storage) "pEM" = ( /obj/effect/turf_decal/tile/red, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -60155,13 +60722,6 @@ /obj/structure/dresser, /turf/open/floor/wood, /area/maintenance/starboard/fore) -"pFN" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = -32 - }, -/turf/open/floor/iron/dark, -/area/service/chapel/funeral) "pGg" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/iron/recharge_floor, @@ -60251,24 +60811,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/central) -"pHF" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Fore Hallway Monastary Hall"; - name = "fore camera" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/hallway/primary/central/fore) "pHG" = ( /obj/machinery/meter, /obj/effect/turf_decal/stripes/line, @@ -60294,17 +60836,6 @@ /obj/machinery/light/small/directional/north, /turf/open/floor/iron/dark, /area/cargo/miningoffice) -"pHP" = ( -/obj/machinery/door/poddoor/preopen{ - id = "transittube_ai"; - name = "Transit Tube Blast Door" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark, -/area/hallway/primary/central/fore) "pIf" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -60448,6 +60979,10 @@ /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/aft) +"pKG" = ( +/obj/machinery/air_sensor/mix_tank, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) "pLV" = ( /obj/structure/cable, /obj/structure/table, @@ -60464,17 +60999,6 @@ /obj/item/clothing/mask/gas, /turf/open/floor/iron/dark, /area/maintenance/disposal/incinerator) -"pLW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark/corner, -/area/hallway/primary/fore) "pLZ" = ( /obj/effect/spawner/random/structure/crate, /obj/effect/turf_decal/tile/neutral{ @@ -60504,6 +61028,27 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/security/courtroom) +"pMv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/status_display/ai/directional/west, +/obj/item/radio/intercom/directional/north{ + broadcasting = 1; + frequency = 1447; + name = "Private Channel"; + pixel_x = -26 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/iron, +/area/hallway/primary/starboard) "pMx" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/tile/yellow, @@ -60572,15 +61117,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/medical/medbay/lobby) -"pNS" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron/stairs{ - dir = 4 - }, -/area/service/chapel/funeral) "pOl" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -60841,11 +61377,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/starboard) -"pQT" = ( -/obj/machinery/light/directional/west, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark, -/area/service/chapel/monastery) "pQY" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -60857,10 +61388,31 @@ }, /turf/open/floor/iron/dark, /area/engineering/atmos) +"pRm" = ( +/turf/closed/wall/rust, +/area/service/chapel/office) +"pRo" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/iron/stairs/medium{ + dir = 1 + }, +/area/service/chapel/dock) "pRx" = ( /obj/structure/fluff/divine/nexus, /turf/open/floor/mineral/silver, /area/service/chapel/office) +"pRz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/hallway/primary/fore) "pRA" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -60888,6 +61440,10 @@ dir = 1 }, /area/hallway/primary/port) +"pRQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall, +/area/maintenance/port/fore) "pSm" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -60974,6 +61530,17 @@ /obj/structure/cable, /turf/open/floor/iron, /area/security/courtroom) +"pTz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/meter/layer2, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/aft) "pTC" = ( /obj/structure/chair/wood/wings{ dir = 8 @@ -61016,16 +61583,6 @@ }, /turf/open/floor/plating, /area/security/prison) -"pTR" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, -/obj/machinery/door/airlock/grunge{ - name = "Monastery Atmos" - }, -/obj/effect/turf_decal/siding/thinplating/dark, -/turf/open/floor/iron/smooth_large, -/area/maintenance/department/chapel/monastery) "pTV" = ( /obj/machinery/computer/secure_data, /obj/effect/turf_decal/bot, @@ -61033,16 +61590,6 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron/dark, /area/security/prison) -"pTW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark/corner, -/area/hallway/primary/fore) "pTY" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/structure/crate, @@ -61127,6 +61674,9 @@ /obj/effect/decal/cleanable/greenglow, /turf/open/floor/iron/dark, /area/engineering/gravity_generator) +"pVb" = ( +/turf/open/floor/iron/grimy, +/area/service/chapel/office) "pVp" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/mining/glass{ @@ -61182,6 +61732,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/engineering/atmos) +"pXo" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/service/chapel/monastery) "pXz" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/chair/office, @@ -61205,20 +61759,6 @@ /obj/machinery/light/small/directional/east, /turf/open/floor/plating, /area/maintenance/department/bridge) -"pXI" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/hallway/primary/fore) "pXO" = ( /obj/structure/rack, /obj/item/storage/bag/ore, @@ -61246,11 +61786,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/showroomfloor, /area/medical/medbay/central) -"pYI" = ( -/obj/structure/transit_tube/diagonal/topleft, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) "pYJ" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -61287,15 +61822,6 @@ }, /turf/open/floor/iron/dark, /area/engineering/supermatter/room) -"pZq" = ( -/obj/effect/spawner/random/vending/snackvend, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark/corner, -/area/hallway/primary/central/fore) "pZw" = ( /obj/machinery/door/poddoor/shutters/preopen{ id = "engineaccess"; @@ -61324,6 +61850,28 @@ /obj/effect/landmark/start/hangover/closet, /turf/open/floor/wood, /area/commons/locker) +"qag" = ( +/obj/structure/table, +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1447; + name = "Private AI Channel"; + pixel_y = -2 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen/minisat{ + dir = 1; + pixel_y = -28 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/hallway/primary/central/fore) "qax" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, @@ -61434,12 +61982,6 @@ /obj/item/crowbar, /turf/open/floor/iron/dark, /area/security/checkpoint/customs) -"qbM" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrous_input{ - dir = 1 - }, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) "qcg" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -61476,13 +62018,6 @@ /obj/effect/spawner/random/maintenance/two, /turf/open/floor/plating, /area/maintenance/port/greater) -"qcW" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/service/chapel/dock) "qdo" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment, @@ -61492,12 +62027,6 @@ /obj/structure/sign/departments/security, /turf/closed/wall, /area/maintenance/aft) -"qdT" = ( -/obj/effect/turf_decal/siding/thinplating/dark/end{ - dir = 4 - }, -/turf/open/floor/glass/reinforced, -/area/service/chapel/dock) "qdX" = ( /obj/structure/chair/pew/right{ dir = 8 @@ -61614,13 +62143,9 @@ }, /turf/open/floor/iron, /area/hallway/primary/starboard) -"qeZ" = ( -/obj/machinery/computer/atmos_control/incinerator{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/maintenance/disposal/incinerator) +"qfe" = ( +/turf/closed/wall/r_wall/rust, +/area/space/nearstation) "qfo" = ( /obj/effect/turf_decal/tile/purple{ dir = 8 @@ -61907,13 +62432,6 @@ }, /turf/open/floor/iron, /area/engineering/atmos) -"qiA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Chapel Hallway" - }, -/turf/open/floor/iron/dark, -/area/hallway/primary/fore) "qiQ" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -62019,6 +62537,10 @@ /obj/structure/cable, /turf/open/floor/circuit/red, /area/engineering/supermatter/room) +"qkX" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/iron, +/area/service/chapel/dock) "qlh" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -62055,12 +62577,6 @@ /obj/machinery/light/directional/east, /turf/open/floor/iron/dark, /area/service/kitchen) -"qmD" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/engine/hull/reinforced, -/area/space/nearstation) "qmM" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -62071,6 +62587,22 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/wood, /area/service/library) +"qmX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/components/binary/pump/on/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/hallway/primary/central/fore) "qnf" = ( /obj/machinery/computer/slot_machine, /obj/effect/turf_decal/tile/neutral{ @@ -62086,27 +62618,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/maintenance/port/greater) -"qnr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/status_display/ai/directional/west, -/obj/item/radio/intercom/directional/north{ - broadcasting = 1; - frequency = 1447; - name = "Private Channel"; - pixel_x = -26 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/hallway/primary/starboard) "qnv" = ( /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/brown{ @@ -62138,37 +62649,6 @@ }, /turf/open/floor/iron, /area/security/office) -"qnW" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L1" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/sign/directions/security{ - dir = 8; - pixel_y = 32 - }, -/obj/structure/sign/directions/medical{ - dir = 8; - pixel_y = 40 - }, -/obj/structure/sign/directions/command{ - dir = 8; - pixel_y = 24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "qoa" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -62309,11 +62789,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) -"qpB" = ( -/obj/effect/decal/remains/robot, -/obj/effect/decal/cleanable/oil/streak, -/turf/open/floor/iron/dark, -/area/service/chapel/storage) "qpN" = ( /obj/structure/plasticflaps/opaque, /obj/machinery/navbeacon{ @@ -62338,6 +62813,31 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron/dark, /area/commons/locker) +"qqh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L8" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Medical"; + location = "Upload"; + name = "Upload navigation beacon" + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "qqu" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -62370,6 +62870,15 @@ icon_state = "platingdmg1" }, /area/maintenance/port/greater) +"qrA" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/hallway/primary/central/fore) "qsb" = ( /turf/closed/wall/r_wall, /area/ai_monitored/command/storage/eva) @@ -62631,16 +63140,6 @@ /obj/structure/flora/rock, /turf/open/misc/asteroid/lowpressure, /area/space/nearstation) -"qvs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/iron/dark/corner, -/area/hallway/primary/central/fore) "qvt" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -62703,6 +63202,12 @@ }, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) +"qwn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/oxygen_output{ + dir = 4 + }, +/turf/open/floor/engine/o2, +/area/engineering/atmos) "qwx" = ( /obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ dir = 4 @@ -62710,6 +63215,17 @@ /obj/structure/grille, /turf/closed/wall/r_wall, /area/engineering/atmos) +"qwL" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/item/radio/intercom/directional/north, +/obj/structure/sign/departments/medbay/alt{ + pixel_x = -32 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark, +/area/hallway/primary/fore) "qwQ" = ( /obj/effect/turf_decal/tile/purple, /obj/effect/turf_decal/tile/purple{ @@ -62793,9 +63309,6 @@ dir = 4 }, /area/service/chapel/monastery) -"qyD" = ( -/turf/closed/wall/r_wall/rust, -/area/space/nearstation) "qza" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/neutral{ @@ -62874,6 +63387,18 @@ /obj/item/hand_labeler, /turf/open/floor/iron/dark, /area/cargo/storage) +"qAS" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "qAZ" = ( /obj/machinery/firealarm/directional/west, /obj/structure/dresser, @@ -63086,9 +63611,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/engineering/supermatter/room) -"qEx" = ( -/turf/closed/wall/rust, -/area/service/chapel/office) "qES" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -63164,10 +63686,12 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/security/lockers) -"qFB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall, -/area/maintenance/port/fore) +"qFI" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/service/chapel/monastery) "qFL" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/caution/stand_clear, @@ -63194,15 +63718,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/engineering/hallway) -"qGp" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/navbeacon/wayfinding/chapel, -/obj/structure/transit_tube/station/dispenser/reverse/flipped{ - dir = 8 - }, -/turf/open/floor/iron/grimy, -/area/hallway/primary/fore) "qGy" = ( /turf/closed/wall/r_wall, /area/engineering/main) @@ -63253,18 +63768,6 @@ "qHe" = ( /turf/closed/wall/r_wall/rust, /area/ai_monitored/command/storage/eva) -"qHl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "qHA" = ( /obj/structure/chair/comfy/brown{ buildstackamount = 0; @@ -63313,13 +63816,6 @@ }, /turf/open/floor/iron, /area/engineering/lobby) -"qIm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/iron/smooth_large, -/area/maintenance/department/chapel/monastery) "qIB" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 4 @@ -63497,6 +63993,22 @@ "qKl" = ( /turf/closed/wall/r_wall, /area/engineering/lobby) +"qKo" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/hallway/primary/fore) "qKJ" = ( /obj/effect/turf_decal/bot, /obj/machinery/conveyor{ @@ -63547,24 +64059,6 @@ }, /turf/open/floor/plating, /area/service/lawoffice) -"qLn" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "qLt" = ( /obj/item/kirbyplants{ icon_state = "plant-05" @@ -63611,20 +64105,9 @@ /obj/machinery/duct, /turf/open/floor/iron/showroomfloor, /area/service/bar/atrium) -"qLP" = ( -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/meter/atmos/layer4{ - name = "gas flow meter" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard) +"qLS" = ( +/turf/closed/wall/rust, +/area/hallway/primary/fore) "qMa" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -63638,6 +64121,17 @@ "qMl" = ( /turf/closed/wall, /area/maintenance/department/chapel/monastery) +"qMn" = ( +/obj/machinery/camera/autoname/directional/east, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/iron/grimy, +/area/service/chapel/office) "qMu" = ( /obj/structure/table/reinforced, /obj/item/clipboard, @@ -63773,6 +64267,18 @@ /obj/structure/sign/departments/security, /turf/closed/wall/r_wall/rust, /area/ai_monitored/command/nuke_storage) +"qPR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/hallway/primary/central/fore) "qPV" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -63845,18 +64351,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/maintenance/disposal/incinerator) -"qQQ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/bot, -/obj/machinery/vending/cigarette, -/turf/open/floor/iron/dark, -/area/hallway/primary/central/fore) "qQX" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -64080,20 +64574,6 @@ }, /turf/open/floor/engine, /area/ai_monitored/turret_protected/ai) -"qVa" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "qVc" = ( /obj/structure/transit_tube/crossing, /obj/structure/disposalpipe/segment{ @@ -64129,10 +64609,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/cargo/drone_bay) -"qWb" = ( -/obj/structure/window/reinforced/spawner, -/turf/open/misc/asteroid/airless, -/area/space/nearstation) "qWg" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -64155,6 +64631,16 @@ }, /turf/open/floor/iron, /area/security/office) +"qWm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/corner, +/area/hallway/primary/central/fore) "qWr" = ( /obj/effect/turf_decal/tile/brown{ dir = 4 @@ -64271,6 +64757,16 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/iron/dark, /area/security/courtroom) +"qXU" = ( +/obj/structure/window/reinforced/spawner{ + dir = 4 + }, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/leafybush, +/mob/living/simple_animal/butterfly, +/turf/open/floor/grass, +/area/hallway/primary/fore) "qYS" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -64380,6 +64876,24 @@ }, /turf/open/floor/iron/dark, /area/cargo/drone_bay) +"qZQ" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Fore Hallway Monastary Hall"; + name = "fore camera" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/hallway/primary/central/fore) "qZU" = ( /obj/structure/table, /obj/item/storage/toolbox/electrical, @@ -64406,25 +64920,6 @@ /obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/iron, /area/hallway/primary/starboard) -"qZZ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/sorting/mail{ - dir = 4; - name = "library sorting disposal pipe"; - sortType = 16 - }, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "rai" = ( /obj/structure/chair/sofa/right, /obj/structure/sign/poster/official/love_ian{ @@ -64633,11 +65128,30 @@ /obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/dark, /area/engineering/atmos/storage/gas) +"rcL" = ( +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "rcO" = ( /obj/structure/fans/tiny, /obj/machinery/door/poddoor/massdriver_chapel, /turf/open/floor/plating, /area/service/chapel/funeral) +"rcR" = ( +/obj/machinery/light/directional/west, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark, +/area/service/chapel/monastery) "rcU" = ( /obj/effect/turf_decal/tile/purple, /obj/effect/turf_decal/tile/purple{ @@ -64714,6 +65228,15 @@ /obj/structure/sign/poster/contraband/missing_gloves, /turf/closed/wall/rust, /area/maintenance/port/greater) +"rdR" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/hallway/primary/central/fore) "rdS" = ( /obj/machinery/computer/pod/old/mass_driver_controller/chapelgun{ pixel_x = 30 @@ -64785,6 +65308,26 @@ }, /turf/open/floor/iron/dark, /area/engineering/main) +"reH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L10" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "reJ" = ( /obj/effect/turf_decal/tile/brown{ dir = 1 @@ -64804,6 +65347,23 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/iron, /area/construction/mining/aux_base) +"reW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/sign/poster/official/random/directional/south, +/turf/open/floor/iron/dark/corner, +/area/hallway/primary/central/fore) "rfl" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -64855,6 +65415,12 @@ /obj/structure/cable, /turf/open/floor/iron, /area/command/bridge) +"rfY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/plasma_output{ + dir = 1 + }, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) "rfZ" = ( /obj/effect/turf_decal/tile/purple, /obj/effect/turf_decal/tile/purple{ @@ -64983,6 +65549,18 @@ /obj/machinery/status_display/ai/directional/north, /turf/open/floor/iron/dark, /area/security/detectives_office) +"rhJ" = ( +/obj/machinery/mech_bay_recharge_port{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 6 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron, +/area/service/chapel/storage) "rhW" = ( /obj/effect/turf_decal/tile/purple{ dir = 1 @@ -65505,6 +66083,9 @@ /obj/item/hfr_box/corner, /turf/open/floor/iron, /area/maintenance/disposal/incinerator) +"rpj" = ( +/turf/closed/wall/rust, +/area/service/chapel/funeral) "rpk" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -65567,6 +66148,17 @@ }, /turf/open/floor/grass, /area/command/heads_quarters/hop) +"rrE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron/stairs, +/area/service/chapel/monastery) "rrF" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/effect/decal/cleanable/dirt, @@ -65668,20 +66260,6 @@ }, /turf/open/floor/iron/dark, /area/security/interrogation) -"rtJ" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/iron/stairs/right{ - dir = 1 - }, -/area/service/chapel/dock) "rtO" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -65870,25 +66448,6 @@ icon_state = "platingdmg3" }, /area/maintenance/starboard/aft) -"rxd" = ( -/obj/structure/chair/sofa/bench/left{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron/dark, -/area/hallway/primary/fore) "rxg" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -65918,36 +66477,6 @@ }, /turf/open/floor/iron/dark, /area/maintenance/department/crew_quarters/bar) -"ryb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Fore Hallway Robotics Bay"; - name = "fore camera" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark/corner, -/area/hallway/primary/central/fore) -"ryG" = ( -/obj/structure/transit_tube/curved{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/airless, -/area/space/nearstation) "ryL" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -66056,6 +66585,11 @@ /obj/effect/landmark/start/detective, /turf/open/floor/iron/dark, /area/security/detectives_office) +"rzX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark, +/area/service/chapel/dock) "rAl" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -66092,12 +66626,6 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/command/storage/eva) -"rAt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "rAy" = ( /obj/structure/chair/comfy/brown{ buildstackamount = 0; @@ -66143,6 +66671,10 @@ icon_state = "panelscorched" }, /area/maintenance/fore) +"rBj" = ( +/obj/structure/transit_tube/curved/flipped, +/turf/open/space/basic, +/area/space/nearstation) "rBq" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -66217,18 +66749,6 @@ }, /turf/open/floor/iron/dark, /area/command/bridge) -"rCm" = ( -/obj/structure/chair/sofa/bench{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/hallway/primary/fore) "rCp" = ( /obj/structure/girder/displaced, /obj/structure/grille/broken, @@ -66336,20 +66856,6 @@ }, /turf/closed/wall/rust, /area/engineering/atmos) -"rDD" = ( -/obj/structure/chair/sofa/bench{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/hallway/primary/central/fore) "rDU" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -66400,6 +66906,18 @@ }, /turf/open/floor/iron/showroomfloor, /area/medical/virology) +"rEL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/hallway/primary/fore) "rEP" = ( /obj/structure/filingcabinet/chestdrawer, /obj/effect/turf_decal/bot, @@ -66439,15 +66957,6 @@ /obj/machinery/computer/med_data/laptop, /turf/open/floor/carpet/red, /area/command/heads_quarters/hos) -"rEW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "rFc" = ( /obj/effect/turf_decal/bot, /obj/structure/table, @@ -66539,6 +67048,16 @@ /obj/structure/railing/corner, /turf/open/floor/iron/dark, /area/service/chapel/monastery) +"rGn" = ( +/obj/effect/turf_decal/siding/thinplating/dark, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/obj/structure/window/spawner, +/obj/structure/window/spawner/north, +/obj/structure/flora/rock/pile, +/turf/open/floor/grass, +/area/service/chapel/dock) "rGo" = ( /turf/closed/wall/r_wall/rust, /area/maintenance/starboard) @@ -66672,16 +67191,6 @@ }, /turf/open/floor/iron/dark, /area/cargo/sorting) -"rHE" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/light/small/directional/east, -/turf/open/floor/iron/stairs{ - dir = 1 - }, -/area/service/chapel/monastery) "rHL" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -66818,12 +67327,6 @@ icon_state = "platingdmg3" }, /area/maintenance/port/greater) -"rJD" = ( -/obj/effect/turf_decal/siding/thinplating/light{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/service/chapel/dock) "rJG" = ( /turf/closed/wall, /area/command/heads_quarters/rd) @@ -66882,6 +67385,11 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron/dark, /area/engineering/main) +"rKy" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/closet/emcloset/anchored, +/turf/open/floor/plating, +/area/service/chapel/dock) "rKA" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -66931,12 +67439,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/showroomfloor, /area/medical/chemistry) -"rLl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/service/chapel/dock) "rLy" = ( /obj/structure/table, /obj/item/folder/blue{ @@ -67073,18 +67575,6 @@ /obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/iron/dark, /area/commons/fitness/recreation) -"rOf" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "rOo" = ( /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/brown{ @@ -67130,10 +67620,6 @@ }, /turf/open/floor/iron/dark, /area/hallway/primary/starboard) -"rPD" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/hallway/primary/central/fore) "rPI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -67156,12 +67642,6 @@ }, /turf/open/floor/wood, /area/command/heads_quarters/hop) -"rPS" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark, -/area/hallway/primary/central/fore) "rPY" = ( /obj/effect/turf_decal/stripes/end{ dir = 8 @@ -67173,6 +67653,18 @@ }, /turf/open/floor/plating, /area/science/mixing/launch) +"rQe" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/hallway/primary/central/fore) "rQf" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -67188,6 +67680,12 @@ }, /turf/open/floor/iron/showroomfloor, /area/medical/medbay/lobby) +"rQg" = ( +/obj/structure/table/wood/fancy/black, +/obj/machinery/firealarm/directional/east, +/obj/item/storage/fancy/candle_box, +/turf/open/floor/iron/dark, +/area/service/chapel/dock) "rQj" = ( /obj/effect/turf_decal/arrows/white{ dir = 4 @@ -67347,20 +67845,6 @@ }, /turf/open/floor/glass/reinforced, /area/service/chapel/monastery) -"rTs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "rTw" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -67500,6 +67984,17 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark, /area/engineering/lobby) +"rVX" = ( +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/service/chapel/funeral) "rWj" = ( /obj/effect/turf_decal/tile/yellow{ dir = 1 @@ -67662,19 +68157,6 @@ /obj/item/kirbyplants/random, /turf/open/floor/iron/dark/corner, /area/hallway/primary/starboard) -"rXS" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/fore) "rYE" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -67724,6 +68206,12 @@ /obj/structure/sign/poster/contraband/random/directional/south, /turf/open/floor/iron/freezer, /area/service/kitchen/coldroom) +"saq" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/maintenance/department/chapel/monastery) "sar" = ( /obj/structure/table, /obj/effect/turf_decal/tile/red{ @@ -67889,6 +68377,16 @@ icon_state = "panelscorched" }, /area/maintenance/fore) +"sbZ" = ( +/obj/structure/window/reinforced/spawner{ + dir = 1 + }, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/grassybush, +/mob/living/simple_animal/butterfly, +/turf/open/floor/grass, +/area/hallway/primary/fore) "scf" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -68025,15 +68523,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/maintenance/fore) -"sdX" = ( -/obj/effect/turf_decal/siding/wood, -/obj/structure/cable, -/obj/machinery/firealarm/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet/red, -/area/service/chapel/monastery) "sdZ" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -68060,6 +68549,20 @@ icon_state = "platingdmg1" }, /area/security/prison) +"sej" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "sel" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral, @@ -68130,9 +68633,28 @@ /obj/effect/turf_decal/siding/purple/corner, /turf/open/floor/iron/dark, /area/science/genetics) -"sfo" = ( -/turf/closed/wall/r_wall/rust, -/area/service/chapel/storage) +"seX" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/hallway/primary/central/fore) "sfF" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -68154,6 +68676,20 @@ /obj/structure/dresser, /turf/open/floor/wood, /area/commons/locker) +"sgs" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/visible{ + dir = 8 + }, +/obj/machinery/meter/monitored/distro_loop, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/engineering/atmos/pumproom) "sgE" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -68310,46 +68846,6 @@ }, /turf/open/floor/iron/dark, /area/engineering/lobby) -"siG" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/obj/machinery/computer/atmos_control/tank/nitrogen_tank{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/engineering/atmos) -"siR" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/meter/atmos/atmos_waste_loop, -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/turf/open/floor/iron/dark, -/area/engineering/atmos/pumproom) "sjd" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -68376,13 +68872,6 @@ }, /turf/open/floor/iron/dark, /area/engineering/atmos/pumproom) -"sjz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/service/chapel/dock) "sjL" = ( /obj/structure/table/glass, /obj/effect/turf_decal/tile/blue, @@ -68429,10 +68918,6 @@ /obj/structure/table, /turf/open/floor/iron/dark, /area/commons/locker) -"sko" = ( -/obj/machinery/air_sensor/atmos/nitrogen_tank, -/turf/open/floor/engine/n2, -/area/engineering/atmos) "skt" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/event_spawn, @@ -68730,6 +69215,12 @@ }, /turf/open/floor/iron, /area/command/gateway) +"snV" = ( +/obj/effect/turf_decal/siding/thinplating/light{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/service/chapel/dock) "som" = ( /obj/structure/chair/comfy/brown{ dir = 4 @@ -68822,24 +69313,18 @@ /obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, /area/science/genetics) -"sqc" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ +"sqm" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/wideplating/dark{ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/iron, -/area/hallway/primary/fore) +/turf/open/floor/iron/dark, +/area/service/chapel/dock) "sqr" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -68899,19 +69384,6 @@ }, /turf/open/floor/iron/dark, /area/medical/medbay/central) -"src" = ( -/obj/effect/spawner/random/vending/snackvend, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/airalarm/directional/east, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/dark, -/area/hallway/primary/central/fore) "srf" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -68959,6 +69431,25 @@ /obj/item/radio/intercom/directional/north, /turf/open/floor/wood, /area/service/theater) +"ssb" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L11" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "ssk" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -69035,18 +69526,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"stS" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "stT" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -69058,15 +69537,6 @@ }, /turf/open/floor/iron/dark, /area/science/mixing/launch) -"stX" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "stY" = ( /obj/structure/disposalpipe/segment{ dir = 9 @@ -69199,10 +69669,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"swi" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port/fore) "swn" = ( /obj/structure/sign/warning/electricshock, /turf/closed/wall/rust, @@ -69213,25 +69679,6 @@ /obj/structure/sign/poster/contraband/random/directional/south, /turf/open/floor/plating, /area/maintenance/port/greater) -"sww" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L11" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/status_display/evac/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "swJ" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/effect/turf_decal/delivery, @@ -69240,13 +69687,6 @@ }, /turf/open/floor/iron/dark, /area/science/storage) -"sxd" = ( -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/reedbush, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/machinery/light/directional/south, -/turf/open/floor/grass, -/area/hallway/primary/fore) "sxk" = ( /obj/structure/easel, /obj/item/canvas/nineteen_nineteen, @@ -69374,6 +69814,20 @@ }, /turf/open/floor/iron/dark, /area/service/bar) +"syN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "syQ" = ( /obj/structure/table, /obj/item/paper_bin, @@ -69454,6 +69908,16 @@ /obj/machinery/newscaster/security_unit/directional/south, /turf/open/floor/iron/dark, /area/service/library) +"sAw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "sAP" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -69461,9 +69925,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark, /area/maintenance/port/greater) -"sBg" = ( -/turf/closed/wall/r_wall/rust, -/area/service/chapel/monastery) "sBj" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/tile/red, @@ -69496,10 +69957,6 @@ }, /turf/open/floor/iron, /area/command/bridge) -"sBC" = ( -/obj/structure/chair/bronze, -/turf/open/floor/bronze, -/area/maintenance/department/chapel) "sBE" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, @@ -69623,21 +70080,6 @@ /obj/item/radio/intercom/directional/east, /turf/open/floor/iron/dark, /area/maintenance/port/greater) -"sDv" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/hallway/primary/fore) "sDH" = ( /obj/structure/table, /obj/item/storage/box/prisoner, @@ -69731,17 +70173,6 @@ luminosity = 2 }, /area/ai_monitored/turret_protected/ai_upload) -"sFx" = ( -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 1 - }, -/obj/structure/window/spawner, -/obj/structure/window/spawner/north, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/open/floor/grass, -/area/service/chapel/dock) "sFD" = ( /obj/effect/turf_decal/tile/purple, /obj/effect/turf_decal/tile/purple{ @@ -69906,12 +70337,16 @@ /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/solars/starboard/aft) -"sHA" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/oxygen_output{ +"sHF" = ( +/obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/turf/open/floor/engine/o2, -/area/engineering/atmos) +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/hallway/primary/fore) "sHP" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -70013,9 +70448,6 @@ }, /turf/open/floor/iron/dark, /area/cargo/storage) -"sJY" = ( -/turf/closed/wall/rust, -/area/hallway/primary/fore) "sKj" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, @@ -70181,6 +70613,9 @@ }, /turf/open/floor/iron/showroomfloor, /area/security/brig) +"sMs" = ( +/turf/open/floor/iron/dark, +/area/service/chapel/funeral) "sMy" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -70209,6 +70644,22 @@ }, /turf/open/floor/iron, /area/hallway/primary/aft) +"sMK" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "sMR" = ( /obj/machinery/atmospherics/components/binary/pump/on{ dir = 8; @@ -70237,6 +70688,13 @@ /obj/structure/sign/poster/contraband/random/directional/south, /turf/open/floor/plating, /area/cargo/storage) +"sNL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/iron/dark/corner, +/area/hallway/primary/central/fore) "sNR" = ( /obj/machinery/power/turbine{ dir = 4; @@ -70286,25 +70744,6 @@ icon_state = "panelscorched" }, /area/maintenance/port/greater) -"sPA" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "sPO" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -70316,20 +70755,6 @@ }, /turf/open/floor/iron, /area/security/brig) -"sQn" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/hallway/primary/fore) "sQs" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -70398,6 +70823,17 @@ /obj/structure/disposalpipe/trunk, /turf/open/floor/iron/dark, /area/commons/fitness/recreation) +"sRd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/hallway/primary/central/fore) "sRi" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ @@ -70567,14 +71003,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/maintenance/department/bridge) -"sSM" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/light/directional/north, -/turf/open/floor/carpet/royalblue, -/area/service/chapel/office) "sSO" = ( /turf/closed/wall, /area/engineering/lobby) @@ -70587,10 +71015,6 @@ }, /turf/open/floor/iron, /area/service/hydroponics) -"sTc" = ( -/obj/structure/transit_tube/curved/flipped, -/turf/open/space/basic, -/area/space/nearstation) "sTf" = ( /obj/machinery/door/airlock/command{ name = "Command Catering Access"; @@ -70608,16 +71032,6 @@ /obj/structure/cable, /turf/open/floor/plating/airless, /area/solars/starboard/fore) -"sTl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/iron/dark/corner, -/area/hallway/primary/central/fore) "sTp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -70630,6 +71044,13 @@ icon_state = "platingdmg1" }, /area/maintenance/port/fore) +"sTJ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/carpet/red, +/area/service/chapel/monastery) "sTL" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/maintenance, @@ -70654,6 +71075,9 @@ /obj/machinery/atmospherics/pipe/smart/simple/green/visible, /turf/closed/wall, /area/engineering/atmos/pumproom) +"sUx" = ( +/turf/closed/wall/r_wall/rust, +/area/service/chapel/storage) "sUB" = ( /obj/machinery/atmospherics/components/unary/passive_vent{ dir = 8 @@ -70706,18 +71130,21 @@ icon_state = "platingdmg3" }, /area/maintenance/starboard) -"sXd" = ( -/obj/machinery/camera/autoname/directional/north, -/turf/open/floor/iron/dark, -/area/service/chapel/monastery) "sXv" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/showroomfloor, /area/medical/chemistry) -"sXH" = ( -/turf/closed/wall, -/area/hallway/primary/central/fore) +"sXN" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/machinery/door/morgue{ + name = "Coffin Storage"; + req_access_txt = "22" + }, +/turf/open/floor/iron/dark, +/area/service/chapel/funeral) "sYc" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -70833,6 +71260,11 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron, /area/engineering/atmos/storage/gas) +"tap" = ( +/obj/machinery/light/directional/east, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark, +/area/service/chapel/dock) "tas" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -70942,15 +71374,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/maintenance/disposal/incinerator) -"tcy" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/service/chapel/funeral) "tcG" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -70977,6 +71400,18 @@ /obj/effect/turf_decal/tile/brown, /turf/open/floor/iron, /area/cargo/drone_bay) +"tcN" = ( +/obj/structure/chair/sofa/bench{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/hallway/primary/fore) "tdd" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, @@ -71010,6 +71445,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/engineering/atmos) +"tdN" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/service/chapel/dock) "tdW" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -71042,16 +71484,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/command/heads_quarters/hos) -"tej" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 8 - }, -/turf/open/floor/iron/grimy, -/area/service/chapel/office) "tev" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/newscaster/directional/east, @@ -71079,6 +71511,19 @@ }, /turf/open/floor/iron/dark, /area/engineering/supermatter/room) +"teW" = ( +/obj/effect/spawner/structure/window/hollow/reinforced/middle{ + dir = 4 + }, +/obj/structure/transit_tube/horizontal, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/service/chapel/dock) "tfm" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -71115,10 +71560,12 @@ /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plating, /area/commons/fitness/recreation) -"tfF" = ( -/obj/machinery/newscaster/directional/north, +"tfD" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/robot_debris, +/obj/effect/decal/cleanable/oil/streak, /turf/open/floor/iron/dark, -/area/service/chapel/dock) +/area/service/chapel/storage) "tfL" = ( /obj/structure/sign/departments/xenobio, /turf/closed/wall, @@ -71194,6 +71641,30 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/engineering/atmos) +"tgH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/directions/science{ + dir = 4; + pixel_x = -32; + pixel_y = 8 + }, +/obj/structure/sign/directions/supply{ + pixel_x = -32 + }, +/obj/structure/sign/directions/engineering{ + pixel_x = -32; + pixel_y = -8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "tgK" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -71235,34 +71706,6 @@ "thE" = ( /turf/open/floor/engine/o2, /area/engineering/atmos) -"thG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L10" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) -"thN" = ( -/obj/structure/railing, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/iron/dark, -/area/service/chapel/dock) "thU" = ( /mob/living/simple_animal/hostile/asteroid/goliath, /turf/open/misc/asteroid/lowpressure, @@ -71425,28 +71868,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/port/lesser) -"tlr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/camera/directional/south{ - c_tag = "Fore Hallway Vault"; - name = "fore camera" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/camera/directional/south{ - c_tag = "Fore Hallway Vault"; - name = "fore camera" - }, -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/iron/dark/corner, -/area/hallway/primary/central/fore) "tlv" = ( /obj/machinery/door/airlock/external{ name = "Supply Dock Airlock"; @@ -71524,25 +71945,31 @@ /obj/effect/spawner/structure/window/reinforced/plasma, /turf/open/floor/plating, /area/engineering/atmos) +"tmu" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L3" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "tna" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/engineering/atmos/pumproom) -"tnB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/south, -/obj/structure/sign/departments/botany{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "tnH" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -71567,6 +71994,11 @@ }, /turf/open/floor/iron/dark, /area/service/chapel/funeral) +"tnY" = ( +/obj/machinery/light/directional/north, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark, +/area/service/chapel/monastery) "tof" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -71753,11 +72185,6 @@ }, /turf/open/misc/asteroid, /area/space/nearstation) -"trP" = ( -/obj/machinery/airalarm/directional/south, -/obj/machinery/camera/autoname/directional/south, -/turf/open/floor/iron/dark, -/area/service/chapel/funeral) "tsd" = ( /obj/machinery/door/poddoor/shutters{ id = "custodialwagon"; @@ -71848,18 +72275,6 @@ /obj/machinery/door/poddoor/atmos_test_room_mainvent_1, /turf/open/floor/engine/vacuum, /area/maintenance/disposal/incinerator) -"ttH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/hallway/primary/fore) "ttO" = ( /obj/machinery/holopad, /obj/effect/turf_decal/bot, @@ -71998,18 +72413,6 @@ icon_state = "panelscorched" }, /area/maintenance/port/lesser) -"tvh" = ( -/obj/structure/cable, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/service/chapel/dock) "tvp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -72033,21 +72436,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/maintenance/disposal/incinerator) -"tvF" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/hallway/primary/fore) "tvH" = ( /obj/structure/lattice, /obj/machinery/atmospherics/components/unary/passive_vent{ @@ -72125,17 +72513,6 @@ /obj/structure/railing/corner, /turf/open/floor/iron/showroomfloor, /area/service/bar/atrium) -"txm" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/meter/atmos/layer4{ - name = "gas flow meter" - }, -/turf/open/floor/plating, -/area/maintenance/starboard) "txq" = ( /obj/machinery/airalarm/directional/north, /obj/effect/turf_decal/tile/neutral, @@ -72204,25 +72581,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/showroomfloor, /area/science/mixing/launch) -"tyo" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/hallway/primary/central/fore) "tyC" = ( /obj/effect/spawner/random/vending/colavend, /obj/effect/turf_decal/bot, @@ -72261,6 +72619,12 @@ }, /turf/open/floor/engine, /area/ai_monitored/turret_protected/ai_upload) +"tzf" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/iron/dark, +/area/hallway/primary/central/fore) "tzn" = ( /obj/machinery/door/airlock/maintenance{ name = "supermatter maintenance"; @@ -72271,12 +72635,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/maintenance/starboard/aft) -"tzx" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/air_input{ - dir = 4 +"tzC" = ( +/obj/structure/railing{ + dir = 1 }, -/turf/open/floor/engine/air, -/area/engineering/atmos) +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/service/chapel/dock) "tzO" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -72297,6 +72664,18 @@ }, /turf/open/floor/iron, /area/hallway/primary/starboard) +"tzS" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/north, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/iron/stairs/right{ + dir = 4 + }, +/area/service/chapel/dock) "tzU" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -72391,11 +72770,6 @@ /obj/structure/noticeboard/directional/east, /turf/open/floor/plating, /area/commons/vacant_room/commissary) -"tBh" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/service/chapel/dock) "tBL" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -72406,10 +72780,6 @@ icon_state = "panelscorched" }, /area/maintenance/port/greater) -"tCc" = ( -/obj/effect/decal/cleanable/robot_debris, -/turf/closed/wall/r_wall/rust, -/area/service/chapel/dock) "tCf" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -72465,6 +72835,13 @@ /obj/effect/turf_decal/siding/wideplating/dark/corner, /turf/open/floor/iron/dark, /area/service/chapel/monastery) +"tCP" = ( +/obj/structure/table/wood, +/obj/structure/cable, +/obj/item/pen/fountain, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/grimy, +/area/service/chapel/office) "tDd" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -72480,6 +72857,24 @@ /obj/structure/sign/poster/random/directional/north, /turf/open/floor/plating, /area/maintenance/department/bridge) +"tDQ" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/north{ + pixel_x = -4 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/hallway/primary/central/fore) "tDR" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -72520,6 +72915,13 @@ icon_state = "platingdmg3" }, /area/maintenance/port/lesser) +"tET" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/airalarm/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/structure/cable, +/turf/open/floor/iron/smooth_large, +/area/maintenance/department/chapel/monastery) "tEZ" = ( /obj/structure/rack, /obj/effect/turf_decal/tile/neutral{ @@ -72613,19 +73015,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/maintenance/department/medical/central) -"tGL" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "tHk" = ( /turf/closed/wall, /area/hallway/secondary/service) @@ -72692,23 +73081,6 @@ /obj/structure/sign/warning/docking, /turf/closed/wall/rust, /area/cargo/miningoffice) -"tId" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "tIj" = ( /obj/effect/turf_decal/tile/purple{ dir = 8 @@ -72834,9 +73206,8 @@ }, /turf/open/floor/engine, /area/engineering/supermatter) -"tJm" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/iron, +"tJi" = ( +/turf/closed/wall/r_wall/rust, /area/service/chapel/dock) "tJs" = ( /obj/machinery/camera/directional/west{ @@ -73115,26 +73486,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/maintenance/department/crew_quarters/bar) -"tMH" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/obj/machinery/computer/atmos_control/tank/nitrous_tank{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/engineering/atmos) "tMM" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/disposalpipe/segment, @@ -73283,6 +73634,16 @@ }, /turf/open/floor/iron/dark, /area/security/execution/education) +"tOD" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/service/chapel/funeral) "tON" = ( /obj/machinery/modular_computer/console/preset/cargochat/engineering, /turf/open/floor/iron/dark, @@ -73295,6 +73656,18 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/command/heads_quarters/hop) +"tQw" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/hallway/primary/central/fore) "tQX" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -73513,13 +73886,6 @@ }, /turf/open/floor/iron/dark, /area/science/xenobiology) -"tUi" = ( -/obj/structure/bodycontainer/crematorium, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron/dark/textured_large, -/area/service/chapel/funeral) "tUl" = ( /obj/structure/rack, /obj/effect/spawner/random/techstorage/service_all, @@ -73531,17 +73897,6 @@ /obj/machinery/status_display/ai/directional/north, /turf/open/floor/iron/dark, /area/engineering/storage/tech) -"tUy" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags{ - pixel_x = 6 - }, -/obj/item/storage/box/gloves{ - pixel_x = -5 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/dark, -/area/service/chapel/funeral) "tUF" = ( /obj/structure/closet/secure_closet/research_director, /obj/effect/turf_decal/delivery, @@ -73564,6 +73919,21 @@ /obj/structure/sign/poster/contraband/random/directional/west, /turf/open/floor/plating, /area/maintenance/aft) +"tUT" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "tUU" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, @@ -73621,6 +73991,29 @@ /obj/machinery/light/directional/west, /turf/open/floor/iron/showroomfloor, /area/medical/chemistry) +"tVB" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/button/door/directional/north{ + id = "transittube_ai"; + name = "Transit Tube Lockdown Toggle"; + req_access_txt = "19" + }, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "tVI" = ( /obj/effect/turf_decal/stripes/corner, /obj/effect/turf_decal/stripes/corner{ @@ -73654,25 +74047,6 @@ /obj/machinery/holopad, /turf/open/floor/iron, /area/maintenance/disposal/incinerator) -"tXn" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/box, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "tXs" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/sink{ @@ -73819,6 +74193,18 @@ dir = 8 }, /area/hallway/primary/port) +"tZq" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/south, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/iron/stairs/left{ + dir = 4 + }, +/area/service/chapel/dock) "tZH" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 @@ -73896,25 +74282,6 @@ }, /turf/open/floor/iron/freezer, /area/service/kitchen/coldroom) -"uaq" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/sign/departments/science{ - pixel_x = 32; - pixel_y = 32 - }, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "uar" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/tile/neutral, @@ -73954,6 +74321,12 @@ }, /turf/open/floor/iron, /area/engineering/hallway) +"uaB" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/carbon_output{ + dir = 1 + }, +/turf/open/floor/engine/co2, +/area/engineering/atmos) "uaJ" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -74028,17 +74401,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/science/research) -"ucb" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/iron/stairs/medium{ - dir = 4 - }, -/area/service/chapel/dock) "ucn" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -74075,16 +74437,6 @@ /obj/machinery/holopad, /turf/open/floor/iron/showroomfloor, /area/medical/surgery/aft) -"ucS" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/hallway/primary/fore) "ucW" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -74146,9 +74498,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/maintenance/starboard/aft) -"udE" = ( -/turf/closed/wall/r_wall/rust, -/area/service/chapel/dock) "udM" = ( /obj/structure/railing/corner{ dir = 4 @@ -74448,11 +74797,6 @@ /obj/structure/reagent_dispensers/wall/peppertank/directional/south, /turf/open/floor/iron/dark, /area/security/checkpoint/medical) -"uiq" = ( -/obj/machinery/light/directional/east, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark, -/area/service/chapel/dock) "uiE" = ( /obj/machinery/ai_slipper{ uses = 8 @@ -74486,6 +74830,16 @@ /obj/machinery/firealarm/directional/east, /turf/open/floor/iron/dark, /area/medical/virology) +"uiQ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/carpet/red, +/area/service/chapel/monastery) "uiT" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -74505,12 +74859,6 @@ }, /turf/open/misc/asteroid, /area/space/nearstation) -"ujf" = ( -/obj/structure/table/bronze, -/obj/machinery/light/small/directional/west, -/obj/item/toy/plush/ratplush, -/turf/open/floor/bronze/filled, -/area/maintenance/department/chapel) "uju" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/bot, @@ -74643,13 +74991,6 @@ icon_state = "platingdmg3" }, /area/maintenance/starboard/fore) -"uli" = ( -/obj/structure/cable, -/obj/machinery/power/terminal{ - dir = 8 - }, -/turf/open/floor/catwalk_floor/iron_smooth, -/area/maintenance/department/chapel/monastery) "ulw" = ( /obj/effect/turf_decal/tile/neutral, /obj/item/kirbyplants, @@ -74664,6 +75005,20 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/security/prison/safe) +"umn" = ( +/obj/structure/table/wood/fancy, +/obj/machinery/light/directional/west, +/obj/item/food/grown/harebell, +/obj/item/food/grown/harebell{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/food/grown/harebell{ + pixel_x = -3; + pixel_y = 3 + }, +/turf/open/floor/iron/dark, +/area/service/chapel/dock) "umo" = ( /obj/machinery/conveyor_switch/oneway{ dir = 8; @@ -74700,15 +75055,6 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/service/hydroponics) -"uns" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/incinerator_input{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) "unt" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, @@ -74779,18 +75125,6 @@ /obj/item/clothing/glasses/hud/health, /turf/open/floor/iron/showroomfloor, /area/command/heads_quarters/cmo) -"uoE" = ( -/turf/open/floor/iron/grimy, -/area/service/chapel/office) -"uoK" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/catwalk_floor/iron_dark, -/area/service/chapel/dock) "uoT" = ( /obj/structure/disposaloutlet{ dir = 4 @@ -74805,16 +75139,6 @@ }, /turf/open/floor/iron/dark, /area/service/janitor) -"upg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/door/airlock/public/glass{ - name = "Chapel Hallway" - }, -/turf/open/floor/iron/dark, -/area/hallway/primary/fore) "upr" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/neutral, @@ -74919,23 +75243,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/science/research) -"uqU" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/machinery/camera/autoname/directional/south, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/iron/stairs/left{ - dir = 4 - }, -/area/service/chapel/dock) -"urw" = ( -/obj/machinery/camera/autoname/directional/west, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/dark, -/area/service/chapel/funeral) "urA" = ( /obj/effect/turf_decal/sand/plating, /obj/structure/disposalpipe/segment, @@ -75053,25 +75360,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/science/mixing) -"uup" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/box, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "uuz" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -75150,6 +75438,19 @@ /obj/structure/cable, /turf/open/floor/iron, /area/command/gateway) +"uvt" = ( +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "uvz" = ( /obj/structure/sign/warning/electricshock, /turf/closed/wall/r_wall, @@ -75280,23 +75581,6 @@ "uxN" = ( /turf/closed/wall/r_wall, /area/ai_monitored/command/nuke_storage) -"uxQ" = ( -/obj/structure/chair/sofa/bench/right{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/obj/effect/turf_decal/box/corners, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/hallway/primary/central/fore) "uxR" = ( /obj/structure/table/glass, /obj/machinery/reagentgrinder{ @@ -75339,11 +75623,6 @@ }, /turf/open/floor/engine/vacuum, /area/maintenance/disposal/incinerator) -"uyr" = ( -/obj/structure/transit_tube/diagonal/crossing/topleft, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) "uyz" = ( /obj/effect/turf_decal/delivery, /obj/effect/landmark/event_spawn, @@ -75430,6 +75709,17 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/cargo/warehouse) +"uAT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/newscaster/directional/south, +/obj/machinery/camera/autoname/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/service/chapel/monastery) "uAU" = ( /obj/effect/turf_decal/tile/purple, /obj/effect/turf_decal/tile/purple, @@ -75481,23 +75771,6 @@ /obj/item/clothing/mask/gas, /turf/open/floor/iron/dark, /area/command/bridge) -"uBh" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Fore Hallway Diner"; - name = "fore camera" - }, -/obj/machinery/bluespace_vendor/directional/north, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "uBG" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/bot, @@ -75584,22 +75857,6 @@ /obj/structure/plaque/static_plaque/atmos, /turf/closed/wall/rust, /area/engineering/atmos) -"uCy" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/hallway/primary/central/fore) "uCH" = ( /obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden{ dir = 4 @@ -75626,6 +75883,10 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/floor/iron/freezer, /area/service/kitchen/coldroom) +"uCY" = ( +/obj/effect/spawner/structure/window/bronze, +/turf/open/floor/plating, +/area/maintenance/department/chapel) "uDs" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -75840,11 +76101,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/port/lesser) -"uGV" = ( -/obj/structure/table/reinforced/plastitaniumglass, -/obj/item/mmi, -/turf/open/floor/iron/dark, -/area/service/chapel/storage) "uHa" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/stripes/line{ @@ -75870,12 +76126,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/engineering/atmos) -"uHv" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/plasma_output{ - dir = 1 - }, -/turf/open/floor/engine/plasma, -/area/engineering/atmos) "uHK" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral{ @@ -76120,18 +76370,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/engineering/supermatter/room) -"uLX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Medbay" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/hallway/primary/central/fore) "uMr" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -76312,6 +76550,25 @@ /obj/machinery/duct, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/bar) +"uPU" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "uPV" = ( /obj/structure/table/reinforced, /obj/machinery/syndicatebomb/training, @@ -76423,23 +76680,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/cargo/miningoffice) -"uRG" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/transit_tube/station/dispenser/reverse{ - dir = 1 - }, -/turf/open/floor/catwalk_floor/iron, -/area/service/chapel/dock) -"uRK" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/light/directional/east, -/turf/open/floor/plating/airless, -/area/hallway/secondary/entry) "uRP" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/smart/simple/orange/visible, @@ -76454,16 +76694,6 @@ icon_state = "platingdmg3" }, /area/maintenance/department/cargo) -"uSg" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/service/chapel/dock) "uSp" = ( /obj/machinery/door/airlock/maintenance{ name = "xenobiology maintenance"; @@ -76504,6 +76734,23 @@ icon_state = "platingdmg1" }, /area/maintenance/department/crew_quarters/bar) +"uTj" = ( +/obj/structure/table/wood/fancy, +/obj/effect/turf_decal/siding/wideplating/dark/corner{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/obj/item/food/grown/harebell, +/obj/item/food/grown/harebell{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/food/grown/harebell{ + pixel_x = -3; + pixel_y = 3 + }, +/turf/open/floor/iron/dark, +/area/service/chapel/dock) "uTp" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/machinery/newscaster/directional/west, @@ -76616,13 +76863,6 @@ icon_state = "panelscorched" }, /area/maintenance/starboard/fore) -"uUS" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/service/chapel/dock) "uUY" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -76671,18 +76911,15 @@ }, /turf/open/floor/iron, /area/service/theater) -"uVr" = ( -/obj/effect/turf_decal/tile/neutral{ +"uVz" = ( +/obj/machinery/airalarm/directional/south, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/iron/stairs/left{ dir = 4 }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/hallway/primary/fore) +/area/service/chapel/dock) "uVC" = ( /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/components/unary/bluespace_sender, @@ -76771,23 +77008,22 @@ /obj/effect/spawner/random/contraband/prison, /turf/open/floor/iron/cafeteria, /area/security/prison) -"uXn" = ( -/obj/structure/railing, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ +"uXm" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/iron/dark, -/area/service/chapel/dock) -"uXs" = ( -/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/service/chapel/dock) +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron, +/area/hallway/primary/fore) "uXy" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -76807,13 +77043,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/showroomfloor, /area/medical/chemistry) -"uXT" = ( +"uYR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/airalarm/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/structure/cable, -/turf/open/floor/iron/smooth_large, -/area/maintenance/department/chapel/monastery) +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/hallway/primary/central/fore) "uYZ" = ( /obj/structure/rack, /obj/item/storage/toolbox/mechanical{ @@ -76918,11 +77157,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, /turf/open/floor/engine, /area/engineering/supermatter/room) -"vao" = ( -/obj/machinery/newscaster/directional/north, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark, -/area/service/chapel/dock) "vas" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/grass, @@ -76939,6 +77173,17 @@ icon_state = "wood-broken6" }, /area/maintenance/port/greater) +"vaL" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/iron/stairs/left{ + dir = 1 + }, +/area/service/chapel/dock) "vaP" = ( /obj/item/storage/box/chemimp{ pixel_x = 6; @@ -77123,6 +77368,20 @@ }, /turf/open/space/basic, /area/space/nearstation) +"vdU" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron, +/area/hallway/primary/fore) "vdV" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -77220,15 +77479,6 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark, /area/service/bar/atrium) -"veU" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/chair/sofa/bench, -/turf/open/floor/iron/dark, -/area/hallway/primary/central/fore) "vfO" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ @@ -77276,31 +77526,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark, /area/medical/pharmacy) -"vgE" = ( -/turf/open/floor/plating, -/area/service/chapel/dock) -"vgH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/mix_output{ - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"vgM" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron, -/area/hallway/primary/fore) "vgO" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/corner, @@ -77347,6 +77572,16 @@ icon_state = "platingdmg3" }, /area/engineering/supermatter/room) +"vhw" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/anesthetic_mix, +/turf/open/floor/iron/dark, +/area/medical/medbay/central) "vhM" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -77373,15 +77608,6 @@ /obj/structure/railing, /turf/open/space/basic, /area/space/nearstation) -"viz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark/corner, -/area/hallway/primary/central/fore) "viC" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -77487,6 +77713,15 @@ }, /turf/open/floor/plating, /area/cargo/warehouse) +"vjx" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/chair/sofa/bench, +/turf/open/floor/iron/dark, +/area/hallway/primary/central/fore) "vjy" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -77589,6 +77824,11 @@ /obj/structure/girder/reinforced, /turf/open/space/basic, /area/space/nearstation) +"vlM" = ( +/obj/structure/transit_tube/crossing, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) "vlQ" = ( /obj/effect/landmark/secequipment, /obj/effect/turf_decal/bot, @@ -77715,20 +77955,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/engine, /area/engineering/supermatter) -"vnq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/light/small/directional/west, -/obj/machinery/meter/atmos/layer4{ - name = "gas flow meter" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/greater) "vnr" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -77870,6 +78096,23 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood, /area/maintenance/port/fore) +"voW" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "voX" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -77879,6 +78122,10 @@ /obj/machinery/bluespace_vendor/directional/south, /turf/open/floor/iron, /area/hallway/primary/central) +"vpc" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/service/chapel/funeral) "vpg" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -77998,12 +78245,6 @@ }, /turf/open/floor/iron/dark, /area/service/bar) -"vrB" = ( -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/service/chapel/dock) "vrC" = ( /obj/structure/closet/l3closet/security, /obj/effect/decal/cleanable/dirt, @@ -78014,22 +78255,20 @@ }, /turf/open/floor/iron/dark, /area/maintenance/port/aft) -"vrL" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/hallway/primary/fore) "vrS" = ( /obj/structure/closet/secure_closet/brig, /obj/effect/turf_decal/tile/red/half/contrasted, /turf/open/floor/iron/showroomfloor, /area/security/prison) +"vrW" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/incinerator_input{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) "vsm" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -78046,12 +78285,6 @@ }, /turf/open/floor/iron, /area/engineering/atmos/pumproom) -"vsn" = ( -/obj/structure/chair/comfy/black, -/obj/effect/landmark/start/chaplain, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/grimy, -/area/service/chapel/office) "vsH" = ( /obj/structure/bodycontainer/morgue, /obj/effect/turf_decal/tile/neutral, @@ -78071,13 +78304,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/engineering/supermatter/room) -"vto" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark/corner, -/area/hallway/primary/central/fore) "vtr" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -78103,11 +78329,6 @@ }, /turf/open/floor/iron, /area/command/teleporter) -"vtz" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/hallway/primary/central/fore) "vtT" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ @@ -78235,20 +78456,6 @@ }, /turf/open/floor/iron/dark, /area/engineering/gravity_generator) -"vve" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "applebush" - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/hallway/primary/central/fore) "vvq" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp/green{ @@ -78277,16 +78484,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark, /area/hallway/primary/aft) -"vvZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark/corner, -/area/hallway/primary/central/fore) "vwn" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -78426,11 +78623,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/secondary/entry) -"vyD" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/iron/dark, -/area/hallway/primary/central/fore) "vyI" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -78511,19 +78703,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/starboard) -"vzM" = ( -/obj/effect/spawner/random/vending/colavend, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/iron/dark/corner, -/area/hallway/primary/central/fore) "vzO" = ( /obj/structure/cable, /obj/effect/spawner/structure/window/reinforced, @@ -78586,6 +78765,16 @@ /obj/effect/landmark/start/shaft_miner, /turf/open/floor/iron, /area/cargo/miningoffice) +"vBs" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/service/chapel/dock) "vBt" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/iron, @@ -78616,11 +78805,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark, /area/maintenance/port/lesser) -"vBV" = ( -/obj/structure/transit_tube/crossing, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) "vCh" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -78647,17 +78831,6 @@ /obj/effect/turf_decal/box, /turf/open/floor/iron/dark, /area/ai_monitored/security/armory) -"vCN" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/light/small/directional/east, -/turf/open/floor/iron/stairs, -/area/service/chapel/monastery) "vCQ" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/neutral, @@ -78727,12 +78900,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/medical/morgue) -"vDz" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/robot_debris, -/obj/effect/decal/cleanable/oil/streak, -/turf/open/floor/iron/dark, -/area/service/chapel/storage) "vDB" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, @@ -78759,6 +78926,16 @@ "vEl" = ( /turf/closed/wall/r_wall, /area/maintenance/port/fore) +"vEy" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/airlock/public/glass{ + name = "Chapel Hallway" + }, +/turf/open/floor/iron/dark, +/area/hallway/primary/fore) "vEA" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -78799,6 +78976,17 @@ }, /turf/open/floor/iron/dark, /area/engineering/supermatter/room) +"vEN" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/hallway/primary/central/fore) "vEU" = ( /obj/machinery/door/airlock/command/glass{ name = "Bridge"; @@ -78809,6 +78997,11 @@ }, /turf/open/floor/iron/dark, /area/command/bridge) +"vFc" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) "vFk" = ( /obj/machinery/ai_slipper{ uses = 10 @@ -79058,17 +79251,6 @@ /obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/command/bridge) -"vHI" = ( -/obj/effect/turf_decal/box/corners, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/computer/atmos_control/ordnancemix{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/science/mixing) "vHK" = ( /obj/structure/table, /obj/item/clothing/gloves/color/yellow, @@ -79155,16 +79337,6 @@ }, /turf/open/floor/iron, /area/security/prison) -"vIL" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark/corner, -/area/hallway/primary/central/fore) "vIT" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -79279,6 +79451,22 @@ luminosity = 2 }, /area/ai_monitored/command/nuke_storage) +"vKf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) +"vKn" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/cable, +/obj/machinery/firealarm/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet/red, +/area/service/chapel/monastery) "vKo" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -79382,6 +79570,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/showroomfloor, /area/service/bar/atrium) +"vMh" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/iron/dark, +/area/service/chapel/funeral) "vMx" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -79427,18 +79620,6 @@ /obj/effect/turf_decal/stripes/corner, /turf/open/floor/iron/dark, /area/medical/medbay/central) -"vNI" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/hallway/primary/fore) "vOk" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -79546,20 +79727,6 @@ }, /turf/open/floor/circuit/red, /area/ai_monitored/turret_protected/ai) -"vPy" = ( -/obj/structure/table/wood/fancy, -/obj/machinery/light/directional/west, -/obj/item/food/grown/harebell, -/obj/item/food/grown/harebell{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/food/grown/harebell{ - pixel_x = -3; - pixel_y = 3 - }, -/turf/open/floor/iron/dark, -/area/service/chapel/dock) "vPL" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -79567,6 +79734,21 @@ /obj/structure/cable, /turf/open/floor/engine, /area/ai_monitored/turret_protected/ai) +"vPQ" = ( +/obj/machinery/door/airlock/grunge, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/service/chapel/dock) +"vPV" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/chapel/dock) "vQq" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -79590,6 +79772,16 @@ /obj/structure/grille, /turf/open/misc/asteroid/airless, /area/space/nearstation) +"vQN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron/stairs{ + dir = 1 + }, +/area/service/chapel/monastery) "vQX" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/neutral{ @@ -79661,14 +79853,6 @@ icon_state = "panelscorched" }, /area/maintenance/starboard/aft) -"vRK" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/airless, -/area/space/nearstation) "vRY" = ( /obj/item/kirbyplants{ icon_state = "plant-18" @@ -79731,27 +79915,17 @@ }, /turf/open/floor/engine/plasma, /area/engineering/atmos) +"vSW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera/directional/south, +/obj/structure/lattice/catwalk, +/obj/machinery/light/directional/south, +/turf/open/floor/plating/airless, +/area/hallway/secondary/entry) "vTl" = ( /obj/machinery/atmospherics/pipe/smart/simple/green/visible, /turf/closed/wall, /area/engineering/atmos) -"vTz" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/hallway/primary/central/fore) "vTG" = ( /obj/effect/turf_decal/tile/green{ dir = 4 @@ -79849,17 +80023,6 @@ }, /turf/open/floor/iron/dark, /area/maintenance/central) -"vVg" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/radio/intercom/directional/east, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/hallway/primary/fore) "vVq" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -80089,16 +80252,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/engineering/atmos) -"wan" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/hallway/primary/fore) "waA" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -80152,6 +80305,16 @@ /obj/structure/cable, /turf/open/floor/iron, /area/cargo/storage) +"wbA" = ( +/obj/effect/turf_decal/siding/thinplating/dark/end{ + dir = 4 + }, +/obj/structure/window/spawner, +/obj/structure/window/spawner/east, +/obj/structure/window/spawner/north, +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/service/chapel/dock) "wbC" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -80273,25 +80436,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/showroomfloor, /area/security/warden) -"wdL" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Upload"; - location = "Science"; - name = "science navigation beacon" - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "wei" = ( /turf/closed/wall/rust, /area/cargo/sorting) @@ -80342,29 +80486,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark, /area/commons/storage/art) -"wfz" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L13" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_y = 24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "wfB" = ( /obj/structure/plasticflaps/opaque, /obj/machinery/navbeacon{ @@ -80444,13 +80565,6 @@ }, /turf/open/floor/iron, /area/command/teleporter) -"wgM" = ( -/obj/structure/transit_tube, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/iron/grimy, -/area/hallway/primary/fore) "wgQ" = ( /obj/effect/decal/cleanable/ash, /turf/open/floor/plating{ @@ -80552,13 +80666,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/port) -"wjk" = ( -/obj/structure/table/wood, -/obj/structure/cable, -/obj/item/pen/fountain, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/grimy, -/area/service/chapel/office) "wjm" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -80710,23 +80817,6 @@ }, /turf/open/floor/iron/dark, /area/engineering/main) -"wkC" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "wkN" = ( /turf/closed/wall, /area/cargo/miningoffice) @@ -80745,6 +80835,32 @@ }, /turf/open/floor/iron/dark, /area/service/hydroponics/garden) +"wlj" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Morgue Entrance"; + name = "medical camera"; + network = list("ss13","medical") + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/firealarm/directional/north, +/obj/machinery/light/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/hallway/primary/fore) +"wlO" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/dark, +/area/service/chapel/storage) "wlV" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -80861,6 +80977,12 @@ /obj/structure/cable, /turf/closed/wall/r_wall, /area/maintenance/starboard/aft) +"woz" = ( +/obj/structure/railing{ + dir = 9 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) "woH" = ( /mob/living/simple_animal/hostile/carp{ environment_smash = 0; @@ -80942,6 +81064,21 @@ /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/central) +"wql" = ( +/obj/machinery/computer/atmos_control/mix_tank{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ + dir = 4 + }, +/turf/open/floor/iron/showroomfloor, +/area/engineering/atmos/pumproom) "wqn" = ( /obj/machinery/suit_storage_unit/hos, /obj/effect/turf_decal/tile/neutral{ @@ -80957,6 +81094,18 @@ }, /turf/open/floor/iron, /area/command/heads_quarters/hos) +"wqp" = ( +/obj/structure/closet/crate/engineering, +/obj/item/stack/sheet/mineral/plasma/thirty{ + amount = 50 + }, +/obj/item/wrench, +/obj/item/crowbar, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/iron/smooth_large, +/area/maintenance/department/chapel/monastery) "wqr" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/delivery, @@ -81057,6 +81206,22 @@ icon_state = "panelscorched" }, /area/maintenance/starboard) +"wrA" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/airlock/grunge{ + name = "Chapel Office"; + req_access_txt = "22" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/royalblue, +/area/service/chapel/monastery) "wrD" = ( /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/yellow, @@ -81066,16 +81231,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/hallway/secondary/entry) -"wrF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "wrH" = ( /obj/effect/turf_decal/tile/brown{ dir = 1 @@ -81131,6 +81286,14 @@ }, /turf/open/floor/iron, /area/hallway/primary/port) +"wsZ" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark, +/area/service/chapel/monastery) "wtb" = ( /obj/structure/extinguisher_cabinet/directional/east, /obj/effect/turf_decal/caution/stand_clear, @@ -81201,19 +81364,6 @@ }, /turf/open/floor/iron, /area/security/checkpoint/customs) -"wtv" = ( -/obj/item/clothing/suit/hooded/techpriest{ - pixel_y = 8 - }, -/obj/item/clothing/suit/hooded/techpriest{ - pixel_y = 6 - }, -/obj/item/clothing/suit/hooded/techpriest{ - pixel_y = 4 - }, -/obj/structure/rack, -/turf/open/floor/iron/dark, -/area/service/chapel/storage) "wtC" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ @@ -81246,6 +81396,15 @@ /obj/item/clothing/mask/russian_balaclava, /turf/open/floor/iron/dark, /area/security/lockers) +"wtZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/service/chapel/dock) "wua" = ( /obj/effect/turf_decal/bot, /obj/structure/rack, @@ -81258,6 +81417,15 @@ /obj/machinery/light/small/directional/north, /turf/open/floor/plating, /area/maintenance/port/greater) +"wun" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/meter/layer4, +/turf/open/floor/plating, +/area/maintenance/port/aft) "wuY" = ( /obj/effect/decal/cleanable/blood/footprints{ dir = 4; @@ -81385,22 +81553,15 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/iron, /area/hallway/primary/starboard) +"wwG" = ( +/obj/machinery/air_sensor/oxygen_tank, +/turf/open/floor/engine/o2, +/area/engineering/atmos) "wwV" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/structure/crate, /turf/open/floor/plating, /area/maintenance/aft) -"wwY" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "wxt" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -81422,12 +81583,6 @@ icon_state = "panelscorched" }, /area/maintenance/port/aft) -"wxD" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/service/chapel/funeral) "wxZ" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" @@ -81526,6 +81681,19 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/hallway/primary/aft) +"wzT" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/fore) "wAb" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -81534,6 +81702,12 @@ luminosity = 2 }, /area/ai_monitored/turret_protected/ai_upload) +"wAh" = ( +/obj/structure/railing/corner, +/obj/item/kirbyplants/random, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/dark, +/area/service/chapel/monastery) "wAk" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -81569,6 +81743,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/showroomfloor, /area/science/xenobiology) +"wAK" = ( +/obj/effect/turf_decal/siding/thinplating/dark/end{ + dir = 4 + }, +/turf/open/floor/glass/reinforced, +/area/service/chapel/dock) "wAO" = ( /turf/closed/wall, /area/service/bar) @@ -81675,6 +81855,22 @@ }, /turf/open/floor/iron/dark, /area/security/checkpoint/customs) +"wCb" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/newscaster/directional/north, +/obj/machinery/camera/directional/north{ + c_tag = "Fore Hallway Monastary Tube"; + name = "fore camera" + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/hallway/primary/fore) "wCg" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/engineering/glass{ @@ -81721,6 +81917,22 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/cargo/storage) +"wCN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "wDi" = ( /turf/open/floor/circuit/green{ luminosity = 2 @@ -81794,13 +82006,6 @@ /obj/machinery/firealarm/directional/south, /turf/open/floor/iron/showroomfloor, /area/service/bar/atrium) -"wDP" = ( -/obj/machinery/door/airlock/grunge, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/service/chapel/dock) "wEf" = ( /obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ dir = 9 @@ -81828,6 +82033,10 @@ }, /turf/open/floor/engine, /area/ai_monitored/command/nuke_storage) +"wFM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/grimy, +/area/hallway/primary/fore) "wFO" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, @@ -81945,11 +82154,6 @@ }, /turf/open/floor/iron, /area/cargo/office) -"wIC" = ( -/obj/structure/flora/ausbushes/brflowers, -/obj/machinery/light/directional/east, -/turf/open/floor/grass, -/area/service/chapel/monastery) "wIO" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -81993,12 +82197,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/cargo/miningoffice) -"wJj" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/service/chapel/dock) "wJx" = ( /obj/effect/turf_decal/bot, /obj/structure/closet/crate, @@ -82034,6 +82232,28 @@ /obj/machinery/light/small/directional/north, /turf/open/floor/iron/dark, /area/maintenance/fore) +"wKA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L4" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "wKD" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -82143,10 +82363,6 @@ }, /turf/open/floor/plating, /area/maintenance/port/greater) -"wMl" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall, -/area/hallway/primary/central/fore) "wMo" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/grunge{ @@ -82156,20 +82372,6 @@ }, /turf/open/floor/iron/dark, /area/commons/vacant_room/commissary) -"wMv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron/dark/corner, -/area/hallway/primary/central/fore) "wMA" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/landmark/event_spawn, @@ -82235,6 +82437,11 @@ }, /turf/open/floor/iron/showroomfloor, /area/command/heads_quarters/rd) +"wNI" = ( +/obj/machinery/firealarm/directional/north, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark, +/area/service/chapel/dock) "wNR" = ( /obj/structure/filingcabinet/chestdrawer, /obj/effect/turf_decal/tile/blue{ @@ -82438,19 +82645,6 @@ }, /turf/open/floor/iron, /area/engineering/hallway) -"wPM" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "wPO" = ( /obj/structure/rack, /obj/item/gun/energy/ionrifle{ @@ -82485,6 +82679,47 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/engine, /area/engineering/gravity_generator) +"wPV" = ( +/obj/machinery/air_sensor/nitrous_tank, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) +"wQb" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/box/corners, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/dark, +/area/hallway/primary/fore) +"wQd" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark, +/area/hallway/primary/fore) "wQn" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/siding/blue{ @@ -82497,19 +82732,12 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/showroomfloor, /area/medical/medbay/central) -"wQI" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 +"wQw" = ( +/obj/effect/turf_decal/siding/thinplating/dark/end{ + dir = 8 }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line, -/obj/structure/sign/poster/random{ - pixel_x = 32 - }, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/hallway/primary/fore) +/turf/open/floor/glass/reinforced, +/area/service/chapel/dock) "wRj" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/item/tank/internals/oxygen/empty, @@ -82532,17 +82760,6 @@ /obj/structure/cable, /turf/open/floor/engine, /area/engineering/supermatter/room) -"wRF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/hallway/primary/central/fore) "wRX" = ( /obj/structure/lattice/catwalk, /obj/effect/landmark/carpspawn, @@ -82579,19 +82796,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/grass, /area/medical/virology) -"wSB" = ( -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "wSC" = ( /obj/structure/cable, /obj/machinery/holopad/secure, @@ -82619,24 +82823,27 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/command/bridge) +"wTh" = ( +/obj/machinery/computer/atmos_control/nocontrol/incinerator{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark, +/area/maintenance/disposal/incinerator) +"wTj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/meter/layer2, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard) "wTq" = ( /obj/effect/spawner/structure/window/reinforced/plasma, /turf/open/floor/plating, /area/engineering/supermatter) -"wTv" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/supply/visible{ - dir = 8 - }, -/obj/machinery/meter/atmos/distro_loop, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/engineering/atmos/pumproom) "wTC" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -82648,23 +82855,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/maintenance/starboard/fore) -"wTJ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "wUe" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, @@ -82925,12 +83115,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/starboard) -"wXD" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/atmos/air_output{ - dir = 4 - }, -/turf/open/floor/engine/air, -/area/engineering/atmos) "wXE" = ( /obj/structure/table/wood, /obj/effect/turf_decal/box/corners{ @@ -82979,6 +83163,18 @@ icon_state = "platingdmg3" }, /area/maintenance/solars/port/aft) +"wYA" = ( +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/meter/layer4, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard) "wYN" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/directional/south, @@ -83055,18 +83251,6 @@ }, /turf/open/floor/iron/dark, /area/security/execution/education) -"wZK" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "wZN" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -83081,6 +83265,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/cargo/storage) +"wZS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "wZT" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -83236,6 +83430,16 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/engineering/atmos) +"xbN" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/corner, +/area/hallway/primary/central/fore) "xbZ" = ( /obj/machinery/portable_atmospherics/scrubber/huge, /obj/effect/turf_decal/delivery, @@ -83248,16 +83452,13 @@ /obj/machinery/status_display/ai/directional/north, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat/atmos) -"xcv" = ( -/obj/structure/railing, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/iron/stairs/left{ - dir = 4 - }, -/area/service/chapel/dock) +"xcn" = ( +/obj/structure/table/reinforced/plastitaniumglass, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell, +/turf/open/floor/iron/dark, +/area/service/chapel/storage) "xcx" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -83313,22 +83514,6 @@ }, /turf/open/misc/asteroid, /area/space/nearstation) -"xde" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/sign/departments/science{ - name = "ROBOTICS"; - pixel_y = 32 - }, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "xdt" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/neutral, @@ -83406,26 +83591,6 @@ /obj/effect/turf_decal/tile/red/half/contrasted, /turf/open/floor/iron/showroomfloor, /area/security/prison) -"xft" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Chapel Hallway" - }, -/turf/open/floor/iron/dark, -/area/hallway/primary/fore) "xfA" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/neutral, @@ -83504,20 +83669,6 @@ /obj/machinery/bounty_board/directional/east, /turf/open/floor/iron/dark, /area/hallway/secondary/service) -"xhl" = ( -/obj/structure/table/wood/fancy/black, -/obj/machinery/firealarm/directional/east, -/obj/item/storage/fancy/candle_box, -/turf/open/floor/iron/dark, -/area/service/chapel/dock) -"xhp" = ( -/obj/structure/sign/departments/holy{ - pixel_y = 30 - }, -/turf/open/floor/iron/stairs/right{ - dir = 4 - }, -/area/hallway/primary/fore) "xht" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -83705,6 +83856,23 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/engineering/atmos) +"xmm" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "xmr" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -83765,24 +83933,6 @@ /obj/structure/table/wood, /turf/open/floor/cult, /area/service/chapel/office) -"xmU" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) -"xno" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/hallway/primary/central/fore) "xnp" = ( /obj/machinery/light/floor, /turf/open/floor/engine/n2, @@ -83889,14 +84039,6 @@ }, /turf/open/floor/engine, /area/ai_monitored/turret_protected/ai_upload) -"xph" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark, -/area/hallway/primary/central/fore) "xpk" = ( /obj/effect/turf_decal/tile/purple, /obj/effect/turf_decal/tile/purple{ @@ -83949,47 +84091,6 @@ }, /turf/open/floor/plating, /area/cargo/warehouse) -"xpV" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L5" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) -"xqc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L6" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "xqd" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -84034,25 +84135,6 @@ }, /turf/open/floor/iron/dark, /area/service/lawoffice) -"xqj" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "xqr" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small/directional/east, @@ -84129,19 +84211,6 @@ /obj/structure/lattice/catwalk, /turf/open/space/basic, /area/space/nearstation) -"xqS" = ( -/obj/structure/table/wood/fancy/black, -/obj/item/food/grown/poppy/lily{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/food/grown/poppy/lily{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/food/grown/poppy/lily, -/turf/open/floor/iron/dark, -/area/service/chapel/dock) "xrF" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 @@ -84150,16 +84219,14 @@ /obj/effect/turf_decal/tile/red/half/contrasted, /turf/open/floor/iron, /area/security/office) -"xrW" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/button/door/directional/east{ - id = "Arrival Shuttle Bay"; - name = "Arrival Shuttle Bay Toggle"; - req_access_txt = "19" +"xrY" = ( +/obj/structure/railing, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 }, -/obj/machinery/light/directional/east, -/turf/open/floor/plating/airless, -/area/hallway/secondary/entry) +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/iron/dark, +/area/service/chapel/dock) "xrZ" = ( /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/brown{ @@ -84242,6 +84309,17 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/engineering/atmos) +"xsu" = ( +/obj/structure/cable, +/obj/machinery/air_sensor/incinerator_tank{ + pixel_x = 32; + pixel_y = -23 + }, +/obj/machinery/igniter{ + id = "Incinerator" + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) "xsx" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral{ @@ -84292,42 +84370,6 @@ icon_state = "panelscorched" }, /area/maintenance/starboard/fore) -"xte" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) -"xtg" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "xti" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -84371,20 +84413,6 @@ }, /turf/open/floor/iron/dark/textured, /area/hallway/primary/starboard) -"xtx" = ( -/obj/structure/railing/corner, -/obj/item/kirbyplants/random, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark, -/area/service/chapel/monastery) -"xtD" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/iron/stairs/medium{ - dir = 1 - }, -/area/service/chapel/dock) "xtE" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue, @@ -84450,6 +84478,9 @@ }, /turf/open/floor/iron/dark, /area/science/research) +"xuG" = ( +/turf/closed/wall/rust, +/area/service/chapel/monastery) "xvd" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -84647,12 +84678,6 @@ }, /turf/open/floor/iron/dark, /area/security/courtroom) -"xxa" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "xxn" = ( /obj/effect/turf_decal/tile/purple, /obj/effect/turf_decal/tile/purple{ @@ -84722,23 +84747,6 @@ icon_state = "platingdmg3" }, /area/maintenance/aft) -"xyf" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "xyO" = ( /obj/structure/window/reinforced{ dir = 4 @@ -84815,11 +84823,6 @@ "xzv" = ( /turf/closed/wall/r_wall, /area/maintenance/disposal/incinerator) -"xzH" = ( -/obj/machinery/light/directional/north, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark, -/area/service/chapel/monastery) "xzO" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -84856,18 +84859,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/engineering/atmos) -"xAc" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/chair/sofa/bench/left, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/obj/effect/turf_decal/box/corners, -/turf/open/floor/iron/dark, -/area/hallway/primary/central/fore) "xAk" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -85016,24 +85007,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/maintenance/port/lesser) -"xCn" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/computer/atmos_control/tank/oxygen_tank{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, -/turf/open/floor/iron/showroomfloor, -/area/engineering/atmos) "xCo" = ( /obj/structure/chair/sofa/right{ color = "#c45c57"; @@ -85051,6 +85024,17 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/iron/dark, /area/service/bar/atrium) +"xDv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/service/chapel/dock) +"xDF" = ( +/obj/structure/railing/corner, +/turf/open/floor/iron/dark, +/area/service/chapel/dock) "xDO" = ( /obj/structure/table/reinforced, /obj/item/crowbar/red, @@ -85081,12 +85065,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/cargo/miningoffice) -"xDX" = ( -/obj/structure/closet/crate/coffin, -/obj/effect/turf_decal/bot_white, -/obj/effect/mob_spawn/corpse/human/skeleton, -/turf/open/floor/iron/dark/textured_large, -/area/service/chapel/funeral) "xEd" = ( /obj/machinery/vending/cart{ req_access_txt = "57" @@ -85208,13 +85186,6 @@ }, /turf/open/floor/iron/dark, /area/cargo/miningoffice) -"xGD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/directional/south, -/obj/structure/lattice/catwalk, -/obj/machinery/light/directional/south, -/turf/open/floor/plating/airless, -/area/hallway/secondary/entry) "xGE" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -85235,19 +85206,13 @@ /obj/structure/cable, /turf/open/floor/iron, /area/security/prison) -"xHc" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 +"xGJ" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 4 }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/hallway/primary/fore) +/turf/open/floor/iron/dark, +/area/service/chapel/dock) "xHo" = ( /obj/effect/turf_decal/box/corners{ dir = 8 @@ -85265,10 +85230,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/cargo/storage) -"xHR" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark, -/area/service/chapel/dock) "xHX" = ( /obj/machinery/atmospherics/pipe/smart/simple/green/visible{ dir = 4 @@ -85466,6 +85427,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/engine, /area/engineering/supermatter/room) +"xLQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/iron/smooth_large, +/area/maintenance/department/chapel/monastery) "xLT" = ( /obj/effect/turf_decal/box, /obj/machinery/power/solar{ @@ -85552,10 +85519,6 @@ }, /turf/open/floor/iron/white, /area/security/prison) -"xNj" = ( -/obj/structure/transit_tube, -/turf/open/space/basic, -/area/space/nearstation) "xNl" = ( /obj/machinery/door/airlock/grunge{ id_tag = "Cabin_2"; @@ -85565,6 +85528,26 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron/dark, /area/commons/locker) +"xNy" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/kirbyplants{ + icon_state = "plant-05" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "xND" = ( /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/yellow{ @@ -85575,26 +85558,6 @@ /obj/machinery/status_display/evac/directional/south, /turf/open/floor/iron, /area/hallway/primary/central) -"xNP" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/candle_box, -/obj/item/storage/fancy/candle_box, -/obj/item/storage/fancy/candle_box{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/storage/fancy/candle_box{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/machinery/airalarm/directional/north, -/obj/machinery/light/directional/north, -/obj/item/storage/box/matches{ - pixel_x = -3; - pixel_y = 2 - }, -/turf/open/floor/iron/grimy, -/area/service/chapel/office) "xOe" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/stripes/line{ @@ -85622,6 +85585,24 @@ "xOs" = ( /turf/closed/wall/rust, /area/service/janitor) +"xOO" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "xPm" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -85650,18 +85631,6 @@ /obj/structure/flora/ausbushes/sparsegrass, /turf/open/floor/grass, /area/service/chapel/monastery) -"xPM" = ( -/obj/structure/closet/crate/engineering, -/obj/item/stack/sheet/mineral/plasma/thirty{ - amount = 50 - }, -/obj/item/wrench, -/obj/item/crowbar, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/iron/smooth_large, -/area/maintenance/department/chapel/monastery) "xPO" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -85710,30 +85679,22 @@ }, /turf/open/floor/iron/dark, /area/maintenance/port/greater) -"xQD" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 +"xQG" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + name = "chapel sorting disposal pipe"; + sortType = 17 }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ +/obj/effect/turf_decal/tile/blue{ dir = 4 }, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) -"xQR" = ( -/obj/effect/landmark/start/chaplain, -/obj/structure/chair/wood{ +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/siding/white{ dir = 4 }, -/obj/machinery/light/small/directional/west, -/obj/item/radio/intercom/chapel/directional/north, -/turf/open/floor/wood/parquet, -/area/service/chapel/monastery) +/turf/open/floor/iron/dark, +/area/hallway/primary/fore) "xQS" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -85742,6 +85703,14 @@ }, /turf/open/floor/iron, /area/hallway/primary/starboard) +"xQT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/meter/layer4, +/turf/open/floor/plating, +/area/maintenance/port/greater) "xQU" = ( /obj/machinery/ai_slipper{ uses = 10 @@ -85792,18 +85761,6 @@ /obj/structure/flora/ausbushes/sparsegrass, /turf/open/floor/grass, /area/security/prison) -"xRW" = ( -/obj/machinery/newscaster/directional/south, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/hallway/primary/fore) "xRY" = ( /obj/item/radio/intercom/directional/north, /obj/effect/decal/cleanable/blood/old, @@ -85911,6 +85868,21 @@ }, /turf/open/floor/iron/dark, /area/service/library) +"xTE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/newscaster/security_unit/directional/south, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/hallway/primary/central/fore) "xTK" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue, @@ -86008,21 +85980,23 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/command/heads_quarters/ce) -"xUY" = ( -/obj/structure/transit_tube/station/reverse{ - dir = 8 +"xUW" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 }, -/obj/structure/window/reinforced{ +/obj/effect/turf_decal/tile/neutral{ dir = 4 }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/firealarm/directional/north, /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/structure/transit_tube_pod{ +/turf/open/floor/iron/dark/corner{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, /area/hallway/primary/central/fore) "xVe" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -86168,6 +86142,16 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/security/courtroom) +"xWX" = ( +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/iron/stairs/left{ + dir = 4 + }, +/area/service/chapel/dock) "xXa" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/rust, @@ -86176,25 +86160,6 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/commons/locker) -"xXr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L14" - }, -/turf/open/floor/iron, -/area/hallway/primary/central/fore) "xXt" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 @@ -86202,6 +86167,12 @@ /obj/machinery/newscaster/directional/west, /turf/open/floor/iron/white, /area/security/prison) +"xXW" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/lavendergrass, +/turf/open/floor/grass, +/area/hallway/primary/fore) "xXY" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -86232,19 +86203,6 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/command/storage/satellite) -"xYk" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/hallway/primary/fore) "xYt" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -86255,6 +86213,25 @@ /obj/structure/cable, /turf/open/floor/plating, /area/security/prison) +"xYI" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "xYR" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -86281,6 +86258,15 @@ }, /turf/open/floor/iron/dark, /area/command/heads_quarters/captain) +"xZt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "xZv" = ( /obj/structure/table/wood, /obj/item/folder{ @@ -86358,24 +86344,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/grimy, /area/security/prison/safe) -"yaC" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/hallway/primary/fore) "yaD" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -86392,15 +86360,6 @@ /obj/structure/transit_tube/crossing, /turf/open/floor/plating, /area/maintenance/fore) -"ybB" = ( -/obj/machinery/airalarm/directional/south, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/iron/stairs/left{ - dir = 4 - }, -/area/service/chapel/dock) "ybC" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -86500,6 +86459,16 @@ /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/port/lesser) +"ycN" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/hallway/primary/fore) "ycO" = ( /obj/structure/sign/warning/docking, /turf/closed/wall, @@ -86592,6 +86561,15 @@ /obj/structure/sign/poster/contraband/random/directional/north, /turf/open/floor/plating, /area/maintenance/port/fore) +"yfj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/service/chapel/dock) "yfn" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -86794,6 +86772,17 @@ /obj/machinery/light/floor, /turf/open/floor/engine/n2o, /area/engineering/atmos) +"yiU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/iron, +/area/hallway/primary/central/fore) "yiY" = ( /obj/structure/table, /obj/item/clothing/under/rank/prisoner/skirt{ @@ -86864,20 +86853,6 @@ }, /turf/open/floor/iron, /area/security/processing) -"yjL" = ( -/obj/structure/transit_tube/curved/flipped, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plating, -/area/hallway/primary/central/fore) "yjZ" = ( /obj/item/kirbyplants/random, /obj/machinery/status_display/ai/directional/east, @@ -87069,6 +87044,13 @@ icon_state = "platingdmg3" }, /area/maintenance/port/fore) +"ylU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/smooth_large, +/area/maintenance/department/chapel/monastery) "ylW" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -95422,10 +95404,10 @@ aeu aeu aeu cwi -fhH -nsN -nsN -fhH +lNZ +vpc +vpc +lNZ cwi aeU aeU @@ -95671,7 +95653,7 @@ aeu aeu aeu kwe -fAm +fjR kwe aeu aeu @@ -95679,11 +95661,11 @@ aeu aeu aeu cwi -fGq -pqX -pqX -fGa -fhH +poi +sMs +sMs +cVp +lNZ aeU aeU agt @@ -95930,16 +95912,16 @@ kwe kwe pRx kwe -fAm +fjR aeu aeu aeu aeu -fhH -nsJ -nsJ -nsJ -pNS +lNZ +dTU +dTU +dTU +oFk cwi aeU aeU @@ -96183,7 +96165,7 @@ aeU aeU aeU aeu -fAm +fjR xmT kuU ott @@ -96193,11 +96175,11 @@ aeu aeu aeu cwi -gsf -tcy -tcy -njD -fhH +tOD +gxH +gxH +eKB +lNZ aeu aeU aeU @@ -96440,21 +96422,21 @@ aeU aeU aeu aeu -fAm +fjR lZy bQp klr -fAm +fjR kwe kwe -fAm -fAm -fhH -xDX -nsJ -nsJ -pNS -fhH +fjR +fjR +lNZ +jfq +dTU +dTU +oFk +lNZ aeu aeU aeU @@ -96697,23 +96679,23 @@ aaa aeU aeU aeu -fAm +fjR wWK -lez +puv kwe -qEx +pRm wWK lWq -aMU +dap tGl -bLi +rpj fLN fLN fLN -fqb +sXN cwi -fhH -nsN +lNZ +vpc cwi rcO cwi @@ -96964,16 +96946,16 @@ oii nJn tSm fLN -tUi -haJ +gFh +led mUW -pqX -bLi -urw +sMs +rpj +eai tnO -pFN +mMF enm -fhH +lNZ aeu aeu aeu @@ -97212,25 +97194,25 @@ aeU aeu aeu kwe -xNP -vsn -wjk +cxm +eoz +tCP pQB -jvz +mja vKo kKG pEo -plZ -mvu +fEm +hlD wVC wVC wVC -bGQ +aGj xwL xwL vWy -kNa -fhH +nJq +lNZ aeu aeu aaa @@ -97296,7 +97278,7 @@ amA amA nHK ctb -bsq +mhm onf nHK qJs @@ -97468,22 +97450,22 @@ aeU aeU aeu aeu -fAm +fjR neK -uoE -cSv -tej +pVb +avh +mRu wWK -sSM +dBK gTy -ibP +asX fLN -jGM -wxD -bMx -trP +vMh +iSL +nvj +bfk fLN -tUy +eZE qLH rdS fHi @@ -97727,23 +97709,23 @@ aeu aeu kwe dVy -nlZ -nlZ -frv +oWr +oWr +qMn wWK cHk eCp gzA fLN -psF -psF -fzz -psF +rVX +rVX +gNc +rVX fLN fLN fLN fLN -fhH +lNZ cwi aaa aaa @@ -97980,24 +97962,24 @@ aeu aeu cUZ cUZ -lgK +lSh cUZ cUZ jpV -mZe -mZe +pXo +pXo jpV jpV jpV -fFe +wrA jpV jpV -gnl -gnl +xuG +xuG jpV jpV -gnl -ujf +xuG +ger jsg jsg aeu @@ -98235,26 +98217,26 @@ aeu aeu aeu aeu -lgK -dTX -dTE -eeV +lSh +pBk +oue +fYn qMl -xzH +tnY xXY xXY -rHE -nya +vQN +uiQ jpi cIh ykM -sdX -vCN +vKn +rrE rIF sWf oph kml -dSz +hXa ftx jsg aeu @@ -98493,27 +98475,27 @@ aeu aeu aeu cUZ -aYz -bdS -uXT -oZE +hOq +aUc +tET +omf iAp xXY rFQ dFl -kGV +sTJ kWh tFK yia -dOl +fAF dFl udM ilm vkA jpV -sBC -nfm -lFt +hUG +cAM +uCY aaa aaa aaa @@ -98562,7 +98544,7 @@ kDo fut wDK qps -vnq +ltr sHb rdO aeu @@ -98750,10 +98732,10 @@ aeu aeu aeu cUZ -jVw -nrX -irU -pTR +avn +bVa +ylU +jIb xXY xXY saB @@ -98766,9 +98748,9 @@ paV hbc fIt vei -nga +kjx jpV -evO +jZi jsg jsg aeu @@ -99006,10 +98988,10 @@ aeu aeu aeu aeu -lgK -uli -lgZ -iCl +lSh +ofv +xLQ +blz qMl uOl xXY @@ -99022,14 +99004,14 @@ gnY rxn ove pPs -ikC +uAT jpV cTc kzH cTc kzH -ipO -qyD +juS +qfe aaa aaa aaa @@ -99264,9 +99246,9 @@ aeu aeu aeu cUZ -hBg -qIm -xPM +lpU +iPZ +wqp qMl bDI xXY @@ -99280,13 +99262,13 @@ kgc mmL lda vei -xtx +wAh cTc -noK -ipo -gbh -hCD -qmD +eng +aZA +vPV +bfM +kpS aaa aaa aaa @@ -99520,12 +99502,12 @@ aeu aeu aeu aeu -lgK -gSE -lBc -oZE +lSh +saq +mOw +omf qMl -sXd +dSK xXY xXY soF @@ -99537,13 +99519,13 @@ qyr iIs iiO cHy -liu -duC -rJD -gxe -gxe -hCD -qmD +qFI +vaL +snV +nzG +nzG +bfM +kpS aaa aaa aaa @@ -99779,9 +99761,9 @@ aeu aeu cUZ cUZ -oZE -oZE -pQT +omf +omf +rcR iAp tKm xXY @@ -99795,12 +99777,12 @@ cGU vei tKm iAp -xtD -rJD -lxk -gxe -hCD -qmD +pRo +snV +wQw +nzG +bfM +kpS aaa aaa aaa @@ -100036,7 +100018,7 @@ aeu aeu aeu dFl -xQR +ozl xEG iAp iAp @@ -100052,12 +100034,12 @@ xSM vei rTp rFQ -fbI -rJD -qdT -gxe -hCD -qmD +nJo +snV +wAK +nzG +bfM +kpS aaa aaa aaa @@ -100292,8 +100274,8 @@ aeu aeu aeu aeu -sBg -mZe +har +pXo jpV nUs iAp @@ -100304,17 +100286,17 @@ gzw rJQ rJQ rJQ -nxu +fgM vuo vei lda -lVQ +wsZ cTc -kNw -gxe -gxe -hCD -qmD +iAj +nzG +nzG +bfM +kpS aaa aaa aaa @@ -100550,9 +100532,9 @@ aeu aeu dFl dFl -hpi +dSa hZz -dBR +miR tCB uLm jEG @@ -100567,11 +100549,11 @@ anJ nVA jpV kzH -tfF -dSm -gxe -hCD -qmD +oOQ +hVm +nzG +bfM +kpS aaa aaa aaa @@ -100806,29 +100788,29 @@ aeu aeu aeu ivR -cwT -gZI -gZI -gZI +bCl +hrW +hrW +hrW cTc -oSX -ucb -xcv +fSz +nTC +xWX wEX ncw fqX ncw wEX -gUB -dmU -nzN +nOi +eUr +iUv cTc kzH -jjN -lKf -gxe -hCD -qmD +wNI +rGn +nzG +bfM +kpS aaa aaa aaa @@ -101062,30 +101044,30 @@ aap aeu aeu aeu -sfo -oPA -nOP -wtv -cwT -eIo -gxe -kfo -ibH +sUx +dCL +wlO +fKp +bCl +icW +nzG +mGa +fop xPu aFG kFG lnx aFG -cmK -lRa -gxe -vPy -hCD -gxe -fat -gxe -hCD -qmD +tzC +wtZ +nzG +umn +bfM +nzG +fbT +nzG +bfM +kpS aaa aaa aaa @@ -101319,30 +101301,30 @@ aeU aUz aeu aeu -sfo -oEr +sUx +myX lOK -aCI -gZI -fZF -kXI -kfo -uXn +xcn +hrW +eCf +cCl +mGa +xrY xSw fqX iJt wEX ncw -uSg -lRa -oop -oHt -hCD -gxe -sFx -gxe -hCD -qmD +vBs +wtZ +gVK +nWz +bfM +nzG +apT +nzG +bfM +kpS acm acm aaa @@ -101430,7 +101412,7 @@ euM jiK cmU cmU -mUJ +ptL aeU aeU aeU @@ -101577,29 +101559,29 @@ aeU aeU bVv ivR -hCx -gJK -uGV -gZI -jOt -vrB -eve -thN -wIC +rhJ +oxw +lyw +hrW +dNi +gKF +nOW +mRr +ocT ncw aFG lnx -eBt -bBd -tvh -vrB -kSa -hCD -gxe -pvc -gxe -hCD -qmD +lnu +nwJ +sqm +gKF +uTj +bfM +nzG +wbA +nzG +bfM +kpS aaa acm acm @@ -101833,30 +101815,30 @@ aeu aeU aeU aeU -lQY -qpB -nOP -gZI -gZI +kTu +boa +wlO +hrW +hrW cTc -pgd -ucb -uqU +gLs +nTC +tZq cTc -dWO +psW cTc -dWO +psW kzH -kId -dmU -ybB +tzS +eUr +uVz kzH cTc -fDo -gxe -gxe -hCD -qmD +emi +nzG +nzG +bfM +kpS aaa aaa acm @@ -102090,30 +102072,30 @@ aeu aeu aeU aeU -lQY -pEC -bHJ -cwT -vao -eiy -gxe -kfo -gxe -dWO -hWq -sjz -mYm -dWO -gxe -lRa -gxe -dZT -aUl -rJD -lxk -gxe -hCD -qmD +kTu +gEY +cDP +bCl +jEZ +akF +nzG +mGa +nzG +psW +ckC +xDv +aMT +psW +nzG +wtZ +nzG +gne +hIG +snV +wQw +nzG +bfM +kpS aaa acm acm @@ -102348,29 +102330,29 @@ aeU aeU aeU ivR -iWo -vDz -gZI -kwR -oTp -tBh -kfo -kfo -wDP -kfo -uoK -gok -kGi -gok -uXs -pAv -rLl -xtD -rJD -qdT -gxe -hCD -qmD +gkl +tfD +hrW +nhp +rzX +elP +mGa +mGa +jML +mGa +dQl +itd +vPQ +itd +yfj +kDs +opt +pRo +snV +wAK +nzG +bfM +kpS acm acm aaa @@ -102604,30 +102586,30 @@ bVv aeU aeU aeU -sfo +sUx ivR -dVa -mOE -kwR -gxe -gxe -wJj -gxe -dWO -gxe -mKw -gxe -dWO -gxe -wJj -gxe -dvj -rtJ -rJD -xHR -hCD -hCD -qmD +goy +lNL +nhp +nzG +nzG +ahv +nzG +psW +nzG +cRa +nzG +psW +nzG +ahv +nzG +xDF +hyz +snV +iMQ +bfM +bfM +kpS aaa acm acm @@ -102862,29 +102844,29 @@ aeU aUz aap aeU -sfo +sUx ivR ivR -udE -uiq -dkV -gxe -fkS +tJi +tap +nDN +nzG +hOU kzH -uUS -eAp -qcW +tdN +iJE +xGJ cTc -xqS -xhl -xqS -lNF -ipO -hCD -hCD -hCD -fkl -eXi +hNt +rQg +hNt +mTR +juS +bfM +bfM +bfM +woz +lge aaa acm aaa @@ -103122,25 +103104,25 @@ aeU aeu aeu aeu -ipO -ipO +juS +juS cTc -hWK +nhW cTc -ipO -nzq -uRG -tJm -udE -udE -ipO -ipO -udE -udE -bPY -bPY -bPY -eXi +juS +ode +eTk +qkX +tJi +tJi +juS +juS +tJi +tJi +lsE +lsE +lsE +lge acK acm acm @@ -103188,7 +103170,7 @@ ahV crP uqw beX -mfY +eUf poR amA sDs @@ -103380,15 +103362,15 @@ aeu aeu aeu aeu -ipO -haE -vgE -cfm -udE -iPX -hDq -iPX -tCc +juS +rKy +jfp +dfo +tJi +aTo +teW +aTo +cVV aeu aeu aeu @@ -103409,7 +103391,7 @@ aaa aaa aaa agt -eqM +hNY aeU aeu aeu @@ -103637,35 +103619,35 @@ aeu aeu aeu aeu -udE -udE -kxc -ipO -ipO +tJi +tJi +bDN +juS +juS aeu -ryG -vRK +mbC +dKZ unx unx unx unx unx unx -nkO -nkO -nkO -nkO -nkO -nkO -nkO -nkO -nkO -nkO -nkO -nkO -nkO -nkO -nkO +kkc +kkc +kkc +kkc +kkc +kkc +kkc +kkc +kkc +kkc +kkc +kkc +kkc +kkc +kkc unx lBP aeu @@ -103741,7 +103723,7 @@ lCr cdU clj clO -cne +wun com uhy ceR @@ -103901,11 +103883,11 @@ aeU aeU aaa aaa -sTc -xNj -vBV -ifZ -iBO +rBj +cUc +vlM +gNI +opV aaa acm aaa @@ -103959,7 +103941,7 @@ tuj aVk aST aZc -dZr +xQT cnL beX asg @@ -103994,7 +103976,7 @@ kAX iPo lIQ xwT -hGH +pTz ajd ajd ajd @@ -104421,7 +104403,7 @@ aaa aaa aaa aaa -uyr +aba acm acm acm @@ -104679,7 +104661,7 @@ aaa aaa aaa aaa -feS +bRh aaa aaa aaa @@ -104937,7 +104919,7 @@ aaa aaa aaa aaa -feS +bRh aaa aaa acm @@ -105195,7 +105177,7 @@ aaa aaa aaa aaa -lrp +mzI aaa acm aaa @@ -105453,7 +105435,7 @@ aaa aaa aaa aaa -feS +bRh acm aaa aaa @@ -105711,7 +105693,7 @@ aaa aaa aaa aaa -pYI +acn acm acm acm @@ -105969,7 +105951,7 @@ aaa aaa aaa aaa -lrp +mzI aaa aaa aaa @@ -106227,7 +106209,7 @@ aaa aaa aaa aaa -feS +bRh aaa aaa acm @@ -106263,7 +106245,7 @@ dxK eWO dxK eWO -aSa +hwh axN aye fpz @@ -106485,7 +106467,7 @@ aaa aaa aaa aaa -feS +bRh aaa acm aaa @@ -106520,7 +106502,7 @@ aPE aOp aPE jdX -aFp +vhw nHS pBq aSz @@ -106743,7 +106725,7 @@ aaa aaa aaa aaa -lrp +mzI acm aaa aaa @@ -107001,7 +106983,7 @@ aaa aaa aaa aaa -pYI +acn acm acm acm @@ -107259,7 +107241,7 @@ aaa aaa aaa aaa -feS +bRh aaa aaa aaa @@ -107517,7 +107499,7 @@ aaa aaa aaa aaa -lrp +mzI aaa aaa aaa @@ -107775,7 +107757,7 @@ aaa aaa aaa aaa -feS +bRh aaa aaa aaa @@ -108033,7 +108015,7 @@ aaa aaa aaa aaa -feS +bRh aaa aaa aaa @@ -108291,7 +108273,7 @@ aaa aaa aaa aaa -uyr +aba acm acm acm @@ -108549,7 +108531,7 @@ aaa aaa aaa acm -feS +bRh aaa aaa acm @@ -108562,8 +108544,8 @@ cwq cwq dWw cwp -swi -swi +aIp +aIp cwp cwq arI @@ -108807,7 +108789,7 @@ aaa aaa acm acm -feS +bRh aaa cko vEC @@ -108820,7 +108802,7 @@ sdt ryL cwq cwq -qFB +pRQ cwp cwp vsH @@ -109065,7 +109047,7 @@ aaa aaa acm acm -sTc +rBj eFE rvD rvD @@ -109076,10 +109058,10 @@ aIH ybk qVc iUq -wgM -qGp -fQr -sJY +gBF +kpX +gHF +qLS nTF ylW uOq @@ -109329,13 +109311,13 @@ aeU aeU aeU aeU -qWb +gLp lgT oVl cDk -kzM -kzM -asi +wFM +wFM +oFQ ago eqi kFf @@ -109590,10 +109572,10 @@ agt adH cpb adQ -xhp -lkB -ksY -sJY +fga +ncq +nek +qLS aNu aNC aAb @@ -109847,11 +109829,11 @@ aeu adH oTX adH -kYz -rXS -pTW -pwt -hhs +ppU +wzT +ble +sbZ +xXW aNu aNC viC @@ -110104,25 +110086,25 @@ aeu adH qTs adQ -aTv -kMp -pLW -dTv -sxd +hiy +vdU +dXg +mJU +kOG ago -dww -wan -gNT -sJY -rxd -rCm -hpb +qwL +foX +mlW +qLS +mqE +tcN +wQb ago -rPD -rPD -hJw -uLX -rPD +aEB +aEB +aIQ +fkT +aEB cFK boC uwB @@ -110361,25 +110343,25 @@ aeu adH eWn adH -mHW -rXS -pLW -bTw -hvJ +wCb +wzT +dXg +nNs +qXU ago -fSY -muG -bsS -pxx -hjw -hjw -xRW -sJY -tyo -gpx -fJq -gdB -vyD +wlj +xQG +ixw +wQd +ycN +ycN +mJu +qLS +iCI +aKJ +bcK +ioU +bdf aTJ aSe aYx @@ -110618,25 +110600,25 @@ aeu adQ cCU adQ -ipG -rXS -vrL -xHc -pXI -fmf -yaC -mli -xHc -xHc -xHc -huT -pXI -aGx -hof -bpV -cVo -hAq -dpE +ddw +wzT +mZP +nry +dtr +vEy +anW +gnJ +nry +nry +nry +qKo +dtr +fnz +sMK +jLm +hYC +cJH +rdR tCz rVr alU @@ -110875,25 +110857,25 @@ adH adH cCU adQ -uVr -sQn -djW -tvF -oDw -upg -sqc -sDv -sDv -sDv -sDv -sDv -vgM -xft -xqj -sPA -jMH -lyE -hCJ +dbN +cyn +joZ +mtf +icj +doB +djO +oYt +oYt +oYt +oYt +oYt +uXm +lUa +xYI +uPU +iaZ +gPP +huB jiZ uUY iVs @@ -111132,23 +111114,23 @@ adH abN tSX adQ -xYk -vVg -vNI -ffe -wQI -avj -nzV -ttH -oXm -ffe -emE -ttH -ucS -qiA -nan -end -paF +ezY +bus +rEL +bkz +dJZ +ddR +lqX +otJ +sHF +bkz +pRz +otJ +fqT +oPd +gUq +aKK +qPR sim thp sim @@ -111403,9 +111385,9 @@ rSp xLG xlv cPC -pHF -qLn -cFF +qZQ +xOO +rQe thp nWP pmo @@ -111660,9 +111642,9 @@ tJU xAx xAx qDt -wZK -pjW -wRF +qAS +aKN +sRd nwx iIg sOB @@ -111917,9 +111899,9 @@ xlw eOV cPC cPC -wZK -qZZ -eig +qAS +lzN +jJY jay nNF eiK @@ -112173,10 +112155,10 @@ lUC jEk jcQ qDt -gkE -wZK -uup -viz +iek +qAS +jvb +gCd nwx iIg ktv @@ -112430,10 +112412,10 @@ dER jEk eBE cPC -veU -wZK -den -viz +vjx +qAS +ieW +gCd sim nDq nMi @@ -112687,10 +112669,10 @@ nAd jEk lnE qDt -xAc -wZK -end -flE +ikW +qAS +aKK +epa thp haQ sJf @@ -112766,7 +112748,7 @@ pwM rFl pZk ute -qeZ +wTh fvl jZF dHr @@ -112944,10 +112926,10 @@ yds rUm qCv wwl -juY -wSB -fUa -vvZ +cdO +uvt +aLb +qWm sim rIr stY @@ -113201,10 +113183,10 @@ qDR nfT fHo qDt -xph -wZK -end -qvs +nYf +qAS +aKK +jFN thp sim thp @@ -113256,17 +113238,17 @@ cnz bGG bET idD -lHG -sko -jHj +poH +hUw +dJm rko -pCL -gIv -sHA +cxB +wwG +qwn idD -tzx -gAM -wXD +iti +aag +aFs rko acm acm @@ -113459,9 +113441,9 @@ adQ adH adH adH -jUY -end -flE +oRZ +aKK +epa wAO qxN ieq @@ -113716,9 +113698,9 @@ cDh cCU cDa cDq -cts -jtJ -leh +cDV +aLc +hKk vSx kIG kGZ @@ -113973,9 +113955,9 @@ mpG mpG aCD adH -rPS -dEx -cJm +imf +oYr +fZI wAO mFA kPg @@ -114230,9 +114212,9 @@ nSq mpG mpG adH -vTz -phU -gnm +aZs +aLn +hkx vSx cTs wAO @@ -114307,8 +114289,8 @@ pLV aFI acK aFJ -uns -hlh +vrW +xsu oPj fjj aaa @@ -114486,10 +114468,10 @@ qlk mfD gkb hIH -ihz -bar -dwP -sTl +kVj +afA +aLr +oxH wAO nAC wAO @@ -114542,15 +114524,15 @@ vEA bFz sZW pqo -siG +eQo hdc qSw qeU -xCn +iQJ tZg sia laN -mHk +hmj lFh rmW iIi @@ -114743,10 +114725,10 @@ taM hjE uCR hfA -njf -nAt -tXn -tlr +aFq +aPv +aLy +jhQ vSx wAO uwD @@ -115000,11 +114982,11 @@ pDF jQW qXc qPH -jfQ -npW -end -dEd -eRu +ehq +aIc +aKK +caE +xTE vSx dsO goO @@ -115257,11 +115239,11 @@ wFL eBZ uxN uxN -sXH -tGL -bPg -xyf -jPD +avv +eFy +aLz +xmm +gWS wAO vSx wAO @@ -115513,13 +115495,13 @@ yjd icn itn uxN -sXH -nyK -npt -ldN -gfR -brg -lnX +avv +tVB +aIk +ajJ +voW +uYR +izT klG lSS oYq @@ -115585,7 +115567,7 @@ wxt vTl okk lRG -kWQ +kLu bYt nGB idD @@ -115766,18 +115748,18 @@ yfq yfq qsT fOf -oIS -jAU -iDr -lHU -pHP -oVa -wwY -eIg -qHl -ilN -cxg -aUQ +qmX +chU +brq +aYk +byC +cjh +aIm +cjj +oSa +wCN +noe +seX vVq lhD kpA @@ -115837,12 +115819,12 @@ eum kcG hht nTL -psO +ojS ekZ uRP acT tmq -ieC +mHS mGu nGB idD @@ -116023,18 +116005,18 @@ ssU poU emd inw -yjL -xUY -mWN -sXH -wMl -npx -src -qQQ -jkz -hvI -gGh -rDD +cGx +afu +qag +avv +aDf +oqJ +fHt +cgw +aRk +mQP +dSV +dVA vVq peo nMq @@ -116099,7 +116081,7 @@ fIm nIV eQf nLu -pkY +uaB pen nGB idD @@ -116288,10 +116270,10 @@ cfM cfM cfM cfM -qnW -jXp -qVa -uxQ +aRl +aTs +rcL +kdD klG ymf fPo @@ -116545,10 +116527,10 @@ iYc iXT oCG cfM -lWk -czd -gGh -byW +tmu +wKA +dSV +qrA vVq iaC cNm @@ -116613,7 +116595,7 @@ qvp vTl gkx lRG -gSf +bGh vSV oOf idD @@ -116802,10 +116784,10 @@ adB cXK aIA aCV -xpV -xqc -icG -stX +gaj +pcM +hHI +nGm mWs qUq wBM @@ -116865,12 +116847,12 @@ tIK iqM wgH snK -oYG +gfI iNb oKk vfO tmq -lwP +jCd oCa oOf idD @@ -117059,10 +117041,10 @@ aoD bJy aIJ aLB -cxQ -bEW -gGh -xmU +dnv +qqh +dSV +vKf vVq vtT kLD @@ -117127,7 +117109,7 @@ gKH nIV eQf nLu -uHv +rfY tSH oOf idD @@ -117316,10 +117298,10 @@ aZM uHZ vMP cfM -gwf -thG -wTJ -rOf +iZq +reH +cVv +kJw ygh sYc sYc @@ -117573,10 +117555,10 @@ tYw bav cgu cfM -sww -hou -gGh -eNv +ssb +lzj +dSV +kkN vVq nUG idH @@ -117641,7 +117623,7 @@ qvp vTl gkx lRG -qbM +kpK xvJ oNT idD @@ -117830,10 +117812,10 @@ iRD kSi uZu cfM -wfz -xXr -rTs -vIL +aRv +dEZ +syN +xbN klG eDu inI @@ -117893,12 +117875,12 @@ qMa vjy rjm jsL -tMH +mWk pEg oKk vfO tmq -dxn +wPV nQl oNT idD @@ -118087,10 +118069,10 @@ wWx kyS cfM cfM -nVU -ilN -gGh -pZq +aRw +wCN +dSV +dLD vVq sCG fbQ @@ -118155,7 +118137,7 @@ nUE hsu eQf nLu -ocw +hMF yiQ oNT idD @@ -118343,11 +118325,11 @@ cfU cfM cfM cfM -dZo -dnA -tId -fPr -vzM +xNy +aRy +efq +eFu +isR vVq kks vMa @@ -118599,11 +118581,11 @@ hYd ptl kQU fCI -jRW -mOp -wkC -vto -fAi +tDQ +cGs +cSB +sNL +jYa lSS klG qLx @@ -118669,7 +118651,7 @@ rgg sUj gkx lRG -jDT +hhD miS wrb idD @@ -118856,10 +118838,10 @@ mJM akd lQl vdJ -xno -fHR -akV -bhM +vEN +kQA +iWr +fQx uuQ uuQ sox @@ -118903,7 +118885,7 @@ qsb bFs mQv bFz -ilV +noV uvR kgY iah @@ -118922,11 +118904,11 @@ iXI bDe qWg jtB -lDR +wql cKE vfO tmq -ocW +pKG uhO wrb rko @@ -119113,9 +119095,9 @@ ttY snP lrL lSk -vve -kOW -wMv +cGa +aLV +lNe uuQ sox udt @@ -119183,7 +119165,7 @@ dNV lqo bEa ojE -vgH +csW wrb wrb rko @@ -119370,9 +119352,9 @@ eEU sdZ mrN vjk -nBX -jMm -mqL +yiU +aLZ +reW uuQ gxM jvP @@ -119627,9 +119609,9 @@ eFF iVb gaZ fCI -joz -eJi -leh +xUW +aMc +hKk sox oDY jFP @@ -119687,9 +119669,9 @@ aKw bGl fzm aKD -siR +dRy gyh -wTv +sgs rQI rbQ iNk @@ -119884,9 +119866,9 @@ fyV tXI yhK baH -vyD -dEx -nyY +bdf +oYr +gKl uuQ iBx bkD @@ -120141,9 +120123,9 @@ aBu aEx aEx wKO -uCy -xte -ryb +aIX +aMf +kyf uuQ kbS vev @@ -120398,9 +120380,9 @@ baH aXW baH baH -oOE -xQD -fnG +tQw +tUT +eZQ sox hOv hiW @@ -120655,9 +120637,9 @@ esf aCY wfg ban -kEb -kOW -wrF +osm +aLV +sAw uuQ uuQ tXJ @@ -120912,9 +120894,9 @@ pGg aZJ aRz baW -ffw -xQD -tnB +aJb +tUT +nQT ykS skL tXT @@ -121169,9 +121151,9 @@ aBC hwO aSh baW -ffw -xtg -rEW +aJb +aMh +xZt pQm nnT rnr @@ -121426,9 +121408,9 @@ uQB auq avE baW -ffw -kOW -rEW +aJb +aLV +xZt hBA pdm mRO @@ -121683,9 +121665,9 @@ tvx avk myQ ban -jRh -xQD -rEW +oAZ +tUT +xZt nRM paW iND @@ -121940,9 +121922,9 @@ fEJ aYH aYH aZS -xde -pBp -kmP +aJB +aMl +maX fCL bnR gTf @@ -122197,9 +122179,9 @@ iwy baj ggL aZS -uBh -kOW -rEW +kmn +aLV +xZt tJN pdm gyA @@ -122454,9 +122436,9 @@ iwy aZT bdd aYH -stS -kOW -rEW +aJK +aLV +xZt pSm nyr rGU @@ -122711,9 +122693,9 @@ iwy aZU bgB aZS -ozi -xQD -jBJ +sej +tUT +wZS ykS vYR qfX @@ -122968,9 +122950,9 @@ kDq aEP aVd aYH -stS -kOW -rEW +aJK +aLV +xZt ykS qzc pjT @@ -122993,7 +122975,7 @@ omP pmn gjJ jgS -qnr +pMv brM dBj quK @@ -123225,11 +123207,11 @@ oBJ qtG bQW aZy -wPM -xQD -kJi -nNt -nyY +axo +tUT +ixI +tgH +gKl pwA lHh njh @@ -123482,11 +123464,11 @@ mwX xFs bFj bbQ -oqv -xxa -wdL -ini -vtz +aKb +axz +aNU +aRj +hPE aUE bJJ dhH @@ -123739,11 +123721,11 @@ aAF rfZ lzk aZS -jUC -uaq -rAt -mhW -kOb +hQE +axG +cgX +chr +tzf bia bkG bbH @@ -126105,7 +126087,7 @@ hpx cAE bSr bPJ -eXS +fIn bUN bUN bUN @@ -127068,10 +127050,10 @@ tZI alT ahO sGu -txm +htu arJ alT -iKb +wTj ava ctI kuB @@ -127390,7 +127372,7 @@ kPV cji bUh bXd -eXS +fIn bUN bUN bUN @@ -127398,7 +127380,7 @@ bUN bUN bUN bUN -xGD +vSW bSr bSr iKn @@ -128097,7 +128079,7 @@ alW tuo ava cNi -qLP +wYA cNE cNO cNR @@ -128365,7 +128347,7 @@ bcI uwA vKN aDC -vHI +hWH rbY gqR bcd @@ -128675,7 +128657,7 @@ bPe bOc aeu aeu -eOk +vFc bUN bUN bUN @@ -128876,7 +128858,7 @@ ava acm aXs aXK -baX +huy bbX vzF bby @@ -129133,7 +129115,7 @@ cNY acK aXs aXN -bbt +nsk bca bbD bbK @@ -129446,7 +129428,7 @@ nNl bOc aeu aeu -uRK +jyx cic cic cic @@ -129454,7 +129436,7 @@ cos cic cic cic -xrW +jvg aeu aeu bSr diff --git a/_maps/map_files/MetaStation/MetaStation.dmm b/_maps/map_files/MetaStation/MetaStation.dmm index 73ab40e721a..7154fd99623 100644 --- a/_maps/map_files/MetaStation/MetaStation.dmm +++ b/_maps/map_files/MetaStation/MetaStation.dmm @@ -17,13 +17,6 @@ }, /turf/open/space/basic, /area/space) -"aaj" = ( -/obj/machinery/computer/crew, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/command/bridge) "aat" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -48,6 +41,15 @@ }, /turf/open/floor/iron/dark, /area/security/execution/education) +"aaD" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/incinerator_input{ + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) "aaU" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, @@ -62,14 +64,6 @@ }, /turf/open/floor/iron, /area/maintenance/disposal/incinerator) -"aaX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/machinery/computer/atmos_control/incinerator{ - dir = 4 - }, -/turf/open/floor/iron, -/area/maintenance/disposal/incinerator) "aaZ" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ @@ -84,6 +78,17 @@ "abe" = ( /turf/closed/wall, /area/security/prison) +"abf" = ( +/obj/structure/table/glass, +/obj/machinery/reagentgrinder{ + pixel_y = 8 + }, +/obj/item/toy/figure/virologist{ + pixel_x = -8 + }, +/obj/effect/turf_decal/tile/green/half/contrasted, +/turf/open/floor/iron/white, +/area/medical/virology) "abq" = ( /obj/structure/railing, /obj/machinery/light/small/red/directional/west, @@ -204,6 +209,12 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/security/prison/safe) +"acu" = ( +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/security/courtroom) "acv" = ( /turf/closed/wall/r_wall, /area/security/execution/education) @@ -293,6 +304,15 @@ /obj/item/toy/beach_ball/holoball, /turf/open/floor/iron, /area/security/prison) +"ade" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/security/office) "adh" = ( /turf/open/floor/iron, /area/security/prison) @@ -373,15 +393,6 @@ }, /turf/open/floor/iron/white, /area/security/prison) -"adz" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/medical/pharmacy) "adB" = ( /obj/structure/cable, /mob/living/carbon/human/species/monkey, @@ -571,31 +582,10 @@ /obj/structure/cable, /turf/open/floor/plating, /area/security/prison/safe) -"afL" = ( -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/components/trinary/filter/atmos/plasma{ - dir = 4 - }, -/turf/open/floor/iron, -/area/engineering/atmos) "afM" = ( /obj/structure/cable, /turf/open/floor/iron/dark/corner, /area/security/prison) -"afN" = ( -/obj/machinery/suit_storage_unit/security, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/security/brig) -"afO" = ( -/obj/structure/tank_dispenser/oxygen, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/security/brig) "afQ" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, @@ -654,15 +644,6 @@ icon_state = "platingdmg2" }, /area/maintenance/solars/port/fore) -"agG" = ( -/obj/machinery/newscaster/directional/west, -/obj/machinery/light/directional/west, -/obj/structure/filingcabinet, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/engineering/break_room) "agH" = ( /turf/closed/wall, /area/security/prison/safe) @@ -707,17 +688,6 @@ "ahx" = ( /turf/closed/wall, /area/security/brig) -"ahA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/starboard) "ahF" = ( /obj/structure/disposalpipe/segment{ dir = 6 @@ -783,6 +753,20 @@ /obj/structure/easel, /turf/open/floor/plating, /area/maintenance/disposal) +"ail" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/light/small/directional/north, +/obj/item/clothing/under/misc/assistantformal, +/obj/structure/sign/map/left{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-left-MS"; + pixel_y = 32 + }, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/shoes/winterboots, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/commons/locker) "aim" = ( /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ dir = 6 @@ -827,12 +811,6 @@ /obj/structure/table, /turf/open/floor/iron, /area/security/prison) -"ait" = ( -/obj/machinery/space_heater, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/iron/dark, -/area/security/execution/education) "aiv" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -851,17 +829,6 @@ }, /turf/open/floor/iron/cafeteria, /area/security/prison) -"aiy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/starboard) "aiB" = ( /obj/structure/disposalpipe/segment{ dir = 10 @@ -963,14 +930,6 @@ /obj/structure/sign/directions/evac, /turf/closed/wall, /area/maintenance/aft/lesser) -"ajC" = ( -/obj/machinery/vending/security, -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/security/lockers) "ajF" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/westleft{ @@ -1031,28 +990,12 @@ /obj/structure/table, /turf/open/floor/iron, /area/security/prison) -"akw" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/engineering/storage/tech) "akE" = ( /obj/effect/turf_decal/trimline/red/filled/corner{ dir = 1 }, /turf/open/floor/iron/dark, /area/ai_monitored/security/armory) -"akP" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/westleft{ - dir = 4; - name = "Hydroponics Desk"; - req_one_access_txt = "30;35" - }, -/obj/effect/turf_decal/tile/green/fourcorners, -/turf/open/floor/iron, -/area/service/hydroponics) "akT" = ( /obj/structure/closet/crate/coffin, /turf/open/floor/plating, @@ -1094,6 +1037,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/maintenance/port/aft) +"alj" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/hallway/primary/central) "alq" = ( /turf/closed/wall, /area/maintenance/department/engine) @@ -1177,11 +1125,17 @@ /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/disposal) -"alF" = ( -/obj/item/toy/figure/roboticist, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/robotics/lab) +"alH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random/directional/north, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/fore) "alK" = ( /turf/closed/wall, /area/maintenance/port) @@ -1232,6 +1186,15 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/security/armory) +"amv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white/corner{ + dir = 4 + }, +/area/medical/medbay/lobby) "amL" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -1281,20 +1244,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/port/fore) -"anf" = ( -/obj/item/radio/intercom/directional/west, -/obj/structure/table, -/obj/item/storage/backpack/duffelbag/sec/surgery{ - pixel_y = 5 - }, -/obj/item/clothing/mask/balaclava, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron/dark, -/area/security/execution/education) "anj" = ( /obj/structure/disposaloutlet{ dir = 8; @@ -1312,6 +1261,11 @@ /obj/structure/cable, /turf/open/floor/plating, /area/ai_monitored/security/armory) +"anw" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/service/chapel) "any" = ( /obj/structure/table/wood, /obj/item/folder/blue, @@ -1453,14 +1407,6 @@ /obj/structure/lattice/catwalk, /turf/open/space/basic, /area/space/nearstation) -"aoy" = ( -/obj/structure/table/wood, -/obj/item/book/manual/wiki/security_space_law, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/security/courtroom) "aoG" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -1486,10 +1432,6 @@ /obj/machinery/duct, /turf/open/floor/iron/white, /area/medical/storage) -"aoW" = ( -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/floor/wood, -/area/maintenance/port/aft) "apc" = ( /turf/open/floor/plating, /area/maintenance/department/engine) @@ -1513,6 +1455,11 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) +"apj" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/hallway/primary/port) "apm" = ( /turf/closed/wall, /area/maintenance/solars/starboard/fore) @@ -1602,34 +1549,6 @@ /obj/structure/closet/radiation, /turf/open/floor/iron, /area/maintenance/disposal/incinerator) -"aqg" = ( -/obj/structure/cable, -/obj/structure/table, -/obj/item/clothing/shoes/sneakers/orange{ - pixel_x = -6; - pixel_y = 10 - }, -/obj/item/clothing/shoes/sneakers/orange{ - pixel_x = -6; - pixel_y = -2 - }, -/obj/item/clothing/shoes/sneakers/orange{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/clothing/shoes/sneakers/orange{ - pixel_x = -6; - pixel_y = -8 - }, -/obj/item/clothing/under/rank/prisoner{ - pixel_x = 8; - pixel_y = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron, -/area/security/prison) "aql" = ( /obj/structure/cable, /turf/open/floor/iron/dark/corner{ @@ -1713,6 +1632,18 @@ /obj/machinery/space_heater, /turf/open/floor/plating, /area/maintenance/port) +"aqU" = ( +/obj/machinery/disposal/bin, +/obj/machinery/airalarm/directional/east, +/obj/machinery/light/directional/east, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/cargo/storage) "aqV" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -1736,26 +1667,6 @@ }, /turf/open/floor/plating, /area/hallway/secondary/entry) -"arb" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/door/poddoor/shutters/window{ - id = "armory"; - name = "armory shutters" - }, -/turf/open/floor/iron/dark, -/area/ai_monitored/security/armory) -"arf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Armory"; - req_access_txt = "3" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron/dark, -/area/ai_monitored/security/armory) "arr" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -1778,32 +1689,12 @@ /obj/structure/closet/emcloset, /turf/open/floor/plating, /area/maintenance/fore) -"arD" = ( -/obj/structure/table/glass, -/obj/structure/cable, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/folder/white, -/obj/item/pen/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/green/half/contrasted, -/turf/open/floor/iron/white, -/area/medical/virology) "arK" = ( /obj/effect/landmark/blobstart, /turf/open/floor/plating{ icon_state = "panelscorched" }, /area/maintenance/starboard/fore) -"arN" = ( -/obj/machinery/light/directional/west, -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/science/mixing) "arS" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -1850,16 +1741,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/medical/medbay/central) -"asf" = ( -/obj/structure/rack, -/obj/item/storage/box, -/obj/effect/turf_decal/bot, -/obj/item/radio/off{ - pixel_x = 6 +"asg" = ( +/obj/structure/cable, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 }, -/obj/effect/turf_decal/tile/yellow/half/contrasted, /turf/open/floor/iron, -/area/engineering/break_room) +/area/hallway/primary/central) "asn" = ( /obj/structure/closet/crate, /obj/item/food/breadslice/plain, @@ -1886,27 +1775,6 @@ }, /turf/open/floor/iron/white, /area/security/prison) -"ass" = ( -/obj/machinery/chem_master, -/obj/machinery/light/directional/east, -/obj/structure/noticeboard/directional/east, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/turf/open/floor/iron/white, -/area/medical/pharmacy) -"asw" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/door/airlock/atmos/glass{ - name = "Distribution Loop"; - req_access_txt = "24" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/engineering/atmos/pumproom) "asz" = ( /obj/structure/table, /obj/item/stack/sheet/iron/fifty, @@ -2006,6 +1874,21 @@ }, /turf/open/floor/iron, /area/security/brig) +"atR" = ( +/obj/machinery/modular_computer/console/preset/id{ + dir = 4 + }, +/obj/machinery/requests_console/directional/west{ + announcementConsole = 1; + department = "Chief Medical Officer's Desk"; + departmentType = 5; + name = "Chief Medical Officer's Requests Console" + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/command/heads_quarters/cmo) "atS" = ( /obj/effect/turf_decal/trimline/red/filled/corner{ dir = 8 @@ -2059,16 +1942,6 @@ /obj/item/stock_parts/matter_bin, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aux" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/depsec/engineering, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/security/checkpoint/engineering) "auA" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -2254,20 +2127,6 @@ /obj/effect/mapping_helpers/airlock/abandoned, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"awM" = ( -/obj/structure/table, -/obj/item/storage/medkit/regular{ - pixel_x = 7; - pixel_y = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/cargo/storage) "awP" = ( /obj/item/clothing/gloves/color/rainbow, /obj/item/clothing/shoes/sneakers/rainbow, @@ -2378,37 +2237,6 @@ }, /turf/open/floor/iron/white, /area/medical/treatment_center) -"axA" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/light/directional/west, -/obj/structure/table, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_x = 8 - }, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_y = 4 - }, -/turf/open/floor/iron/dark, -/area/ai_monitored/command/storage/eva) -"axD" = ( -/obj/item/storage/book/bible, -/obj/machinery/light/small/directional/north, -/obj/machinery/newscaster/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Chapel - Fore" - }, -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/service/chapel) "axI" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, @@ -2552,11 +2380,6 @@ dir = 1 }, /area/engineering/atmos) -"azE" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/plating, -/area/commons/toilet/auxiliary) "azK" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/red/filled/line{ @@ -2610,24 +2433,6 @@ /obj/machinery/power/tracker, /turf/open/floor/plating/airless, /area/solars/starboard/fore) -"aAt" = ( -/obj/structure/table/glass, -/obj/item/cartridge/medical{ - pixel_x = -3 - }, -/obj/item/cartridge/medical{ - pixel_x = 3 - }, -/obj/item/cartridge/chemistry{ - pixel_y = 6 - }, -/obj/machinery/light_switch/directional/north, -/obj/machinery/vending/wallmed/directional/west, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/command/heads_quarters/cmo) "aAu" = ( /obj/machinery/holopad, /obj/effect/turf_decal/box/white{ @@ -2766,6 +2571,68 @@ }, /turf/open/floor/carpet, /area/security/detectives_office) +"aBw" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/bottle/morphine{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/item/reagent_containers/glass/bottle/chloralhydrate, +/obj/item/reagent_containers/glass/bottle/toxin{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/reagent_containers/glass/bottle/morphine{ + pixel_x = 5; + pixel_y = 1 + }, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/glass/bottle/facid{ + name = "fluorosulfuric acid bottle"; + pixel_x = -3; + pixel_y = 6 + }, +/obj/item/reagent_containers/syringe{ + pixel_y = 5 + }, +/obj/item/reagent_containers/dropper, +/obj/machinery/airalarm/directional/west, +/obj/machinery/button/ignition{ + id = "executionburn"; + name = "Justice Ignition Switch"; + pixel_x = -25; + pixel_y = 36 + }, +/obj/item/assembly/signaler{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/machinery/button/flasher{ + id = "justiceflash"; + name = "Justice Flash Control"; + pixel_x = -36; + pixel_y = 36; + req_access_txt = "1" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/button/door/directional/west{ + id = "executionfireblast"; + name = "Justice Area Lockdown"; + pixel_y = 24; + req_access_txt = "2" + }, +/obj/machinery/button/door/directional/west{ + id = "SecJusticeChamber"; + name = "Justice Vent Control"; + pixel_x = -36; + pixel_y = 24; + req_access_txt = "3" + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/security/execution/education) "aBz" = ( /obj/machinery/button/door/directional/west{ id = "hop"; @@ -2775,6 +2642,12 @@ /obj/effect/mapping_helpers/ianbirthday, /turf/open/floor/carpet, /area/command/heads_quarters/hop) +"aBA" = ( +/obj/structure/closet/wardrobe/pjs, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/iron/dark, +/area/commons/dorms) "aBF" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -2951,6 +2824,12 @@ /obj/structure/cable, /turf/open/floor/iron/white, /area/science/storage) +"aCU" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/ordnance_mixing_input{ + dir = 1 + }, +/turf/open/floor/engine, +/area/science/mixing/chamber) "aDa" = ( /turf/open/floor/plating, /area/construction/mining/aux_base) @@ -3021,6 +2900,15 @@ /obj/machinery/vending/wardrobe/det_wardrobe, /turf/open/floor/iron/grimy, /area/security/detectives_office) +"aDW" = ( +/obj/machinery/computer/security/mining{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/cargo/miningoffice) "aDY" = ( /obj/machinery/airalarm/directional/south, /turf/open/floor/iron/dark, @@ -3100,16 +2988,6 @@ /obj/effect/turf_decal/tile/blue, /turf/open/floor/iron/dark, /area/command/bridge) -"aFz" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "executionfireblast" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/security/execution/education) "aFA" = ( /obj/structure/rack, /obj/item/book/manual/wiki/security_space_law{ @@ -3187,6 +3065,18 @@ }, /turf/open/floor/iron, /area/security/warden) +"aFS" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/engineering/atmos/pumproom) "aFU" = ( /obj/structure/closet/firecloset, /obj/effect/spawner/random/maintenance, @@ -3245,6 +3135,13 @@ }, /turf/open/floor/plating, /area/maintenance/aft/greater) +"aGF" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/sign/poster/contraband/random/directional/north, +/turf/open/floor/plating, +/area/maintenance/port) "aGJ" = ( /obj/machinery/light/directional/north, /obj/effect/decal/cleanable/dirt, @@ -3284,6 +3181,18 @@ }, /turf/open/space/basic, /area/space) +"aHo" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/science/cytology) "aHp" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed, @@ -3345,37 +3254,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/commons/toilet/auxiliary) -"aHU" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = 8; - pixel_y = 1 - }, -/obj/item/paper_bin{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/paper_bin{ - pixel_x = 8; - pixel_y = 11 - }, -/obj/item/folder/yellow{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/folder/yellow{ - pixel_x = -9; - pixel_y = 1 - }, -/obj/item/paper{ - pixel_x = -5 - }, -/obj/item/radio/intercom/directional/east, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/cargo/storage) "aHX" = ( /obj/structure/bed/roller, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -3423,18 +3301,28 @@ "aIT" = ( /turf/open/floor/iron/dark, /area/security/courtroom) -"aJi" = ( -/obj/structure/chair{ - dir = 4 +"aJp" = ( +/obj/structure/table/glass, +/obj/structure/cable, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 }, -/obj/machinery/newscaster/security_unit/directional/south, -/obj/effect/landmark/start/depsec/engineering, -/obj/item/radio/intercom/directional/west, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ +/obj/item/folder/white, +/obj/item/pen/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/green/half/contrasted, +/turf/open/floor/iron/white, +/area/medical/virology) +"aJr" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ dir = 8 }, -/turf/open/floor/iron, -/area/security/checkpoint/engineering) +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/engineering/atmos) "aJG" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -3446,17 +3334,11 @@ "aJS" = ( /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/ai_upload) -"aKd" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/security/courtroom) +"aJU" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red/half/contrasted, +/turf/open/floor/iron, +/area/security/office) "aKe" = ( /obj/machinery/door/window/southleft{ name = "Court Cell"; @@ -3483,15 +3365,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/maintenance/starboard/fore) -"aKI" = ( -/obj/machinery/computer/security/mining{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/cargo/miningoffice) "aKJ" = ( /obj/machinery/door/poddoor{ id = "Secure Storage"; @@ -3548,17 +3421,15 @@ icon_state = "platingdmg1" }, /area/maintenance/starboard/fore) -"aMa" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, +"aMl" = ( /obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + sortType = 14 }, +/obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/security/lockers) +/area/science/robotics/lab) "aMq" = ( /obj/structure/window/reinforced, /turf/open/space, @@ -3568,6 +3439,12 @@ /obj/structure/lattice, /turf/open/space, /area/space/nearstation) +"aMt" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/white, +/area/medical/treatment_center) "aMA" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 8 @@ -3576,17 +3453,11 @@ /turf/open/floor/iron, /area/construction/storage_wing) "aME" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/line{ +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ dir = 4 }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/research) +/turf/open/floor/iron/white, +/area/command/heads_quarters/cmo) "aMH" = ( /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai_upload) @@ -3636,6 +3507,30 @@ }, /turf/open/floor/iron, /area/security/prison) +"aNK" = ( +/obj/machinery/door/window/northleft{ + dir = 8; + name = "Magboot Storage"; + pixel_x = -1; + req_access_txt = "18" + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/rack, +/obj/item/clothing/shoes/magboots{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ai_monitored/command/storage/eva) "aNL" = ( /obj/structure/cable, /obj/effect/turf_decal/trimline/green/filled/line{ @@ -3643,17 +3538,6 @@ }, /turf/open/floor/iron, /area/security/prison) -"aNP" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/structure/rack, -/obj/item/storage/medkit/regular, -/obj/item/stack/medical/suture, -/obj/item/stack/medical/suture, -/obj/item/stack/medical/mesh, -/obj/item/clothing/glasses/hud/health, -/obj/effect/turf_decal/trimline/green/filled/line, -/turf/open/floor/iron/showroomfloor, -/area/maintenance/starboard/lesser) "aNT" = ( /obj/effect/turf_decal/trimline/brown/filled/corner{ dir = 1 @@ -3661,6 +3545,10 @@ /obj/structure/cable, /turf/open/floor/iron, /area/construction/storage_wing) +"aNV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible, +/turf/open/floor/iron, +/area/engineering/atmos/pumproom) "aNZ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -3738,13 +3626,6 @@ }, /turf/open/floor/iron, /area/service/hydroponics) -"aOw" = ( -/obj/machinery/airalarm/directional/north, -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, -/turf/open/floor/iron/dark, -/area/ai_monitored/command/storage/satellite) "aOy" = ( /turf/closed/wall/r_wall, /area/security/medical) @@ -3755,20 +3636,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/security/prison) -"aOM" = ( -/obj/structure/table, -/obj/item/clothing/glasses/sunglasses{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/clothing/ears/earmuffs{ - pixel_y = 7 - }, -/obj/machinery/light/small/directional/south, -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted, -/turf/open/floor/iron/dark, -/area/security/range) "aOV" = ( /obj/structure/window/reinforced{ dir = 1; @@ -3792,6 +3659,17 @@ }, /turf/open/space, /area/space/nearstation) +"aPf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple/fourcorners, +/turf/open/floor/iron/white, +/area/science/cytology) "aPt" = ( /obj/structure/table, /obj/item/ai_module/supplied/quarantine, @@ -3851,6 +3729,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/commons/storage/primary) +"aPM" = ( +/obj/machinery/vending/wardrobe/chem_wardrobe, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/medical/chemistry) "aQr" = ( /obj/machinery/light/small/directional/north, /turf/open/floor/engine, @@ -3891,6 +3776,10 @@ /obj/machinery/vending/coffee, /turf/open/floor/iron/dark, /area/security/courtroom) +"aQU" = ( +/obj/effect/landmark/start/atmospheric_technician, +/turf/open/floor/iron, +/area/engineering/atmos/pumproom) "aRk" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/cable, @@ -3935,6 +3824,25 @@ }, /turf/open/floor/iron/dark, /area/security/courtroom) +"aSa" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/book/manual/wiki/security_space_law, +/obj/machinery/camera/directional/south{ + c_tag = "Security Post - Cargo" + }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/security/checkpoint/supply) "aSh" = ( /obj/item/radio/intercom/directional/west, /obj/effect/turf_decal/tile/neutral{ @@ -4022,32 +3930,6 @@ }, /turf/open/floor/iron/dark, /area/security/courtroom) -"aTt" = ( -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/machinery/camera/directional/east{ - c_tag = "Prison Isolation Cell"; - network = list("ss13","prison","isolation") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/white, -/area/security/prison) -"aTB" = ( -/obj/structure/rack, -/obj/item/gun/energy/laser{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/gun/energy/laser, -/obj/item/gun/energy/laser{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/ai_monitored/security/armory) "aTC" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" @@ -4055,6 +3937,21 @@ /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/starboard/fore) +"aTG" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/camera/directional/east{ + c_tag = "Bridge - Starboard" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/command/bridge) "aTP" = ( /obj/structure/sign/directions/evac, /obj/structure/sign/directions/medical{ @@ -4135,38 +4032,6 @@ /obj/effect/spawner/random/structure/grille, /turf/open/space/basic, /area/space/nearstation) -"aUq" = ( -/obj/structure/table, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/obj/item/radio/headset/headset_medsci{ - pixel_x = -7; - pixel_y = 4 - }, -/obj/item/storage/box/monkeycubes{ - pixel_x = 6; - pixel_y = 9 - }, -/obj/item/storage/box/gloves{ - pixel_x = 5; - pixel_y = 1 - }, -/obj/machinery/button/door/directional/east{ - id = "rdgene2"; - name = "Secondary Genetics Shutters Control"; - pixel_y = -6; - req_access_txt = "7" - }, -/obj/machinery/button/door/directional/east{ - id = "rdgene"; - name = "Primary Genetics Shutters Control"; - pixel_y = 6; - req_access_txt = "7" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/genetics) "aUs" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -4250,6 +4115,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/science/mixing/hallway) +"aVa" = ( +/obj/effect/turf_decal/tile/blue/anticorner/contrasted, +/turf/open/floor/iron/dark, +/area/command/bridge) "aVc" = ( /obj/structure/table/wood/poker, /obj/effect/decal/cleanable/dirt, @@ -4337,6 +4206,15 @@ }, /turf/open/floor/iron, /area/hallway/secondary/entry) +"aVC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/science/research) "aVO" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -4344,22 +4222,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/hallway/secondary/command) -"aVU" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/hallway/primary/central) -"aVV" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/hallway/primary/central) -"aVW" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/hallway/primary/central) "aWd" = ( /obj/machinery/camera/directional/north{ c_tag = "Central Primary Hallway - Fore" @@ -4396,15 +4258,6 @@ }, /turf/open/space, /area/space/nearstation) -"aWM" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/medical/pharmacy) "aWN" = ( /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai) @@ -4437,17 +4290,6 @@ }, /turf/open/floor/iron, /area/hallway/secondary/entry) -"aWZ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/fore) "aXb" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -4471,6 +4313,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/port/fore) +"aYi" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/medical/pharmacy) "aYm" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -4480,15 +4330,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/central) -"aYn" = ( -/obj/structure/chair{ - name = "Judge" - }, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/security/courtroom) "aYu" = ( /turf/closed/wall, /area/security/checkpoint/engineering) @@ -4499,19 +4340,6 @@ }, /turf/open/space, /area/space/nearstation) -"aYy" = ( -/obj/machinery/camera/directional/west{ - c_tag = "AI Chamber - Port"; - network = list("aicore") - }, -/obj/structure/showcase/cyborg/old{ - dir = 4; - pixel_x = -9; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ai_monitored/turret_protected/ai) "aYz" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -4520,6 +4348,22 @@ }, /turf/open/floor/plating, /area/ai_monitored/turret_protected/ai) +"aYA" = ( +/obj/structure/table/glass, +/obj/item/scalpel{ + pixel_y = 12 + }, +/obj/item/circular_saw, +/obj/item/blood_filter, +/obj/machinery/light/directional/south, +/obj/item/bonesetter, +/obj/machinery/button/door/directional/south{ + id = "main_surgery"; + name = "privacy shutters control" + }, +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/iron/white, +/area/medical/surgery/theatre) "aYC" = ( /obj/structure/sign/warning/docking, /turf/closed/wall, @@ -4542,6 +4386,16 @@ }, /turf/open/floor/iron, /area/hallway/secondary/entry) +"aYO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/poster/contraband/random/directional/north, +/turf/open/floor/plating, +/area/maintenance/starboard/greater) "aYQ" = ( /obj/structure/window/reinforced{ dir = 1 @@ -4647,13 +4501,6 @@ }, /turf/open/floor/iron/white, /area/medical/surgery/theatre) -"bav" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/security/lockers) "baA" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -4713,44 +4560,19 @@ /obj/effect/turf_decal/trimline/brown/filled/corner, /turf/open/floor/iron, /area/construction/storage_wing) -"bbf" = ( -/obj/structure/table/wood, -/obj/effect/spawner/random/bureaucracy/paper, -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"bbn" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 +"bba" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 6 }, -/turf/open/floor/iron, -/area/security/brig) +/obj/item/paicard, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted, +/turf/open/floor/iron/white, +/area/science/lobby) "bbo" = ( /turf/closed/wall, /area/maintenance/solars/port/fore) -"bbF" = ( -/obj/structure/showcase/cyborg/old{ - dir = 4; - pixel_x = -9; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ai_monitored/turret_protected/ai) -"bbH" = ( -/obj/machinery/camera/directional/east{ - c_tag = "AI Chamber - Starboard"; - network = list("aicore") - }, -/obj/structure/showcase/cyborg/old{ - dir = 8; - pixel_x = 9; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ai_monitored/turret_protected/ai) "bbJ" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -4776,6 +4598,18 @@ }, /turf/open/floor/iron/white, /area/medical/abandoned) +"bbO" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/light/small/directional/west, +/obj/machinery/camera/directional/west{ + c_tag = "MiniSat Exterior - Starboard Aft"; + network = list("minisat") + }, +/turf/open/floor/iron/dark, +/area/ai_monitored/aisat/exterior) "bca" = ( /obj/machinery/door/poddoor{ id = "QMLoaddoor2"; @@ -4839,13 +4673,6 @@ dir = 1 }, /area/hallway/secondary/entry) -"bcC" = ( -/obj/machinery/flasher/portable, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/security/lockers) "bcO" = ( /obj/structure/easel, /turf/open/floor/plating{ @@ -4864,6 +4691,51 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/medical/chemistry) +"bdm" = ( +/obj/structure/table, +/obj/item/hand_labeler{ + pixel_y = 11 + }, +/obj/item/stack/package_wrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/package_wrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/hand_labeler_refill{ + pixel_x = -8; + pixel_y = 3 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/cargo/sorting) +"bdu" = ( +/obj/machinery/computer/crew{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen/cmo{ + dir = 4; + pixel_x = -30 + }, +/obj/machinery/keycard_auth/directional/south{ + pixel_x = 6 + }, +/obj/machinery/button/door/directional/south{ + id = "cmoprivacy"; + name = "CMO Privacy Shutters"; + pixel_x = -8; + req_access_txt = "40" + }, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/command/heads_quarters/cmo) "bdE" = ( /obj/structure/closet/firecloset, /turf/open/floor/plating, @@ -4899,18 +4771,6 @@ }, /turf/open/floor/iron, /area/command/teleporter) -"bep" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/machinery/light/small/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "MiniSat Exterior - Starboard Aft"; - network = list("minisat") - }, -/turf/open/floor/iron/dark, -/area/ai_monitored/aisat/exterior) "beq" = ( /obj/structure/sign/warning/vacuum/external, /turf/closed/wall/r_wall, @@ -4965,25 +4825,6 @@ /obj/machinery/atmospherics/components/unary/portables_connector/visible, /turf/open/floor/iron/dark, /area/engineering/supermatter/room) -"bfK" = ( -/obj/structure/closet/emcloset, -/obj/structure/sign/map/left{ - icon_state = "map-left-MS"; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/hallway/primary/starboard) -"bfL" = ( -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security in red at the top, you see engineering in yellow, science in purple, escape in checkered red-and-white, medbay in green, arrivals in checkered red-and-blue, and then cargo in brown."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/hallway/primary/starboard) "bfN" = ( /turf/closed/wall, /area/hallway/primary/starboard) @@ -5041,16 +4882,6 @@ }, /turf/open/floor/iron/dark, /area/engineering/atmos) -"bgK" = ( -/obj/structure/rack, -/obj/item/crowbar/red, -/obj/item/restraints/handcuffs, -/obj/item/wrench, -/obj/effect/turf_decal/tile/green/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/medical/virology) "bgQ" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -5059,6 +4890,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/engineering/main) +"bgR" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/turf/open/floor/iron, +/area/hallway/primary/aft) "bhc" = ( /obj/machinery/door/airlock/highsecurity{ name = "AI Chamber"; @@ -5089,11 +4929,14 @@ /obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plating, /area/maintenance/central) -"bhi" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted, -/turf/open/floor/iron, -/area/service/hydroponics/garden) +"bhm" = ( +/obj/machinery/computer/pandemic, +/obj/structure/cable, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/medical/virology) "bhq" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 @@ -5101,6 +4944,17 @@ /obj/machinery/newscaster/security_unit/directional/west, /turf/open/floor/iron, /area/security/office) +"bhx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/service/hydroponics/garden) "bhE" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron/white, @@ -5110,6 +4964,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, /turf/closed/wall/r_wall, /area/engineering/supermatter) +"bhW" = ( +/obj/item/kirbyplants, +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/iron, +/area/hallway/primary/central) "bih" = ( /obj/structure/chair/comfy{ dir = 8 @@ -5175,32 +5034,31 @@ }, /turf/open/floor/iron/dark, /area/service/cafeteria) +"biL" = ( +/obj/structure/reagent_dispensers/wall/peppertank/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/hallway/secondary/exit/departure_lounge) +"biQ" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/iv_drip, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/medical/treatment_center) "biX" = ( /obj/item/clothing/mask/gas, /turf/open/floor/plating, /area/maintenance/central) -"biY" = ( -/obj/structure/rack, -/obj/item/tank/internals/oxygen, -/obj/item/tank/internals/oxygen, -/obj/item/radio/off, -/obj/item/radio/off, -/obj/item/radio/intercom/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/command/teleporter) "bja" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 }, /turf/open/floor/engine, /area/engineering/atmospherics_engine) -"bjd" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted, -/turf/open/floor/iron/dark, -/area/command/bridge) "bjh" = ( /obj/structure/table/wood, /obj/effect/spawner/random/food_or_drink/booze{ @@ -5226,6 +5084,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/service/janitor) +"bjv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/iron, +/area/service/hydroponics/garden) "bjw" = ( /obj/structure/cable, /turf/open/floor/iron, @@ -5247,12 +5112,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/starboard) -"bjH" = ( -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/security/courtroom) "bjP" = ( /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/aisat/foyer) @@ -5271,16 +5130,6 @@ icon_state = "platingdmg3" }, /area/hallway/secondary/service) -"bjS" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/door/airlock/medical{ - name = "Psychology"; - req_access_txt = "70" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/medical/psychology) "bkg" = ( /obj/machinery/vending/cigarette, /obj/effect/turf_decal/trimline/brown/filled/line{ @@ -5288,31 +5137,20 @@ }, /turf/open/floor/iron, /area/hallway/primary/port) -"bkj" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Auxiliary Tool Storage" - }, -/obj/machinery/airalarm/directional/east, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/commons/storage/tools) "bkB" = ( /obj/item/extinguisher, /turf/open/floor/plating, /area/maintenance/central) -"bkH" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/defibrillator_mount/directional/south, -/obj/machinery/light/directional/south, -/obj/structure/bed/pod{ - desc = "An old medical bed, just waiting for replacement with something up to date."; - name = "medical bed" +"bkP" = ( +/obj/item/retractor, +/obj/item/hemostat{ + pixel_x = -10 }, +/obj/machinery/light/small/directional/south, +/obj/structure/table, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted, /turf/open/floor/iron/white, -/area/medical/treatment_center) +/area/science/robotics/lab) "bkR" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=13.1-Engineering-Enter"; @@ -5329,14 +5167,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/port/fore) -"bkZ" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/security/lockers) "blh" = ( /obj/machinery/computer/security/telescreen/entertainment/directional/west, /obj/machinery/camera/autoname/directional/west, @@ -5355,17 +5185,6 @@ }, /turf/open/floor/engine, /area/engineering/supermatter/room) -"blr" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/white/line, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/storage) "blw" = ( /obj/structure/transit_tube/curved{ dir = 8 @@ -5382,11 +5201,12 @@ /obj/structure/window/reinforced, /turf/open/space, /area/space/nearstation) -"blD" = ( -/obj/machinery/teleport/hub, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ai_monitored/turret_protected/aisat/foyer) +"blA" = ( +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white/corner, +/area/medical/medbay/lobby) "blF" = ( /obj/structure/showcase/cyborg/old{ pixel_y = 20 @@ -5546,17 +5366,17 @@ /obj/effect/spawner/random/trash/mess, /turf/open/floor/wood, /area/maintenance/port/aft) +"bne" = ( +/obj/structure/closet/secure_closet/engineering_chief, +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/command/heads_quarters/ce) "bno" = ( /obj/structure/transit_tube/diagonal, /turf/open/space, /area/space/nearstation) -"bnw" = ( -/obj/machinery/atmospherics/components/tank/air, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/medical/virology) "bnx" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -5611,6 +5431,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/starboard/greater) +"bnK" = ( +/obj/machinery/camera/directional/east{ + c_tag = "Chemistry East"; + network = list("ss13","medbay") + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/medical/chemistry) "bnM" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -5635,6 +5465,25 @@ /obj/structure/sign/directions/evac, /turf/closed/wall, /area/maintenance/aft/greater) +"bot" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "bridge-left" + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/command/bridge) +"boA" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/genetics) "boB" = ( /obj/structure/closet/secure_closet/research_director, /obj/effect/turf_decal/stripes/line{ @@ -5643,20 +5492,44 @@ /obj/machinery/newscaster/directional/west, /turf/open/floor/iron, /area/command/heads_quarters/rd) -"boI" = ( +"boG" = ( +/obj/structure/closet/emcloset, /obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/commons/fitness/recreation) +/area/hallway/secondary/exit/departure_lounge) "boK" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 +/obj/structure/table, +/obj/item/storage/box/evidence{ + pixel_x = 9; + pixel_y = 8 }, -/obj/machinery/atmospherics/components/binary/thermomachine/heater/on{ +/obj/item/hand_labeler{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/storage/box/evidence{ + pixel_x = 9; + pixel_y = 8 + }, +/obj/item/storage/box/evidence{ + pixel_x = 9; + pixel_y = 8 + }, +/obj/item/storage/box/prisoner{ + pixel_x = 9 + }, +/obj/machinery/recharger{ + pixel_x = -5; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ dir = 8 }, -/turf/open/floor/iron/checker, -/area/engineering/atmos/pumproom) +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/security/brig) "boM" = ( /obj/machinery/holopad, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -5669,6 +5542,12 @@ icon_state = "panelscorched" }, /area/maintenance/starboard/greater) +"boQ" = ( +/obj/structure/closet/boxinggloves, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/iron/dark, +/area/commons/fitness/recreation) "boS" = ( /obj/structure/toilet{ pixel_y = 8 @@ -5708,14 +5587,6 @@ "bpc" = ( /turf/open/floor/plating, /area/engineering/supermatter/room) -"bpi" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/machinery/atmospherics/components/trinary/filter/atmos/n2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/engineering/atmos) "bpF" = ( /obj/structure/toilet{ pixel_y = 8 @@ -5753,17 +5624,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, /area/service/library) -"bqe" = ( -/obj/machinery/airalarm/directional/west, -/obj/structure/closet, -/obj/item/crowbar, -/obj/item/assembly/flash/handheld, -/obj/item/radio, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/security/checkpoint/customs) "bqf" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/structure/reagent_dispensers/fueltank, @@ -5788,6 +5648,20 @@ /obj/structure/cable, /turf/open/floor/iron, /area/hallway/primary/port) +"bqn" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/door/airlock/atmos/glass{ + name = "Distribution Loop"; + req_access_txt = "24" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/engineering/atmos/pumproom) "bqo" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment, @@ -5818,18 +5692,6 @@ }, /turf/open/floor/iron, /area/commons/toilet/auxiliary) -"bqH" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/starboard) "bqR" = ( /turf/open/floor/carpet, /area/commons/vacant_room/office) @@ -5839,6 +5701,20 @@ /obj/structure/cable, /turf/open/floor/iron, /area/hallway/primary/starboard) +"bra" = ( +/obj/structure/table, +/obj/item/storage/medkit/regular{ + pixel_x = 7; + pixel_y = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/cargo/storage) "brb" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -5882,6 +5758,19 @@ }, /turf/open/floor/iron, /area/science/misc_lab) +"brM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/robotics/lab) "brO" = ( /obj/structure/transit_tube/diagonal/topleft, /turf/open/space, @@ -6017,21 +5906,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"bsZ" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Starboard Primary Hallway - Tech Storage" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/starboard) "bto" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -6089,16 +5963,6 @@ }, /turf/open/floor/iron, /area/hallway/secondary/entry) -"bua" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/hallway/primary/port) -"buc" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/hallway/primary/port) "bud" = ( /obj/effect/decal/cleanable/glass, /turf/open/floor/plating{ @@ -6130,16 +5994,6 @@ }, /turf/open/floor/iron, /area/security/prison) -"buI" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/hallway/secondary/exit/departure_lounge) "buV" = ( /obj/effect/turf_decal/trimline/blue/filled/line, /turf/open/floor/iron/white, @@ -6214,15 +6068,6 @@ /obj/item/radio/intercom/directional/west, /turf/open/floor/iron/dark, /area/medical/storage) -"bwg" = ( -/obj/machinery/modular_computer/console/preset/cargochat/cargo{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/cargo/sorting) "bwl" = ( /obj/structure/sign/plaques/kiddie/library{ pixel_y = -32 @@ -6232,12 +6077,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/port) -"bwA" = ( -/obj/machinery/light/directional/north, -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/security/office) "bwN" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/iron, @@ -6251,6 +6090,13 @@ dir = 8 }, /area/medical/medbay/lobby) +"bxa" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/commons/storage/tools) "bxn" = ( /obj/structure/chair/office{ dir = 1 @@ -6295,6 +6141,21 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/science/xenobiology) +"bxL" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/thermomachine/heater/on{ + dir = 8 + }, +/turf/open/floor/iron/checker, +/area/engineering/atmos/pumproom) +"bxZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/sign/poster/contraband/random/directional/north, +/turf/open/floor/plating, +/area/maintenance/aft/greater) "byb" = ( /obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, @@ -6310,11 +6171,6 @@ /obj/item/clothing/head/festive, /turf/open/floor/plating, /area/maintenance/fore) -"byu" = ( -/obj/effect/spawner/random/trash/mess, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/wood, -/area/maintenance/port/aft) "byB" = ( /obj/effect/decal/cleanable/dirt, /obj/item/storage/box/drinkingglasses, @@ -6379,20 +6235,6 @@ /obj/structure/cable, /turf/open/floor/iron/white, /area/science/cytology) -"bzG" = ( -/obj/machinery/reagentgrinder, -/obj/machinery/requests_console/directional/west{ - department = "Pharmacy"; - departmentType = 2; - name = "Pharmacy Requests Console"; - receive_ore_updates = 1 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/medical/pharmacy) "bzJ" = ( /turf/closed/wall, /area/hallway/secondary/command) @@ -6404,6 +6246,15 @@ "bzR" = ( /turf/closed/wall/r_wall, /area/hallway/secondary/command) +"bzU" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ + dir = 4 + }, +/turf/open/floor/iron, +/area/engineering/atmos) "bAc" = ( /obj/machinery/light/directional/south, /obj/machinery/door_timer{ @@ -6436,6 +6287,23 @@ /obj/effect/landmark/start/security_officer, /turf/open/floor/iron/dark, /area/security/range) +"bAu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/security/office) +"bAH" = ( +/obj/machinery/air_sensor/ordnance_mixing_tank, +/turf/open/floor/engine, +/area/science/mixing/chamber) "bAJ" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -6598,6 +6466,15 @@ /obj/structure/cable, /turf/open/floor/iron, /area/hallway/primary/central) +"bCg" = ( +/obj/structure/table, +/obj/effect/turf_decal/bot, +/obj/machinery/computer/security/telescreen/ordnance{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/mixing/launch) "bCy" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -6607,13 +6484,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/maintenance/port/aft) -"bCC" = ( -/obj/machinery/light_switch/directional/west, -/obj/machinery/power/smes/engineering, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/engineering/main) "bCD" = ( /turf/closed/wall/r_wall, /area/tcommsat/server) @@ -6621,6 +6491,20 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/tcommsat/server) +"bCF" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyer"; + name = "Medbay"; + req_access_txt = "5" + }, +/turf/open/floor/iron/white, +/area/medical/medbay/central) "bCG" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/sign/warning/vacuum/external, @@ -6685,6 +6569,18 @@ /obj/machinery/light/small/directional/north, /turf/open/floor/iron/dark, /area/engineering/atmos) +"bDl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/service/hydroponics/garden) "bDt" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -6786,6 +6682,11 @@ }, /turf/open/floor/iron/white/corner, /area/hallway/secondary/entry) +"bEv" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/security/brig) "bEB" = ( /obj/structure/disposalpipe/segment, /obj/machinery/navbeacon{ @@ -6821,6 +6722,22 @@ }, /turf/open/floor/iron, /area/hallway/secondary/command) +"bEE" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/storage) +"bEF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white/side, +/area/medical/medbay/central) "bEG" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -6838,17 +6755,18 @@ }, /turf/open/floor/wood, /area/service/theater) -"bEK" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/cargo/miningoffice) "bEN" = ( /obj/effect/turf_decal/bot/right, /turf/open/floor/engine, /area/engineering/atmospherics_engine) +"bEZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/modular_computer/console/preset/cargochat/service{ + dir = 8 + }, +/obj/structure/sign/poster/random/directional/east, +/turf/open/floor/iron, +/area/maintenance/starboard/greater) "bFa" = ( /obj/structure/chair/stool/directional/north, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -6871,20 +6789,6 @@ }, /turf/open/floor/iron, /area/hallway/secondary/entry) -"bFM" = ( -/obj/item/folder/red{ - pixel_y = 3 - }, -/obj/machinery/light/directional/east, -/obj/structure/table/glass, -/obj/item/folder/red{ - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/command/bridge) "bFQ" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -6899,18 +6803,6 @@ /obj/effect/turf_decal/bot_white, /turf/open/floor/iron, /area/science/xenobiology) -"bFU" = ( -/obj/structure/rack, -/obj/machinery/firealarm/directional/west, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/clothing/suit/hazardvest, -/obj/item/multitool, -/obj/effect/spawner/random/maintenance, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/commons/storage/tools) "bFV" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ @@ -7011,11 +6903,6 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/iron, /area/hallway/secondary/command) -"bGS" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/hallway/secondary/command) "bGT" = ( /obj/machinery/door/airlock/maintenance{ req_one_access_txt = "12;17" @@ -7083,6 +6970,27 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/hallway/secondary/entry) +"bHN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/science/research) +"bHO" = ( +/obj/machinery/light/directional/south, +/obj/machinery/doppler_array{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/mixing/launch) "bHT" = ( /obj/machinery/camera/directional/east{ c_tag = "Dormitories - Fore" @@ -7100,6 +7008,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/engineering/break_room) +"bHV" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/firealarm/directional/north, +/obj/structure/tank_holder/extinguisher, +/obj/machinery/camera/directional/east{ + c_tag = "Medbay Cryogenics"; + network = list("ss13","medbay") + }, +/turf/open/floor/iron/white, +/area/medical/cryo) "bHW" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -7115,6 +7033,14 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/hallway/primary/central) +"bIj" = ( +/obj/machinery/atmospherics/components/binary/thermomachine/freezer/on{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/server) "bIk" = ( /obj/structure/chair{ dir = 1 @@ -7223,6 +7149,19 @@ /obj/structure/cable, /turf/open/floor/iron/white/corner, /area/hallway/secondary/entry) +"bJD" = ( +/obj/machinery/door/window{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Theater Stage" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/wood, +/area/service/theater) "bJI" = ( /turf/closed/wall/r_wall, /area/engineering/atmospherics_engine) @@ -7242,15 +7181,6 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, /area/hallway/secondary/command) -"bJT" = ( -/obj/machinery/disposal/bin, -/obj/structure/cable, -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron/dark, -/area/security/office) "bJU" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=8.1-Aft-to-Escape"; @@ -7268,16 +7198,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/carpet, /area/command/heads_quarters/hop) -"bKa" = ( -/obj/machinery/light/directional/east, -/obj/structure/sign/departments/science{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/aft) "bKb" = ( /obj/structure/cable, /turf/open/floor/plating{ @@ -7316,20 +7236,18 @@ }, /turf/open/floor/iron, /area/hallway/secondary/service) -"bKm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" +"bKA" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = 2 }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "bridge-right" - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ +/obj/machinery/light_switch/directional/west, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ dir = 1 }, -/turf/open/floor/iron/dark, -/area/command/bridge) +/turf/open/floor/iron, +/area/service/hydroponics/garden) "bKL" = ( /obj/machinery/telecomms/processor/preset_two, /turf/open/floor/circuit/telecomms/mainframe, @@ -7427,21 +7345,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/commons/toilet/auxiliary) -"bLY" = ( -/obj/machinery/airalarm/directional/west, -/obj/structure/rack, -/obj/item/reagent_containers/glass/bottle/morphine, -/obj/item/storage/box/chemimp{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/storage/box/trackimp, -/obj/item/storage/lockbox/loyalty, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/security/lockers) "bMr" = ( /obj/structure/cable, /turf/open/floor/iron/dark/telecomms, @@ -7474,29 +7377,22 @@ }, /turf/open/floor/iron/white/corner, /area/hallway/secondary/entry) -"bMJ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/plasma_output{ - dir = 1 - }, -/turf/open/floor/engine/plasma, -/area/engineering/atmos) -"bMO" = ( -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "sci-maint-passthrough" - }, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Access"; - req_access_txt = "47" - }, -/obj/structure/disposalpipe/segment{ +"bML" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 4 }, -/turf/open/floor/iron/white, -/area/science/research) +/turf/open/floor/iron, +/area/security/courtroom) +"bMV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/engineering/atmos) "bMZ" = ( /obj/structure/disposalpipe/segment{ dir = 9 @@ -7509,14 +7405,6 @@ "bNb" = ( /turf/closed/wall/mineral/plastitanium, /area/hallway/secondary/entry) -"bNp" = ( -/obj/effect/spawner/random/maintenance, -/obj/structure/closet, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) "bNv" = ( /obj/structure/table/wood, /obj/item/paper_bin{ @@ -7547,6 +7435,12 @@ }, /turf/open/floor/iron, /area/hallway/primary/port) +"bNS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/sign/poster/contraband/random/directional/west, +/turf/open/floor/wood, +/area/service/theater) "bNX" = ( /obj/machinery/telecomms/server/presets/common, /turf/open/floor/circuit/telecomms/mainframe, @@ -7572,18 +7466,6 @@ /obj/item/clothing/mask/cigarette/pipe, /turf/open/floor/plating, /area/maintenance/port) -"bOl" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/engineering/atmos/pumproom) "bOn" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/tile/neutral{ @@ -7592,6 +7474,13 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/hallway/primary/central) +"bOo" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/security/brig) "bOt" = ( /turf/open/floor/plating{ icon_state = "panelscorched" @@ -7613,6 +7502,16 @@ icon_state = "platingdmg2" }, /area/maintenance/central) +"bPb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/tile/purple/half/contrasted, +/turf/open/floor/iron/white, +/area/science/lobby) "bPh" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 @@ -7645,12 +7544,6 @@ /obj/structure/closet/emcloset, /turf/open/floor/plating, /area/maintenance/port) -"bPT" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/plating, -/area/maintenance/aft/greater) "bQc" = ( /obj/structure/chair/stool/directional/south, /obj/machinery/light/small/directional/west, @@ -7682,6 +7575,14 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/medical/storage) +"bQy" = ( +/obj/structure/table, +/obj/item/hand_tele, +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/spawner/random/engineering/tracking_beacon, +/turf/open/floor/iron/dark, +/area/command/teleporter) "bQI" = ( /obj/structure/reagent_dispensers/watertank, /obj/structure/disposalpipe/segment{ @@ -7700,32 +7601,6 @@ /obj/machinery/light_switch/directional/east, /turf/open/floor/iron, /area/service/hydroponics) -"bQT" = ( -/obj/structure/rack, -/obj/item/stack/package_wrap{ - pixel_x = 6 - }, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/item/book/manual/chef_recipes{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/effect/spawner/random/food_or_drink/donkpockets, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 5 - }, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/sign/poster/random/directional/east, -/turf/open/floor/iron/cafeteria, -/area/service/kitchen) "bQW" = ( /obj/structure/sign/warning/radiation, /turf/closed/wall/r_wall, @@ -7782,18 +7657,18 @@ /obj/item/pen, /turf/open/floor/iron/white, /area/science/robotics/lab) -"bSL" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 +"bSF" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 }, -/obj/machinery/light_switch/directional/west, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 1 +/obj/structure/window/reinforced{ + dir = 8 }, -/turf/open/floor/iron, -/area/service/hydroponics/garden) +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/storage) "bSS" = ( /turf/closed/wall, /area/hallway/primary/central) @@ -7822,11 +7697,30 @@ /turf/open/floor/iron, /area/hallway/primary/port) "bTf" = ( -/obj/machinery/light/directional/west, -/obj/structure/cable, -/obj/structure/sign/poster/official/random/directional/west, -/turf/open/floor/iron, -/area/commons/fitness/recreation) +/obj/structure/table/glass, +/obj/structure/reagent_dispensers/wall/virusfood/directional/west, +/obj/machinery/requests_console/directional/south{ + department = "Virology"; + name = "Virology Requests Console"; + receive_ore_updates = 1 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/pen/red, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/stack/sheet/mineral/plasma, +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/medical/virology) "bTn" = ( /turf/closed/wall, /area/maintenance/solars/port/aft) @@ -7925,27 +7819,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/central) -"bUe" = ( -/obj/structure/table, -/obj/item/storage/toolbox/emergency, -/obj/machinery/light_switch/directional/west, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/commons/storage/tools) -"bUz" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/starboard) "bUL" = ( /obj/machinery/telecomms/server/presets/security, /turf/open/floor/circuit/telecomms/mainframe, @@ -8056,16 +7929,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/fore) -"bVv" = ( -/obj/structure/table/glass, -/obj/item/hand_labeler, -/obj/item/radio/headset/headset_med, -/obj/item/radio/intercom/directional/west, -/obj/effect/turf_decal/tile/green/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/medical/virology) "bVT" = ( /obj/effect/landmark/xeno_spawn, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -8166,6 +8029,14 @@ }, /turf/open/floor/iron, /area/hallway/primary/central) +"bXU" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/security/lockers) "bXV" = ( /obj/effect/turf_decal/tile/purple, /turf/open/floor/iron, @@ -8235,6 +8106,14 @@ /obj/machinery/firealarm/directional/north, /turf/open/floor/iron/dark, /area/medical/office) +"bYZ" = ( +/obj/machinery/vending/security, +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/security/lockers) "bZg" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -8279,6 +8158,16 @@ }, /turf/open/floor/iron/kitchen_coldroom/freezerfloor, /area/maintenance/starboard/greater) +"bZA" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/newscaster/directional/east, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/command/heads_quarters/ce) "bZH" = ( /obj/machinery/door/airlock/engineering{ name = "Starboard Bow Solar Access"; @@ -8321,12 +8210,24 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"caj" = ( -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 8 +"caq" = ( +/obj/structure/window/reinforced, +/obj/item/storage/medkit/regular{ + pixel_x = 3; + pixel_y = -3 }, -/turf/open/floor/iron, -/area/cargo/sorting) +/obj/item/storage/medkit/fire{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/medkit/fire, +/obj/item/storage/medkit/fire{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/table/reinforced, +/turf/open/floor/iron/dark, +/area/medical/storage) "car" = ( /obj/structure/cable, /turf/open/floor/iron, @@ -8342,6 +8243,14 @@ }, /turf/open/floor/iron, /area/engineering/atmos) +"caV" = ( +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/genetics) "caX" = ( /obj/effect/turf_decal/trimline/red/filled/corner{ dir = 4 @@ -8491,21 +8400,17 @@ }, /turf/open/floor/iron/dark, /area/service/chapel/office) -"ccU" = ( -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 +"ccM" = ( +/obj/machinery/computer/security/mining, +/obj/machinery/keycard_auth/directional/north, +/obj/item/radio/intercom/directional/north{ + pixel_y = 34 }, /obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4 + dir = 1 }, -/turf/open/floor/iron/white, -/area/medical/chemistry) -"ccX" = ( -/obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/suit_storage_unit/security, -/obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/security/brig) +/area/command/bridge) "cdf" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -8541,10 +8446,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/closed/wall/r_wall, /area/maintenance/disposal/incinerator) -"cdE" = ( -/obj/effect/turf_decal/tile/yellow/fourcorners, -/turf/open/floor/iron, -/area/hallway/primary/aft) "cdI" = ( /obj/effect/turf_decal/tile/purple, /turf/open/floor/iron, @@ -8558,6 +8459,20 @@ }, /turf/open/floor/wood, /area/commons/lounge) +"cet" = ( +/obj/structure/rack, +/obj/item/book/manual/wiki/infections{ + pixel_y = 7 + }, +/obj/item/reagent_containers/syringe/antiviral, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/spray/cleaner, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/medical/virology) "cex" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 4 @@ -8654,6 +8569,13 @@ "cgd" = ( /turf/closed/wall/r_wall, /area/science/lab) +"cgg" = ( +/obj/structure/closet/toolcloset, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/commons/storage/tools) "cgo" = ( /turf/closed/wall/r_wall, /area/science/research) @@ -8668,6 +8590,18 @@ "cgz" = ( /turf/closed/wall/r_wall, /area/maintenance/disposal/incinerator) +"cgA" = ( +/obj/machinery/computer/security/labor{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/security/brig) "cgE" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -8682,18 +8616,6 @@ /obj/machinery/telecomms/server/presets/supply, /turf/open/floor/circuit/telecomms/mainframe, /area/tcommsat/server) -"chP" = ( -/obj/machinery/light/small/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "MiniSat Exterior - Port Fore"; - network = list("minisat") - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/open/floor/iron/dark, -/area/ai_monitored/aisat/exterior) "chR" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -8703,11 +8625,6 @@ /obj/machinery/duct, /turf/open/floor/iron, /area/hallway/secondary/service) -"cig" = ( -/obj/structure/closet/wardrobe/miner, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted, -/turf/open/floor/iron, -/area/cargo/miningoffice) "cik" = ( /obj/machinery/computer/slot_machine{ pixel_y = 2 @@ -8725,6 +8642,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/primary/central) +"ciw" = ( +/obj/machinery/newscaster/directional/north, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/hallway/primary/central) "ciD" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -8752,6 +8678,12 @@ /obj/structure/cable, /turf/open/floor/engine, /area/maintenance/disposal/incinerator) +"cjs" = ( +/obj/machinery/smartfridge/chemistry/virology/preloaded, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/tile/green/half/contrasted, +/turf/open/floor/iron/white, +/area/medical/virology) "cjD" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 4 @@ -8759,12 +8691,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/medical/storage) -"cjE" = ( -/obj/effect/turf_decal/bot, -/obj/item/robot_suit, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/robotics/lab) "cjI" = ( /obj/structure/disposalpipe/segment, /obj/structure/table/wood, @@ -8792,32 +8718,6 @@ icon_state = "platingdmg2" }, /area/space/nearstation) -"ckd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard/aft) -"cke" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera/directional/south{ - c_tag = "Engineering - Desk" - }, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/south, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron, -/area/engineering/break_room) "ckh" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -8893,11 +8793,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, /turf/open/floor/engine, /area/engineering/supermatter/room) -"clz" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/plating, -/area/maintenance/port/fore) "clF" = ( /obj/effect/turf_decal/tile/red{ dir = 8 @@ -8915,6 +8810,18 @@ }, /turf/open/floor/iron, /area/hallway/primary/fore) +"clG" = ( +/obj/structure/sign/map/left{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-left-MS"; + pixel_y = 32 + }, +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/modular_computer/console/preset/engineering, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/engineering/main) "clH" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 @@ -8936,6 +8843,18 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/hallway/primary/central) +"clT" = ( +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Security Office"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron, +/area/security/checkpoint/science) "cmd" = ( /obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior, @@ -8945,18 +8864,6 @@ /obj/structure/cable, /turf/open/floor/engine, /area/maintenance/disposal/incinerator) -"cmh" = ( -/obj/machinery/disposal/bin, -/obj/machinery/firealarm/directional/west, -/obj/machinery/light/directional/west, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/cargo/sorting) "cmt" = ( /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/east, @@ -8993,28 +8900,19 @@ /obj/item/clothing/suit/hazardvest, /turf/open/floor/plating, /area/maintenance/starboard/greater) -"cne" = ( -/obj/machinery/igniter/incinerator_atmos, -/obj/machinery/air_sensor/atmos/incinerator_tank{ - pixel_x = -32; - pixel_y = -32 - }, -/obj/structure/cable, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"cnf" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/incinerator_input{ - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) "cng" = ( /obj/machinery/door/poddoor/incinerator_atmos_aux, /turf/open/floor/engine/vacuum, /area/maintenance/disposal/incinerator) +"cnm" = ( +/obj/item/radio/intercom/directional/north, +/obj/machinery/computer/security, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/security/checkpoint/customs) "cnB" = ( /obj/effect/turf_decal/trimline/blue/filled/corner, /obj/machinery/camera/directional/east{ @@ -9023,6 +8921,12 @@ }, /turf/open/floor/iron/white, /area/medical/medbay/central) +"cnJ" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/iron, +/area/science/mixing) "cnL" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -9031,22 +8935,6 @@ }, /turf/open/floor/plating, /area/medical/pharmacy) -"cnN" = ( -/obj/machinery/light/small/directional/west, -/obj/machinery/door/window{ - base_state = "right"; - icon_state = "right"; - name = "MiniSat Walkway Access" - }, -/obj/machinery/camera/directional/west{ - c_tag = "MiniSat Exterior - Aft Starboard"; - network = list("minisat") - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/ai_monitored/aisat/exterior) "cnS" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, @@ -9085,6 +8973,13 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/starboard/lesser) +"coO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/medical/pharmacy) "coS" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -9158,20 +9053,6 @@ luminosity = 2 }, /area/ai_monitored/command/nuke_storage) -"cpp" = ( -/obj/structure/rack, -/obj/item/book/manual/wiki/infections{ - pixel_y = 7 - }, -/obj/item/reagent_containers/syringe/antiviral, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/spray/cleaner, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/effect/turf_decal/tile/green/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/medical/virology) "cpu" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -9210,12 +9091,21 @@ /obj/item/reagent_containers/food/drinks/shaker, /turf/open/floor/wood, /area/maintenance/port/aft) -"cqe" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/server) +"cpZ" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "CO2 to Pure" + }, +/obj/effect/turf_decal/tile/dark/fourcorners, +/turf/open/floor/iron, +/area/engineering/atmos) "cqg" = ( /obj/effect/spawner/random/vending/colavend, /obj/effect/turf_decal/delivery, @@ -9288,6 +9178,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/primary/starboard) +"crm" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/commons/locker) "crq" = ( /obj/structure/rack, /obj/item/circuitboard/machine/telecomms/bus, @@ -9299,9 +9193,32 @@ /obj/effect/turf_decal/trimline/blue/filled/warning, /turf/open/floor/iron/white, /area/medical/medbay/central) +"crI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/starboard) "crR" = ( /turf/closed/wall/r_wall, /area/science/storage) +"crU" = ( +/obj/machinery/camera/directional/west{ + c_tag = "Chemistry West"; + network = list("ss13","medbay") + }, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/medical/chemistry) "crV" = ( /obj/item/radio/intercom/directional/east, /obj/structure/kitchenspike, @@ -9319,13 +9236,6 @@ /obj/machinery/duct, /turf/open/floor/iron/white, /area/medical/treatment_center) -"csd" = ( -/obj/structure/cable, -/obj/effect/spawner/random/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/floor/plating, -/area/maintenance/port/aft) "csf" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 @@ -9429,19 +9339,19 @@ "ctJ" = ( /turf/open/floor/circuit/green, /area/science/robotics/mechbay) -"ctU" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Auxiliary Tool Storage"; - req_access_txt = "12" +"ctW" = ( +/obj/machinery/chem_dispenser{ + layer = 2.7 }, -/obj/effect/landmark/event_spawn, -/obj/machinery/navbeacon/wayfinding, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/tile/yellow/fourcorners, -/turf/open/floor/iron, -/area/commons/storage/tools) +/obj/machinery/button/door/directional/north{ + id = "pharmacy_shutters"; + name = "pharmacy shutters control"; + pixel_x = 24; + req_access_txt = "5;69" + }, +/turf/open/floor/iron/white, +/area/medical/pharmacy) "ctX" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -9472,6 +9382,32 @@ }, /turf/open/floor/engine, /area/engineering/supermatter) +"cuz" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Starboard Primary Hallway - Tech Storage" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/starboard) +"cuF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/poster/contraband/random/directional/north, +/turf/open/floor/plating, +/area/maintenance/port) "cuN" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/cable, @@ -9485,20 +9421,28 @@ /obj/effect/landmark/start/chief_medical_officer, /turf/open/floor/iron/white, /area/command/heads_quarters/cmo) +"cuY" = ( +/obj/structure/rack, +/obj/item/gun/energy/disabler{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/disabler, +/obj/item/gun/energy/disabler{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/ai_monitored/security/armory) "cva" = ( /turf/closed/wall, /area/maintenance/space_hut) "cvc" = ( /turf/closed/wall, /area/commons/storage/primary) -"cvd" = ( -/obj/structure/sign/warning/radiation/rad_area{ - pixel_y = 32 - }, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/engineering/gravity_generator) "cvl" = ( /obj/structure/closet/crate/freezer/blood, /obj/effect/turf_decal/siding/white, @@ -9588,6 +9532,27 @@ /obj/item/mod/module/thermal_regulator, /turf/open/floor/iron/dark, /area/medical/storage) +"cwz" = ( +/obj/machinery/door/window/northleft{ + dir = 8; + name = "Jetpack Storage"; + pixel_x = -1; + req_access_txt = "18" + }, +/obj/structure/window/reinforced, +/obj/structure/rack, +/obj/item/tank/jetpack/carbondioxide{ + pixel_x = 4; + pixel_y = -1 + }, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/tank/jetpack/carbondioxide{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ai_monitored/command/storage/eva) "cwB" = ( /obj/effect/turf_decal/stripes/line{ dir = 5 @@ -9596,6 +9561,12 @@ /obj/machinery/light_switch/directional/north, /turf/open/floor/iron, /area/command/gateway) +"cwJ" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/medical/chemistry) "cwY" = ( /obj/structure/table, /obj/item/storage/toolbox/emergency, @@ -9697,17 +9668,6 @@ /obj/machinery/light/directional/north, /turf/open/floor/wood, /area/service/library) -"cyI" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos/co2{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/engineering/atmos) "cyK" = ( /turf/closed/wall/r_wall, /area/science/mixing) @@ -9727,9 +9687,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/white/smooth_large, /area/medical/medbay/central) -"czb" = ( -/turf/open/floor/iron, -/area/engineering/atmos/pumproom) "czh" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -9763,6 +9720,16 @@ icon_state = "platingdmg2" }, /area/maintenance/starboard/aft) +"czU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/iron, +/area/hallway/secondary/service) "czV" = ( /obj/machinery/light/directional/east, /obj/structure/cable, @@ -9795,24 +9762,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) -"cAx" = ( -/obj/structure/rack, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/wallframe/camera, -/obj/item/wallframe/camera, -/obj/item/wallframe/camera, -/obj/item/wallframe/camera, -/obj/item/assault_pod/mining, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 +"cAy" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/iron, -/area/construction/mining/aux_base) +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/medical/virology) "cAH" = ( /obj/machinery/door/poddoor/shutters{ id = "ordnanceaccess"; @@ -9820,6 +9779,15 @@ }, /turf/open/floor/iron, /area/science/mixing) +"cAN" = ( +/obj/structure/closet/secure_closet/cytology, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/science/cytology) "cAO" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, @@ -9868,6 +9836,15 @@ /obj/effect/spawner/random/structure/chair_maintenance, /turf/open/floor/plating, /area/maintenance/aft/lesser) +"cBo" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/security/prison) "cBv" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, @@ -9995,30 +9972,12 @@ "cCq" = ( /turf/closed/wall/r_wall, /area/science/robotics/lab) -"cCv" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/reagent_dispensers/wall/peppertank/directional/east, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/security/checkpoint/engineering) "cCy" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"cCA" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron/dark, -/area/command/gateway) "cCG" = ( /obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ dir = 8 @@ -10052,6 +10011,12 @@ /obj/structure/cable, /turf/open/floor/grass, /area/medical/virology) +"cCL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/oxygen_output{ + dir = 1 + }, +/turf/open/floor/engine/o2, +/area/engineering/atmos) "cCM" = ( /obj/structure/lattice/catwalk, /obj/item/reagent_containers/food/drinks/bottle/rum{ @@ -10071,20 +10036,30 @@ }, /turf/open/space/basic, /area/space/nearstation) +"cCN" = ( +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/structure/table, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/machinery/airalarm/directional/west, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ai_monitored/command/storage/eva) "cCO" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment, /turf/open/floor/iron/white, /area/medical/medbay/central) -"cCV" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/engineering/break_room) "cDh" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -10098,6 +10073,12 @@ "cDi" = ( /turf/closed/wall, /area/science/robotics/lab) +"cDr" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/tier_1, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/storage) "cDv" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -10138,9 +10119,30 @@ /obj/structure/chair/sofa/left, /turf/open/floor/carpet, /area/medical/psychology) +"cEa" = ( +/obj/effect/landmark/start/chief_engineer, +/obj/structure/chair/office/light{ + dir = 1; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron, +/area/command/heads_quarters/ce) "cEf" = ( /turf/closed/wall, /area/hallway/primary/aft) +"cEw" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/button/door/directional/south{ + id = "chapel_shutters_parlour"; + name = "chapel shutters control" + }, +/turf/open/floor/iron/dark, +/area/service/chapel/funeral) "cEz" = ( /obj/structure/closet/wardrobe/grey, /turf/open/floor/plating, @@ -10185,6 +10187,11 @@ "cEN" = ( /turf/open/floor/carpet, /area/medical/psychology) +"cEU" = ( +/obj/item/toy/figure/roboticist, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/robotics/lab) "cFb" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -10192,6 +10199,14 @@ }, /turf/open/floor/iron, /area/hallway/primary/aft) +"cFc" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random/maintenance, +/obj/item/storage/belt/utility, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, +/turf/open/floor/iron, +/area/engineering/break_room) "cFj" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 6 @@ -10280,16 +10295,6 @@ /obj/item/toy/cattoy, /turf/open/floor/plating, /area/medical/abandoned) -"cFQ" = ( -/obj/structure/table/wood, -/obj/item/food/grown/harebell, -/obj/item/food/grown/harebell, -/obj/item/food/grown/harebell, -/obj/item/food/grown/harebell, -/obj/item/food/grown/harebell, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/service/chapel) "cFR" = ( /obj/structure/chair/sofa/corp/left, /obj/effect/turf_decal/tile/neutral{ @@ -10352,17 +10357,23 @@ }, /turf/open/floor/wood, /area/commons/vacant_room/office) +"cGs" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/red/box, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/science/cytology) "cGB" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/chair/office/light, /turf/open/floor/iron/white, /area/medical/abandoned) -"cGI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrous_output{ - dir = 1 - }, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) "cGJ" = ( /obj/structure/cable, /obj/machinery/holopad, @@ -10386,15 +10397,6 @@ }, /turf/open/floor/wood/parquet, /area/medical/psychology) -"cGW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/engineering/break_room) "cHg" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ @@ -10502,15 +10504,6 @@ dir = 4 }, /area/medical/medbay/central) -"cHT" = ( -/obj/machinery/flasher/directional/east{ - id = "AI"; - pixel_y = 26 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/holopad/secure, -/turf/open/floor/iron/dark, -/area/ai_monitored/turret_protected/ai) "cHY" = ( /obj/structure/window/reinforced{ dir = 4 @@ -10523,9 +10516,26 @@ /obj/machinery/light/small/directional/south, /turf/open/floor/iron, /area/science/xenobiology) +"cIb" = ( +/obj/machinery/airalarm/directional/north, +/obj/item/kirbyplants{ + icon_state = "applebush" + }, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/hallway/primary/central) "cIg" = ( /turf/closed/wall/r_wall, /area/science/server) +"cIh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/green/fourcorners, +/turf/open/floor/iron, +/area/hallway/primary/central) "cIl" = ( /obj/structure/cable, /turf/open/floor/wood, @@ -10560,20 +10570,19 @@ }, /turf/open/floor/engine, /area/engineering/atmospherics_engine) -"cIL" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/server) -"cIN" = ( -/obj/structure/cable, +"cIY" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron, -/area/construction/mining/aux_base) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/storage) "cJe" = ( /obj/structure/sign/warning/vacuum/external{ pixel_y = -32 @@ -10601,26 +10610,20 @@ dir = 4 }, /area/medical/medbay/central) -"cJy" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/hallway/secondary/exit/departure_lounge) "cJz" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/hallway/secondary/exit/departure_lounge) -"cJC" = ( -/obj/machinery/vending/coffee, -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - pixel_y = 32 +/obj/structure/window/reinforced, +/obj/machinery/computer/atmos_control/nitrogen_tank{ + dir = 1 }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/hallway/secondary/exit/departure_lounge) +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/machinery/atmospherics/pipe/bridge_pipe/dark/visible{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ + dir = 4 + }, +/turf/open/floor/iron, +/area/engineering/atmos) "cJF" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -10637,10 +10640,6 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) -"cJT" = ( -/obj/structure/fluff/iced_abductor, -/turf/open/misc/asteroid/basalt/airless, -/area/space/nearstation) "cJW" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ dir = 1; @@ -10654,14 +10653,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/wood, /area/command/corporate_showroom) -"cKa" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/security/office) "cKc" = ( /obj/machinery/door/airlock{ name = "Theater Stage"; @@ -10673,20 +10664,6 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/greater) -"cKd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/research) "cKh" = ( /obj/effect/landmark/event_spawn, /obj/effect/turf_decal/tile/neutral, @@ -10709,14 +10686,35 @@ /obj/structure/cable, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) +"cKH" = ( +/obj/structure/cable, +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/sign/poster/contraband/random/directional/east, +/turf/open/floor/plating, +/area/maintenance/port/aft) "cKP" = ( /turf/closed/wall/r_wall, /area/maintenance/solars/starboard/aft) -"cKR" = ( -/obj/structure/closet/secure_closet/miner, -/obj/effect/turf_decal/tile/brown/half/contrasted, +"cLe" = ( +/obj/item/cartridge/engineering{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/cartridge/engineering{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/cartridge/engineering{ + pixel_x = 3 + }, +/obj/structure/table/reinforced, +/obj/item/cartridge/atmos, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, /turf/open/floor/iron, -/area/cargo/miningoffice) +/area/command/heads_quarters/ce) "cLm" = ( /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) @@ -10961,18 +10959,6 @@ /obj/structure/cable, /turf/open/floor/engine/vacuum, /area/maintenance/disposal/incinerator) -"cNJ" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/construction/mining/aux_base) -"cNM" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/security/office) "cNN" = ( /obj/structure/flora/ausbushes/fernybush, /obj/structure/flora/ausbushes/fullgrass, @@ -11004,6 +10990,22 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/medical/medbay/central) +"cNY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/research) "cOa" = ( /obj/structure/cable, /obj/machinery/power/turbine{ @@ -11022,6 +11024,13 @@ }, /turf/open/floor/iron, /area/engineering/atmos) +"cOc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/beerkeg, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/wood, +/area/service/bar) "cOd" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -11032,6 +11041,10 @@ /obj/effect/turf_decal/siding/purple, /turf/open/floor/iron/white, /area/science/research) +"cOf" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/command/gateway) "cOo" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -11060,6 +11073,21 @@ /obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/wood, /area/commons/lounge) +"cOI" = ( +/obj/structure/table, +/obj/item/stack/wrapping_paper, +/obj/item/stack/wrapping_paper{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/cargo/sorting) "cOT" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -11089,21 +11117,6 @@ "cPb" = ( /turf/closed/wall, /area/hallway/secondary/exit/departure_lounge) -"cPi" = ( -/obj/structure/rack, -/obj/item/storage/box/flashes{ - pixel_x = 3 - }, -/obj/item/storage/box/teargas{ - pixel_x = 1; - pixel_y = -2 - }, -/obj/item/gun/grenadelauncher, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/ai_monitored/security/armory) "cPm" = ( /obj/machinery/conveyor{ dir = 1; @@ -11170,18 +11183,17 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/hallway/secondary/exit/departure_lounge) -"cPz" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/engineering/glass{ - name = "Shared Engineering Storage"; - req_one_access_txt = "32;19" +"cPC" = ( +/obj/structure/rack, +/obj/item/lighter, +/obj/item/clothing/glasses/meson, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/button/door/directional/south{ + id = "ceprivacy"; + name = "Privacy Shutters Control" }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/turf/open/floor/iron, -/area/engineering/storage_shared) +/turf/open/floor/iron/dark, +/area/command/heads_quarters/ce) "cPO" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/cable, @@ -11216,6 +11228,20 @@ }, /turf/open/floor/iron, /area/science/xenobiology) +"cQl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "bridge-right" + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/command/bridge) "cQq" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 @@ -11232,6 +11258,12 @@ /obj/item/radio/intercom/directional/east, /turf/open/floor/iron/chapel, /area/service/chapel) +"cQH" = ( +/obj/structure/closet/crate/freezer/surplus_limbs, +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/iron/white, +/area/medical/surgery/theatre) "cQI" = ( /obj/structure/bed, /obj/item/bedsheet/dorms, @@ -11480,21 +11512,6 @@ /obj/machinery/space_heater, /turf/open/floor/plating, /area/maintenance/department/science/xenobiology) -"cTF" = ( -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/door/firedoor/heavy, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "sci-toxins-passthrough" - }, -/obj/machinery/door/airlock/research{ - name = "Ordnance Gas Storage"; - req_access_txt = "8" - }, -/turf/open/floor/iron/white, -/area/science/storage) "cTM" = ( /obj/machinery/camera/directional/west{ c_tag = "Medbay Main Hallway- South"; @@ -11544,16 +11561,28 @@ }, /turf/open/floor/iron, /area/hallway/primary/starboard) -"cUy" = ( +"cUs" = ( +/obj/structure/table, +/obj/effect/turf_decal/siding/purple{ + dir = 9 + }, +/obj/item/toy/figure/geneticist, +/obj/item/radio/intercom/directional/west, +/obj/item/storage/pill_bottle/mutadone{ + pixel_x = -9 + }, /obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/light/directional/south, -/obj/structure/rack, -/obj/item/clothing/under/color/blue, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/neck/tie/blue, -/obj/structure/sign/poster/official/random/directional/south, /turf/open/floor/iron/dark, -/area/commons/fitness/recreation) +/area/science/genetics) +"cUI" = ( +/obj/machinery/light/small/directional/south, +/obj/machinery/camera/directional/south{ + c_tag = "MiniSat Exterior - Space Access"; + network = list("minisat") + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ai_monitored/aisat/exterior) "cUJ" = ( /obj/effect/spawner/random/maintenance, /obj/structure/cable, @@ -11622,17 +11651,6 @@ }, /turf/open/space/basic, /area/space) -"cVH" = ( -/obj/structure/table/reinforced, -/obj/structure/cable, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/security/checkpoint/customs) "cVP" = ( /obj/structure/window/reinforced{ dir = 1; @@ -11640,13 +11658,6 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/aisat/exterior) -"cVQ" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/construction/storage_wing) "cVU" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/spawner/random/medical/patient_stretcher, @@ -11654,6 +11665,12 @@ icon_state = "panelscorched" }, /area/medical/abandoned) +"cWh" = ( +/obj/machinery/power/smes/engineering, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/engineering/main) "cWt" = ( /obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ dir = 10 @@ -11661,29 +11678,19 @@ /obj/structure/cable, /turf/open/floor/iron, /area/engineering/atmos) -"cWy" = ( +"cWF" = ( +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/machinery/door/airlock/research{ + name = "Research and Development Lab"; + req_one_access_txt = "7" + }, +/obj/machinery/door/firedoor, /obj/structure/cable, +/obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/sorting/mail{ - sortType = 27 - }, -/obj/effect/turf_decal/tile/green/half/contrasted, /turf/open/floor/iron/white, -/area/medical/virology) -"cWC" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 9 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/meter/atmos/atmos_waste_loop, -/obj/structure/cable, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/engineering/atmos/pumproom) +/area/science/lab) "cWK" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -11718,6 +11725,13 @@ }, /turf/open/floor/iron, /area/science/misc_lab) +"cXr" = ( +/obj/machinery/chem_mass_spec, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/medical/pharmacy) "cXC" = ( /obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, @@ -11755,16 +11769,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/primary/aft) -"cYa" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Medbay Surgery C"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/medical/surgery/aft) "cYz" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -11863,6 +11867,12 @@ }, /turf/open/floor/iron/white/corner, /area/hallway/secondary/entry) +"cZD" = ( +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/command/bridge) "cZE" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -11905,22 +11915,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark, /area/command/heads_quarters/rd) -"dan" = ( -/obj/machinery/light/directional/south, -/obj/structure/rack, -/obj/item/storage/toolbox/emergency, -/obj/item/storage/toolbox/emergency{ - pixel_x = -2; - pixel_y = -3 - }, -/obj/item/wrench, -/obj/item/multitool, -/obj/machinery/newscaster/directional/south, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/command/bridge) "day" = ( /obj/structure/cable, /obj/effect/turf_decal/trimline/brown/filled/line{ @@ -11954,6 +11948,20 @@ /obj/effect/turf_decal/siding/purple, /turf/open/floor/iron/white, /area/science/lobby) +"daO" = ( +/obj/structure/rack, +/obj/item/gun/ballistic/shotgun/riot, +/obj/item/gun/ballistic/shotgun/riot{ + pixel_y = 6 + }, +/obj/item/gun/ballistic/shotgun/riot{ + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/ai_monitored/security/armory) "daV" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -11983,18 +11991,6 @@ }, /turf/open/floor/engine, /area/science/xenobiology) -"dbu" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/plasma, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/storage) "dbv" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -12028,6 +12024,12 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/maintenance/solars/starboard/aft) +"dci" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos/pumproom) "dcr" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -12075,6 +12077,13 @@ icon_state = "panelscorched" }, /area/maintenance/port/fore) +"ddr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/iron/dark, +/area/ai_monitored/command/nuke_storage) "ddv" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -12083,6 +12092,18 @@ }, /turf/open/floor/plating, /area/maintenance/aft/greater) +"ddw" = ( +/obj/machinery/door/window/brigdoor{ + name = "Arrivals Security Checkpoint"; + pixel_y = -8; + req_access_txt = "1" + }, +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/red/half/contrasted, +/turf/open/floor/iron, +/area/security/checkpoint/customs) "ddz" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -12092,21 +12113,6 @@ /obj/effect/turf_decal/siding/purple, /turf/open/floor/iron/white, /area/science/research) -"ddB" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Science Robotics Workshop"; - network = list("ss13","rd") - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light_switch/directional/north{ - pixel_x = 9 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/robotics/lab) "ddD" = ( /obj/machinery/door/airlock{ id_tag = "Cabin2"; @@ -12131,12 +12137,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/closed/wall, /area/maintenance/starboard/greater) -"ddO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron/dark, -/area/security/execution/education) "ddR" = ( /obj/machinery/power/apc/auto_name/directional/west, /obj/structure/table/reinforced, @@ -12219,6 +12219,12 @@ }, /turf/open/floor/carpet, /area/command/heads_quarters/hos) +"dfl" = ( +/obj/machinery/computer/bank_machine, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ai_monitored/command/nuke_storage) "dfo" = ( /obj/structure/cable, /obj/effect/turf_decal/trimline/brown/filled/line, @@ -12235,18 +12241,6 @@ }, /turf/open/floor/iron/dark, /area/engineering/break_room) -"dfG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/research{ - name = "Genetics Lab"; - req_access_txt = "9" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/purple/fourcorners, -/turf/open/floor/iron/white, -/area/science/genetics) "dfX" = ( /obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ dir = 6 @@ -12362,6 +12356,17 @@ /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, /area/maintenance/department/engine) +"dgP" = ( +/obj/item/storage/book/bible, +/obj/machinery/light/small/directional/north, +/obj/machinery/newscaster/directional/north, +/obj/machinery/camera/directional/north{ + c_tag = "Chapel - Fore" + }, +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/service/chapel) "dgQ" = ( /obj/structure/table, /obj/item/folder/blue{ @@ -12371,22 +12376,55 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/security/office) +"dgV" = ( +/obj/machinery/atmospherics/components/tank/air, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/medical/virology) "dgX" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 4 }, /turf/open/floor/iron, /area/security/prison) -"dhe" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 +"dhb" = ( +/obj/structure/table, +/obj/item/stack/sheet/plasteel{ + amount = 10 }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 +/obj/item/stack/rods/fifty, +/obj/effect/spawner/random/trash/janitor_supplies, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, +/turf/open/floor/iron, +/area/construction/mining/aux_base) +"dhg" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/machinery/light_switch/directional/north, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 1 }, /turf/open/floor/iron, -/area/engineering/break_room) +/area/security/checkpoint/customs) +"dhh" = ( +/obj/structure/closet/secure_closet/security/engine, +/obj/machinery/airalarm/directional/east, +/obj/machinery/requests_console/directional/south{ + department = "Security"; + departmentType = 5; + name = "Security Requests Console" + }, +/obj/machinery/firealarm/directional/south{ + pixel_x = 26 + }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted, +/turf/open/floor/iron, +/area/security/checkpoint/engineering) "dhj" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -12433,14 +12471,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/engineering/atmos) -"djb" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/iron, -/area/science/mixing) "djf" = ( /obj/machinery/requests_console/directional/north{ department = "Chapel"; @@ -12481,6 +12511,11 @@ dir = 1 }, /area/engineering/main) +"dju" = ( +/obj/structure/bed/roller, +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/iron, +/area/hallway/primary/central) "djw" = ( /turf/open/floor/iron/dark, /area/security/interrogation) @@ -12532,13 +12567,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/solars/port/fore) -"dkm" = ( -/obj/structure/disposalpipe/junction/yjunction, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white/side, -/area/medical/medbay/central) "dkn" = ( /obj/structure/rack{ icon = 'icons/obj/stationobjs.dmi'; @@ -12599,13 +12627,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/commons/fitness/recreation) -"dlu" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/poster/contraband/random/directional/west, -/turf/open/floor/plating, -/area/maintenance/port/aft) "dlA" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -12634,6 +12655,37 @@ /obj/machinery/light/directional/south, /turf/open/floor/iron/freezer, /area/security/prison) +"dlZ" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/table, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = 7; + pixel_y = -3 + }, +/obj/item/reagent_containers/glass/bottle/multiver{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/item/reagent_containers/syringe/epinephrine{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_y = 28 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/medical/medbay/central) "dma" = ( /obj/effect/landmark/start/captain, /obj/structure/chair/comfy/brown, @@ -12642,16 +12694,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, /area/command/heads_quarters/captain/private) -"dmc" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/mixing/launch) "dme" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -12672,6 +12714,18 @@ /obj/structure/cable, /turf/open/floor/iron, /area/security/prison) +"dmL" = ( +/obj/structure/table, +/obj/effect/spawner/random/entertainment/deck, +/obj/effect/spawner/random/entertainment/cigarette_pack{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/cargo/miningoffice) "dmU" = ( /obj/machinery/computer/security{ dir = 8 @@ -12703,22 +12757,25 @@ /obj/structure/closet/emcloset, /turf/open/floor/plating, /area/maintenance/port/fore) -"dnx" = ( -/obj/structure/closet/secure_closet/injection{ - name = "educational injections"; - pixel_x = 2 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/security/execution/education) "dnz" = ( /obj/machinery/space_heater, /turf/open/floor/plating, /area/maintenance/starboard/fore) +"dnA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Starboard Primary Hallway" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/starboard) "dnF" = ( /turf/open/floor/plating{ icon_state = "panelscorched" @@ -12747,16 +12804,6 @@ icon_state = "platingdmg3" }, /area/maintenance/port/fore) -"dod" = ( -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/genetics) "doh" = ( /turf/open/floor/plating{ icon_state = "platingdmg2" @@ -12861,6 +12908,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/carpet, /area/command/heads_quarters/captain/private) +"dpG" = ( +/obj/structure/table, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/spawner/random/entertainment/dice, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/cargo/miningoffice) "dpY" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ @@ -12889,14 +12945,6 @@ /obj/machinery/light/small/directional/south, /turf/open/floor/iron/dark, /area/engineering/storage/tcomms) -"dqb" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/smartfridge/organ, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "main_surgery" - }, -/turf/open/floor/iron/dark, -/area/medical/treatment_center) "dqe" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, @@ -12936,15 +12984,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"dqF" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/medical/medbay/lobby) "dqT" = ( /turf/closed/wall/r_wall, /area/maintenance/starboard/fore) @@ -12962,21 +13001,18 @@ }, /turf/open/floor/iron, /area/hallway/secondary/service) +"dqV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/science/cytology) "drQ" = ( /turf/open/floor/plating{ icon_state = "platingdmg2" }, /area/maintenance/port/fore) -"drT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Ordnance Gas Storage Maintenance"; - req_access_txt = "8" - }, -/turf/open/floor/iron/dark, -/area/maintenance/starboard/aft) "dsa" = ( /obj/machinery/photocopier, /turf/open/floor/iron/white, @@ -12993,23 +13029,36 @@ }, /turf/open/floor/iron/dark, /area/engineering/supermatter/room) +"dsi" = ( +/obj/machinery/rnd/production/techfab/department/cargo, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/directional/east{ + c_tag = "Cargo Bay - Mid" + }, +/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/cargo/storage) "dst" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/structure/closet/emcloset, /turf/open/floor/plating, /area/maintenance/port/fore) +"dsD" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ + dir = 4 + }, +/turf/open/floor/iron, +/area/engineering/atmos) "dsH" = ( /obj/structure/table/wood, /obj/effect/spawner/random/entertainment/deck, /turf/open/floor/wood, /area/commons/vacant_room/office) -"dsK" = ( -/obj/machinery/iv_drip, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/medical/virology) "dsM" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -13021,18 +13070,6 @@ }, /turf/open/floor/plating, /area/maintenance/central) -"dsO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/engineering/break_room) "dsX" = ( /obj/machinery/light/small/directional/north, /obj/machinery/airalarm/directional/north, @@ -13048,6 +13085,19 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) +"dtd" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/engineering/break_room) "dtf" = ( /obj/machinery/door/airlock/grunge{ name = "Cell 4" @@ -13056,21 +13106,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/security/prison/safe) -"dtj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/highsecurity{ - name = "Secure Network Access"; - req_access_txt = "19" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/ai_monitored/turret_protected/ai_upload_foyer) "dto" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 5 @@ -13143,6 +13178,14 @@ /obj/effect/landmark/start/atmospheric_technician, /turf/open/floor/iron, /area/engineering/atmos) +"dtV" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, +/turf/open/floor/iron/dark/corner, +/area/engineering/atmos/pumproom) "dtZ" = ( /obj/item/stack/sheet/cardboard, /obj/effect/spawner/random/trash/janitor_supplies, @@ -13180,25 +13223,6 @@ /obj/effect/turf_decal/caution/stand_clear, /turf/open/floor/iron/dark, /area/engineering/break_room) -"duv" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/westright{ - dir = 4; - name = "Hydroponics Desk"; - req_one_access_txt = "30;35" - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/green/fourcorners, -/turf/open/floor/iron, -/area/service/hydroponics) "dux" = ( /turf/closed/wall, /area/maintenance/port/aft) @@ -13224,18 +13248,46 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/medical/medbay/central) +"duG" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/plasma_input{ + dir = 1 + }, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) "duH" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plating, /area/maintenance/port/aft) -"duR" = ( -/obj/machinery/research/anomaly_refinery, -/obj/effect/turf_decal/delivery, +"duN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/science/cytology) +"dvg" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, /obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/mixing/launch) +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/iron, +/area/hallway/primary/starboard) "dvk" = ( /obj/structure/table, /obj/item/ai_module/reset, @@ -13278,13 +13330,6 @@ "dvY" = ( /turf/closed/wall, /area/maintenance/starboard/aft) -"dwd" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/commons/storage/tools) "dwv" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, @@ -13389,24 +13434,23 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) +"dxP" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/tile/red/anticorner/contrasted, +/turf/open/floor/iron/dark, +/area/security/lockers) "dya" = ( /obj/structure/cable, /turf/open/floor/carpet, /area/command/heads_quarters/captain/private) -"dyh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/duct, -/obj/structure/disposalpipe/segment{ +"dyb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/machinery/meter, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 4 }, -/obj/structure/sign/poster/random/directional/south, -/turf/open/floor/iron, -/area/hallway/secondary/service) +/turf/open/floor/iron/dark, +/area/engineering/atmos) "dyl" = ( /obj/machinery/door/airlock/external{ name = "Space Shack" @@ -13416,9 +13460,6 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"dyx" = ( -/turf/open/misc/asteroid/basalt/airless, -/area/space/nearstation) "dyE" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -13458,19 +13499,6 @@ /obj/machinery/space_heater, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"dzq" = ( -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/machinery/door/airlock/research{ - name = "Research and Development Lab"; - req_one_access_txt = "7" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/science/lab) "dzB" = ( /obj/structure/reagent_dispensers/watertank, /obj/machinery/firealarm/directional/west, @@ -13491,6 +13519,15 @@ /obj/effect/turf_decal/trimline/blue/filled/warning, /turf/open/floor/iron/white, /area/medical/medbay/central) +"dAr" = ( +/obj/structure/rack, +/obj/item/gun/energy/e_gun/dragnet, +/obj/item/gun/energy/e_gun/dragnet, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/ai_monitored/security/armory) "dAA" = ( /obj/effect/turf_decal/delivery, /obj/structure/window/reinforced{ @@ -13507,12 +13544,15 @@ }, /turf/open/floor/iron, /area/commons/dorms) -"dAI" = ( -/obj/structure/chair/office/light, -/obj/effect/landmark/start/chemist, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron/white, -/area/medical/chemistry) +"dAD" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 10 + }, +/turf/open/floor/iron/dark/corner, +/area/engineering/atmos/pumproom) "dAL" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ @@ -13533,15 +13573,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/engineering/main) -"dAW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/meter/atmos/atmos_waste_loop, -/turf/open/floor/iron, -/area/engineering/atmos) "dBf" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -13557,26 +13588,11 @@ /obj/structure/cable, /turf/open/floor/iron, /area/engineering/main) -"dBs" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/hallway/primary/central) "dBN" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /turf/open/floor/plating, /area/medical/virology) -"dBZ" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/dark, -/area/security/brig) "dCg" = ( /obj/machinery/component_printer, /turf/open/floor/iron/white, @@ -13590,6 +13606,15 @@ /obj/structure/cable, /turf/open/floor/iron, /area/hallway/primary/fore) +"dCx" = ( +/obj/machinery/computer/shuttle/mining{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/construction/mining/aux_base) "dCD" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -13653,22 +13678,25 @@ }, /turf/open/floor/iron, /area/hallway/secondary/command) -"dDe" = ( +"dDl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/robotics/lab) +"dDr" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/security/courtroom) -"dDf" = ( -/obj/item/radio/intercom/directional/south, -/obj/structure/rack, -/obj/item/assembly/signaler, -/obj/item/assembly/signaler, -/obj/item/assembly/timer, -/obj/effect/turf_decal/tile/blue/half/contrasted{ +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/chair{ dir = 1 }, -/turf/open/floor/iron/dark, -/area/command/bridge) +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/security/office) "dDw" = ( /obj/structure/rack, /obj/item/wrench/medical, @@ -13696,45 +13724,35 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/port/fore) -"dEl" = ( -/obj/structure/table, -/obj/item/stack/ducts/fifty, -/obj/item/stack/ducts/fifty, -/obj/item/stack/ducts/fifty, -/obj/item/stack/ducts/fifty, -/obj/item/stack/ducts/fifty, -/obj/item/stack/ducts/fifty, -/obj/item/stack/ducts/fifty, -/obj/item/stack/ducts/fifty, -/obj/item/plunger, -/obj/item/plunger, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/medical/chemistry) "dEs" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/medical/storage) -"dEB" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - name = "Waste to Filter" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/engineering/atmos/pumproom) "dED" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/commons/locker) +"dEH" = ( +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/structure/table/wood, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/spawner/random/food_or_drink/booze{ + spawn_loot_count = 2; + spawn_random_offset = 1 + }, +/obj/effect/spawner/random/entertainment/musical_instrument, +/obj/structure/sign/poster/contraband/random/directional/east, +/turf/open/floor/plating, +/area/maintenance/port/aft) "dER" = ( /obj/machinery/requests_console/directional/west{ department = "Detective"; @@ -13750,6 +13768,25 @@ }, /turf/open/floor/iron/grimy, /area/security/detectives_office) +"dEV" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/research{ + autoclose = 0; + frequency = 1449; + id_tag = "xeno_airlock_interior"; + name = "Xenobiology Lab Internal Airlock"; + req_access_txt = "55" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/science/cytology) "dFc" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -13760,6 +13797,15 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron, /area/hallway/primary/port) +"dFg" = ( +/obj/structure/rack, +/obj/item/clothing/under/color/red, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/neck/tie/red, +/obj/item/clothing/head/soft/red, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/commons/fitness/recreation) "dFh" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -13814,18 +13860,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/engineering/atmos) -"dGu" = ( -/obj/machinery/door/airlock/research{ - name = "Mech Bay"; - req_access_txt = "29" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple/fourcorners, -/turf/open/floor/iron, -/area/science/robotics/mechbay) "dGK" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -13844,20 +13878,20 @@ /obj/structure/training_machine, /turf/open/floor/engine, /area/science/misc_lab/range) +"dHb" = ( +/obj/structure/table/wood, +/obj/item/paper, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/security/courtroom) "dHf" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/port/fore) -"dHo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/engineering/break_room) "dHy" = ( /obj/structure/disposalpipe/segment{ dir = 6 @@ -13889,18 +13923,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/hallway/secondary/command) -"dIb" = ( -/obj/machinery/light/small/directional/west, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dIf" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron, -/area/engineering/break_room) "dIj" = ( /obj/effect/turf_decal/trimline/purple/corner{ dir = 1 @@ -13912,6 +13934,17 @@ /obj/effect/turf_decal/siding/purple, /turf/open/floor/iron/white, /area/science/research) +"dIq" = ( +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/machinery/door/airlock/research{ + name = "Testing Labs"; + req_one_access_txt = "7" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/science/lab) "dIt" = ( /obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, /obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ @@ -14022,6 +14055,10 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/service/hydroponics) +"dKF" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/iron, +/area/service/hydroponics/garden) "dKG" = ( /obj/structure/chair/office{ dir = 8 @@ -14046,6 +14083,12 @@ }, /turf/open/floor/iron, /area/security/prison) +"dKU" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/air_input{ + dir = 1 + }, +/turf/open/floor/engine/air, +/area/engineering/atmos) "dKV" = ( /obj/effect/landmark/start/botanist, /turf/open/floor/iron, @@ -14061,6 +14104,18 @@ icon_state = "platingdmg2" }, /area/maintenance/central) +"dLf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/starboard) "dLg" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, @@ -14082,6 +14137,14 @@ }, /turf/open/floor/iron, /area/ai_monitored/command/storage/eva) +"dLK" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/genetics) "dLT" = ( /obj/effect/turf_decal/trimline/blue/filled/warning{ dir = 4 @@ -14101,42 +14164,17 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/aft/lesser) -"dMq" = ( -/obj/machinery/light_switch/directional/west, -/obj/structure/table, -/obj/item/transfer_valve{ - pixel_x = 5 - }, -/obj/item/transfer_valve{ - pixel_x = 5 - }, -/obj/item/transfer_valve{ - pixel_x = 5 - }, -/obj/item/transfer_valve{ - pixel_x = 5 - }, -/obj/item/transfer_valve{ - pixel_x = 5 - }, -/turf/open/floor/iron/white, -/area/science/mixing/launch) +"dMu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/holopad, +/obj/structure/window/reinforced, +/turf/open/floor/iron/dark, +/area/ai_monitored/aisat/exterior) "dMw" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/status_display/evac/directional/south, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) -"dMK" = ( -/obj/structure/closet{ - name = "Evidence Closet 5" - }, -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/security/brig) "dMM" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -14148,11 +14186,6 @@ }, /turf/open/floor/iron/dark, /area/command/bridge) -"dMU" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/recharge_station, -/turf/open/floor/iron/dark, -/area/ai_monitored/command/storage/satellite) "dNk" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -14187,18 +14220,33 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/carpet, /area/service/theater) -"dNS" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ai_monitored/command/storage/eva) "dNU" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/engineering/atmos/storage/gas) +"dOo" = ( +/obj/structure/safe, +/obj/item/storage/secure/briefcase{ + contents = newlist(/obj/item/clothing/suit/armor/vest,/obj/item/gun/ballistic/automatic/pistol,/obj/item/suppressor,/obj/item/melee/baton/telescopic,/obj/item/clothing/mask/balaclava,/obj/item/bodybag,/obj/item/soap/nanotrasen) + }, +/obj/item/storage/backpack/duffelbag/syndie/hitman, +/obj/item/card/id/advanced/silver/reaper, +/obj/item/lazarus_injector, +/obj/item/gun/energy/disabler, +/obj/item/gun/ballistic/revolver/russian, +/obj/item/ammo_box/a357, +/obj/item/clothing/neck/stethoscope, +/obj/item/book{ + desc = "An undeniably handy book."; + icon_state = "bookknock"; + name = "\improper A Simpleton's Guide to Safe-cracking with Stethoscopes" + }, +/obj/effect/turf_decal/bot_white/left, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ai_monitored/command/nuke_storage) "dOr" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small/directional/west, @@ -14213,6 +14261,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/engine, /area/engineering/supermatter/room) +"dOu" = ( +/obj/structure/closet/wardrobe/miner, +/obj/effect/turf_decal/tile/brown/anticorner/contrasted, +/turf/open/floor/iron, +/area/cargo/miningoffice) "dOy" = ( /obj/structure/cable, /turf/open/floor/plating/airless, @@ -14249,6 +14302,25 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood, /area/service/library) +"dPm" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = -4; + pixel_y = 12 + }, +/obj/item/reagent_containers/glass/bottle/multiver{ + pixel_x = 7; + pixel_y = 12 + }, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, +/turf/open/floor/iron/white, +/area/medical/chemistry) "dPt" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/stripes/line{ @@ -14287,39 +14359,9 @@ }, /turf/open/floor/wood, /area/commons/lounge) -"dPW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/service/hydroponics/garden) "dQd" = ( /turf/closed/wall, /area/security/checkpoint/science) -"dQj" = ( -/obj/machinery/light/directional/north, -/obj/structure/sign/warning/securearea{ - pixel_y = 32 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/item/book/manual/wiki/engineering_construction{ - pixel_y = 3 - }, -/obj/item/folder/yellow, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/engineering/break_room) "dQk" = ( /obj/structure/table, /obj/structure/disposalpipe/segment, @@ -14335,23 +14377,6 @@ /obj/machinery/airalarm/directional/north, /turf/open/floor/iron, /area/security/prison) -"dQt" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/button/door/directional/west{ - id = "Engineering"; - name = "Engineering Lockdown"; - pixel_y = -6; - req_access_txt = "10" - }, -/obj/machinery/button/door/directional/west{ - id = "atmos"; - name = "Atmospherics Lockdown"; - pixel_y = 6; - req_access_txt = "24" - }, -/turf/open/floor/iron/dark, -/area/command/heads_quarters/ce) "dQI" = ( /obj/effect/turf_decal/tile/bar, /obj/effect/turf_decal/tile/bar{ @@ -14361,18 +14386,18 @@ /mob/living/carbon/human/species/monkey/punpun, /turf/open/floor/iron, /area/service/bar) -"dQN" = ( -/obj/structure/sign/warning/electricshock{ - pixel_x = 32 - }, -/obj/structure/table, -/obj/item/storage/toolbox/mechanical, -/obj/item/clothing/head/welding, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 +"dRa" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/structure/cable, +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = -2 }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, /turf/open/floor/iron/white, -/area/medical/chemistry) +/area/medical/cryo) "dRv" = ( /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/stripes/line{ @@ -14383,31 +14408,6 @@ }, /turf/open/floor/iron, /area/science/robotics/lab) -"dRI" = ( -/obj/structure/table/reinforced, -/obj/machinery/camera/directional/north{ - c_tag = "Science Robotics Office"; - network = list("ss13","rd") - }, -/obj/item/radio/intercom/directional/north, -/obj/item/storage/medkit{ - pixel_x = 7; - pixel_y = -3 - }, -/obj/item/storage/medkit{ - pixel_x = -5; - pixel_y = -1 - }, -/obj/item/healthanalyzer{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/healthanalyzer{ - pixel_x = -3; - pixel_y = -4 - }, -/turf/open/floor/iron, -/area/science/robotics/lab) "dRK" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/effect/turf_decal/bot, @@ -14416,13 +14416,6 @@ }, /turf/open/floor/iron, /area/engineering/atmos/storage/gas) -"dRS" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) "dRU" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" @@ -14469,12 +14462,6 @@ /obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, /turf/open/floor/iron, /area/commons/locker) -"dSA" = ( -/obj/structure/closet/wardrobe/mixed, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron/dark, -/area/commons/locker) "dSC" = ( /obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ dir = 4 @@ -14558,15 +14545,6 @@ /obj/item/paicard, /turf/open/floor/iron, /area/commons/locker) -"dTP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/security/range) "dTY" = ( /obj/structure/extinguisher_cabinet/directional/west, /obj/effect/turf_decal/stripes/line{ @@ -14578,12 +14556,6 @@ /obj/structure/lattice/catwalk, /turf/open/space/basic, /area/solars/starboard/fore) -"dUf" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) "dUg" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -14633,6 +14605,18 @@ }, /turf/open/floor/iron, /area/service/bar) +"dUE" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/medical/virology) "dUW" = ( /obj/machinery/door/airlock/public/glass{ name = "space-bridge access" @@ -14661,6 +14645,16 @@ /obj/machinery/airalarm/directional/east, /turf/open/floor/iron/white, /area/science/cytology) +"dVu" = ( +/obj/machinery/camera/directional/east{ + c_tag = "Medbay Surgery C"; + network = list("ss13","medbay") + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/medical/surgery/aft) "dVy" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -14668,6 +14662,23 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/security/brig) +"dVD" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/sign/poster/contraband/random/directional/west, +/turf/open/floor/carpet/green, +/area/maintenance/port/aft) +"dVE" = ( +/obj/machinery/camera/directional/west{ + c_tag = "Bridge - Port" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/command/bridge) "dVL" = ( /obj/effect/landmark/event_spawn, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -14675,16 +14686,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/white, /area/medical/medbay/central) -"dVO" = ( -/obj/machinery/door/airlock/research/glass{ - name = "Robotics Lab"; - req_access_txt = "29" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple/fourcorners, -/turf/open/floor/iron, -/area/science/robotics/lab) "dVX" = ( /obj/structure/table, /obj/item/reagent_containers/food/drinks/britcup{ @@ -14697,6 +14698,13 @@ }, /turf/open/floor/iron, /area/maintenance/port/fore) +"dVY" = ( +/obj/machinery/computer/operating{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/iron/white, +/area/medical/surgery/theatre) "dWl" = ( /obj/structure/cable, /obj/machinery/holopad, @@ -14718,15 +14726,22 @@ }, /turf/open/floor/wood, /area/commons/vacant_room/office) -"dWH" = ( +"dWI" = ( +/obj/machinery/door/airlock/hatch{ + name = "Telecomms Control Room"; + req_one_access_txt = "19; 61" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/cable, +/obj/machinery/navbeacon/wayfinding, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/iron/dark, -/area/engineering/atmos) +/area/tcommsat/computer) "dWO" = ( /obj/structure/chair/comfy{ dir = 4 @@ -14744,6 +14759,33 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron, /area/engineering/gravity_generator) +"dXc" = ( +/obj/item/radio/intercom/directional/south, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/blue/half/contrasted, +/turf/open/floor/iron/white, +/area/command/heads_quarters/cmo) +"dXi" = ( +/obj/item/book/manual/wiki/chemistry{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/book/manual/wiki/grenades, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/item/book/manual/wiki/plumbing{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/reagent_containers/dropper, +/obj/structure/table, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/medical/chemistry) "dXw" = ( /obj/structure/destructible/cult/item_dispenser/archives/library, /obj/machinery/newscaster/directional/north, @@ -14752,6 +14794,29 @@ /obj/item/book/codex_gigas, /turf/open/floor/engine/cult, /area/service/library) +"dXK" = ( +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "sci-maint-passthrough" + }, +/obj/machinery/door/airlock/research{ + name = "Xenobiology Entrance"; + req_access_txt = "47" + }, +/turf/open/floor/iron/white, +/area/science/research) +"dYb" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ai_monitored/command/storage/eva) "dYn" = ( /obj/item/paper_bin/carbon, /obj/item/pen/fountain, @@ -14776,6 +14841,13 @@ /obj/structure/cable, /turf/open/floor/iron/white, /area/science/cytology) +"dYM" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/sign/poster/contraband/random/directional/west, +/turf/open/floor/plating, +/area/maintenance/port/aft) "dYQ" = ( /obj/effect/turf_decal/stripes/corner, /obj/structure/cable, @@ -14860,6 +14932,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/secondary/entry) +"ebb" = ( +/obj/effect/turf_decal/tile/red/half/contrasted, +/turf/open/floor/iron, +/area/security/office) "ebc" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, @@ -14893,15 +14969,6 @@ }, /turf/open/floor/wood, /area/service/cafeteria) -"ebE" = ( -/obj/structure/chair{ - name = "Judge" - }, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/security/courtroom) "ebF" = ( /obj/structure/cable, /turf/open/floor/iron, @@ -14916,6 +14983,13 @@ /obj/structure/closet/emcloset, /turf/open/floor/plating, /area/maintenance/department/engine) +"ebX" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/security/lockers) "ecb" = ( /obj/effect/turf_decal/delivery, /obj/machinery/door/window/northleft{ @@ -14979,6 +15053,17 @@ /obj/structure/cable, /turf/open/floor/iron/white, /area/science/mixing/launch) +"ecH" = ( +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/construction/plumbing, +/obj/item/construction/plumbing, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/medical/chemistry) "ecL" = ( /obj/structure/sink/kitchen{ desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; @@ -14996,6 +15081,23 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/commons/dorms) +"ede" = ( +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" + }, +/obj/effect/turf_decal/caution/stand_clear{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/iron/checker, +/area/engineering/atmos/storage/gas) "edi" = ( /obj/structure/chair/stool/directional/west, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -15094,13 +15196,16 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"eev" = ( -/obj/machinery/computer/operating{ +"eew" = ( +/obj/structure/rack, +/obj/item/gun/energy/ionrifle, +/obj/item/gun/energy/temperature/security, +/obj/item/clothing/suit/hooded/ablative, +/obj/effect/turf_decal/tile/red/half/contrasted{ dir = 8 }, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/white, -/area/medical/surgery/aft) +/turf/open/floor/iron/dark, +/area/ai_monitored/security/armory) "eeG" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ @@ -15108,14 +15213,6 @@ }, /turf/open/floor/plating, /area/hallway/secondary/entry) -"eeJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron, -/area/engineering/break_room) "eeV" = ( /obj/structure/railing/corner, /obj/effect/turf_decal/trimline/yellow/filled/line{ @@ -15159,6 +15256,23 @@ }, /turf/open/floor/iron/white, /area/medical/pharmacy) +"efc" = ( +/obj/machinery/modular_computer/console/preset/id, +/obj/machinery/light/directional/north, +/obj/machinery/requests_console/directional/north{ + department = "Security"; + departmentType = 3; + name = "Security Requests Console" + }, +/obj/machinery/camera/directional/north{ + c_tag = "Customs Checkpoint" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/security/checkpoint/customs) "eff" = ( /obj/structure/table/reinforced, /obj/item/flashlight, @@ -15187,6 +15301,16 @@ /obj/structure/cable, /turf/open/floor/iron, /area/engineering/atmos) +"efk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/research{ + name = "Chemical Storage"; + req_access_txt = "69" + }, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/turf/open/floor/iron/textured, +/area/medical/medbay/central) "efm" = ( /obj/machinery/light/directional/west, /obj/effect/turf_decal/tile/yellow{ @@ -15246,42 +15370,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/science/xenobiology) -"egv" = ( -/obj/structure/filingcabinet, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/security/checkpoint/supply) -"egB" = ( -/obj/structure/rack, -/obj/machinery/light/directional/west, -/obj/item/clothing/head/helmet/riot{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/item/clothing/head/helmet/riot{ - pixel_y = 2 - }, -/obj/item/clothing/head/helmet/riot{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/clothing/head/helmet/alt{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/clothing/head/helmet/alt{ - pixel_y = -2 - }, -/obj/item/clothing/head/helmet/alt{ - pixel_x = -3; - pixel_y = -2 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/dark, -/area/ai_monitored/security/armory) "egR" = ( /obj/structure/plasticflaps/opaque, /obj/machinery/door/window/northleft{ @@ -15290,6 +15378,13 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) +"egS" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Distro Staging to Distro" + }, +/turf/open/floor/iron, +/area/engineering/atmos/pumproom) "egU" = ( /obj/machinery/door/airlock/maintenance{ name = "Ordnance Lab Maintenance"; @@ -15299,6 +15394,22 @@ /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/aft/lesser) +"eha" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/engineering/atmos) +"ehk" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/wrench, +/obj/machinery/airalarm/directional/west, +/obj/machinery/light_switch/directional/south, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/server) "ehn" = ( /obj/machinery/door/airlock/grunge{ name = "Cell 3" @@ -15320,6 +15431,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/primary/central) +"ehA" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/command/heads_quarters/ce) "ehD" = ( /obj/machinery/door/airlock/maintenance{ name = "Quartermaster Maintenance"; @@ -15330,20 +15445,6 @@ }, /turf/open/floor/plating, /area/maintenance/port/greater) -"ehF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Prison Wing"; - req_access_txt = "1" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "perma-entrance" - }, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/security/brig) "ehJ" = ( /obj/effect/spawner/random/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -15353,24 +15454,6 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"ehQ" = ( -/obj/structure/window/reinforced, -/obj/structure/table, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/command/teleporter) -"eib" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron/dark, -/area/security/execution/education) "eig" = ( /obj/structure/cable, /obj/machinery/light_switch/directional/north, @@ -15391,17 +15474,6 @@ }, /turf/open/floor/iron/dark, /area/medical/storage) -"eiJ" = ( -/obj/machinery/door/window/brigdoor/security/cell{ - id = "Cell 1"; - name = "Cell 1" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/security/brig) "eiK" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -15421,15 +15493,6 @@ }, /turf/open/floor/iron, /area/science/robotics/mechbay) -"eiL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/security/range) "eiR" = ( /obj/machinery/camera/directional/west{ c_tag = "Departure Lounge - Port Aft" @@ -15534,12 +15597,6 @@ /obj/structure/light_construct/directional/east, /turf/open/floor/plating, /area/maintenance/port/aft) -"ekg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/carbon_output{ - dir = 1 - }, -/turf/open/floor/engine/co2, -/area/engineering/atmos) "eku" = ( /obj/item/radio/intercom/directional/south, /obj/effect/turf_decal/tile/neutral{ @@ -15587,17 +15644,6 @@ }, /turf/open/floor/grass, /area/service/hydroponics/garden) -"ekE" = ( -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/hallway/primary/central) "ekV" = ( /obj/machinery/airalarm/directional/south, /obj/effect/turf_decal/stripes/line{ @@ -15637,16 +15683,11 @@ }, /turf/open/floor/iron, /area/maintenance/disposal/incinerator) -"elB" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 4 - }, +"elC" = ( +/obj/effect/turf_decal/siding/purple, /obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/hallway/primary/central) +/area/science/genetics) "elF" = ( /obj/structure/table, /obj/effect/turf_decal/delivery, @@ -15691,6 +15732,14 @@ /obj/machinery/light/directional/west, /turf/open/floor/iron, /area/science/mixing) +"emr" = ( +/obj/structure/table/optable, +/obj/structure/noticeboard/directional/east, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/science/robotics/lab) "emv" = ( /obj/effect/turf_decal/tile/neutral, /obj/machinery/firealarm/directional/east, @@ -15713,10 +15762,6 @@ /obj/structure/cable, /turf/open/floor/wood, /area/command/heads_quarters/hos) -"ens" = ( -/obj/machinery/air_sensor/atmos/nitrogen_tank, -/turf/open/floor/engine/n2, -/area/engineering/atmos) "enx" = ( /obj/item/radio/intercom/directional/west, /obj/machinery/light/small/directional/west, @@ -15758,18 +15803,21 @@ dir = 1 }, /area/engineering/atmos/storage/gas) +"eoE" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/iv_drip, +/turf/open/floor/iron/white, +/area/medical/treatment_center) "eoI" = ( /obj/machinery/igniter/incinerator_ordmix, /turf/open/floor/engine, /area/science/mixing/chamber) -"eoP" = ( -/obj/machinery/computer/secure_data, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted{ +"eoM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrous_output{ dir = 1 }, -/turf/open/floor/iron/dark, -/area/command/bridge) +/turf/open/floor/engine/n2o, +/area/engineering/atmos) "eoW" = ( /obj/machinery/atmospherics/components/tank/air{ dir = 8 @@ -15836,16 +15884,23 @@ /obj/item/radio/intercom/directional/east, /turf/open/floor/carpet, /area/service/library) -"eqn" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/carbon_input{ - dir = 1 - }, -/turf/open/floor/engine/co2, -/area/engineering/atmos) "eqw" = ( /obj/structure/bookcase/random/religion, /turf/open/floor/wood, /area/service/library) +"eqy" = ( +/obj/machinery/light/no_nightlight/directional/east, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/layer_manifold/cyan/visible, +/turf/open/floor/iron/dark/corner, +/area/engineering/atmos/pumproom) +"eqC" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/iron/white, +/area/science/mixing/launch) "eqE" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, @@ -15878,16 +15933,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/engineering/transit_tube) -"eqY" = ( -/obj/structure/cable, -/obj/machinery/light_switch/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/medical/surgery/aft) "ero" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -15906,17 +15951,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/port/aft) -"erq" = ( -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "old sink"; - pixel_y = 28 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/security/execution/education) "erC" = ( /obj/structure/table, /obj/item/clothing/head/soft/grey{ @@ -15955,6 +15989,14 @@ /obj/item/training_toolbox, /turf/open/floor/iron, /area/commons/fitness/recreation) +"erT" = ( +/obj/structure/rack, +/obj/item/electronics/apc, +/obj/item/electronics/airlock, +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron, +/area/commons/storage/tools) "esm" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp/green{ @@ -16063,6 +16105,11 @@ }, /turf/open/floor/wood, /area/security/office) +"etG" = ( +/obj/effect/landmark/start/geneticist, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/genetics) "etM" = ( /obj/structure/table, /obj/item/flashlight/lamp, @@ -16111,6 +16158,12 @@ /obj/machinery/firealarm/directional/north, /turf/open/floor/iron/dark, /area/command/bridge) +"euj" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/machinery/light_switch/directional/north, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ai_monitored/command/storage/eva) "eul" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/cable, @@ -16143,17 +16196,6 @@ /obj/machinery/airalarm/directional/west, /turf/open/floor/iron/dark, /area/medical/morgue) -"euS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/security/office) "euT" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -16170,10 +16212,39 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/service/bar) +"evc" = ( +/obj/structure/sign/poster/official/cleanliness{ + pixel_x = -32 + }, +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/medical/virology) "evj" = ( /obj/structure/light_construct/directional/east, /turf/open/floor/wood, /area/maintenance/port/aft) +"evv" = ( +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/structure/window/reinforced, +/obj/machinery/computer/atmos_control/plasma_tank{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/iron, +/area/engineering/atmos) +"evI" = ( +/obj/machinery/computer/teleporter, +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ai_monitored/turret_protected/aisat/foyer) "evO" = ( /obj/effect/turf_decal/stripes/line{ dir = 5 @@ -16194,6 +16265,19 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron, /area/hallway/primary/central) +"ewP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Tech Storage"; + req_one_access_txt = "23;30" + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/cable, +/obj/machinery/navbeacon/wayfinding, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/engineering/storage/tech) "ewV" = ( /obj/machinery/light/small/directional/south, /turf/open/floor/engine/air, @@ -16239,10 +16323,6 @@ }, /turf/open/floor/iron, /area/service/bar) -"eyf" = ( -/obj/machinery/air_sensor/atmos/plasma_tank, -/turf/open/floor/engine/plasma, -/area/engineering/atmos) "eyk" = ( /obj/structure/rack, /obj/effect/spawner/random/techstorage/rnd_secure_all, @@ -16323,15 +16403,6 @@ }, /turf/open/floor/iron/freezer, /area/commons/toilet/restrooms) -"eAf" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 6 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/engineering/atmos) "eAh" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -16344,23 +16415,25 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/science/mixing) -"eAp" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/science/cytology) "eAD" = ( /obj/structure/closet, /obj/effect/spawner/random/maintenance/two, /turf/open/floor/plating, /area/maintenance/port/aft) +"eAJ" = ( +/obj/structure/table, +/obj/item/storage/box/lights/mixed{ + pixel_x = 11; + pixel_y = 11 + }, +/obj/item/multitool{ + pixel_x = -3; + pixel_y = -4 + }, +/obj/machinery/newscaster/directional/east, +/obj/effect/turf_decal/tile/brown/half/contrasted, +/turf/open/floor/iron, +/area/cargo/sorting) "eBe" = ( /obj/effect/spawner/structure/window/reinforced/plasma, /obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden{ @@ -16368,6 +16441,16 @@ }, /turf/open/floor/plating, /area/engineering/supermatter/room) +"eBf" = ( +/obj/structure/filingcabinet/security{ + pixel_x = 4 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/security/brig) "eBk" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate/freezer, @@ -16378,6 +16461,10 @@ }, /turf/open/floor/iron, /area/cargo/warehouse) +"eBH" = ( +/obj/structure/statue/snow/snowman, +/turf/open/floor/fake_snow, +/area/maintenance/port/aft) "eCd" = ( /obj/structure/chair/office{ dir = 8 @@ -16390,6 +16477,18 @@ }, /turf/open/floor/iron, /area/science/misc_lab) +"eCe" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/button/door/directional/south{ + id = "prisonereducation"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/effect/turf_decal/tile/red/half/contrasted, +/turf/open/floor/iron/dark, +/area/security/execution/education) "eCo" = ( /obj/structure/showcase/machinery/tv{ dir = 1; @@ -16437,26 +16536,6 @@ /obj/machinery/meter, /turf/closed/wall/r_wall, /area/engineering/atmos) -"eCW" = ( -/obj/structure/rack, -/obj/item/gun/energy/laser/practice{ - pixel_x = 2; - pixel_y = 5 - }, -/obj/item/gun/energy/laser/practice{ - pixel_x = 2; - pixel_y = 1 - }, -/obj/item/gun/energy/laser/practice{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/security/range) "eDa" = ( /obj/effect/turf_decal/tile/red{ dir = 8 @@ -16473,12 +16552,6 @@ icon_state = "wood-broken4" }, /area/maintenance/port/aft) -"eDx" = ( -/obj/machinery/teleport/station, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ai_monitored/turret_protected/aisat/foyer) "eDz" = ( /obj/structure/chair, /obj/structure/cable, @@ -16496,11 +16569,33 @@ /obj/structure/chair/stool/directional/west, /turf/open/floor/plating, /area/maintenance/solars/port/aft) -"eEc" = ( +"eDJ" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/structure/sign/poster/random/directional/south, +/turf/open/floor/iron, +/area/service/hydroponics) +"eDW" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/modular_computer/console/preset/civilian{ + dir = 8 + }, +/obj/structure/sign/poster/official/random/directional/east, +/turf/open/floor/iron/dark/corner, +/area/engineering/storage_shared) +"eDX" = ( +/obj/effect/turf_decal/tile/purple/fourcorners, /obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/components/trinary/filter/atmos/plasma{ dir = 4 }, /turf/open/floor/iron, @@ -16553,6 +16648,21 @@ /obj/item/stack/sheet/iron/fifty, /turf/open/floor/iron/dark/corner, /area/engineering/atmos/storage/gas) +"eEv" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/security/office) "eEK" = ( /obj/effect/turf_decal/siding, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -16564,6 +16674,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/maintenance/port) +"eFa" = ( +/obj/machinery/camera/directional/east{ + c_tag = "Secure Tech Storage" + }, +/obj/item/radio/intercom/directional/east, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/engineering/storage/tech) "eFl" = ( /obj/structure/chair/pew/left, /turf/open/floor/iron/chapel{ @@ -16624,6 +16743,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/ai_monitored/aisat/exterior) +"eGg" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/structure/sign/map/right{ + desc = "A framed picture of the station. Clockwise from security in red at the top, you see engineering in yellow, science in purple, escape in checkered red-and-white, medbay in green, arrivals in checkered red-and-blue, and then cargo in brown."; + icon_state = "map-right-MS"; + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/hallway/secondary/exit/departure_lounge) "eGw" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, /turf/open/floor/circuit/telecomms, @@ -16715,6 +16844,12 @@ }, /turf/open/floor/iron, /area/cargo/warehouse) +"eIe" = ( +/obj/machinery/vending/coffee, +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/commons/fitness/recreation) "eIf" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/stripes/line{ @@ -16739,6 +16874,17 @@ }, /turf/open/floor/iron, /area/hallway/secondary/entry) +"eIo" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/computer/atmos_control/oxygen_tank{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/iron, +/area/engineering/atmos) "eIs" = ( /obj/structure/closet/crate/trashcart, /obj/effect/spawner/random/contraband/prison, @@ -16785,20 +16931,17 @@ }, /turf/open/floor/iron/white, /area/medical/chemistry) -"eIU" = ( -/obj/effect/turf_decal/stripes/line{ +"eIZ" = ( +/obj/machinery/computer/scan_consolenew{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple{ dir = 4 }, -/obj/machinery/chem_master, -/obj/effect/turf_decal/tile/purple/fourcorners, -/turf/open/floor/iron/white, -/area/science/xenobiology) -"eIX" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/security/checkpoint/engineering) +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/genetics) "eJf" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -16808,22 +16951,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/starboard) -"eJk" = ( -/obj/structure/table, -/obj/item/stack/package_wrap{ - pixel_x = -7; - pixel_y = 9 - }, -/obj/item/dest_tagger{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/cargo/sorting) "eJw" = ( /obj/structure/rack, /obj/item/wrench, @@ -16846,6 +16973,18 @@ }, /turf/open/floor/iron/dark, /area/service/chapel/funeral) +"eJE" = ( +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/door/airlock/medical/glass{ + name = "Break Room"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/medical/break_room) "eJI" = ( /obj/machinery/meter, /obj/machinery/door/window/westleft{ @@ -16870,13 +17009,6 @@ /obj/structure/reagent_dispensers/plumbed, /turf/open/floor/plating, /area/maintenance/port/aft) -"eKr" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/iron, -/area/hallway/primary/port) "eKt" = ( /obj/structure/table/wood, /obj/item/toy/mecha/honk{ @@ -16917,14 +17049,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/carpet, /area/command/bridge) -"eLd" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ +"eKM" = ( +/obj/effect/landmark/start/chief_medical_officer, +/obj/effect/turf_decal/tile/blue/half/contrasted{ dir = 4 }, -/obj/effect/landmark/start/geneticist, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/genetics) +/turf/open/floor/iron/white, +/area/command/heads_quarters/cmo) "eLq" = ( /obj/effect/turf_decal/tile/yellow, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -16936,6 +17067,23 @@ "eLr" = ( /turf/closed/wall, /area/service/theater) +"eLy" = ( +/obj/effect/turf_decal/tile/yellow/fourcorners, +/turf/open/floor/iron, +/area/hallway/primary/aft) +"eLC" = ( +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/machinery/door/airlock/command{ + name = "Research Director's Office"; + req_access_txt = "30" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/command/heads_quarters/rd) "eLH" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 1 @@ -16967,6 +17115,11 @@ /obj/machinery/duct, /turf/open/floor/iron/cafeteria, /area/service/kitchen) +"eMs" = ( +/obj/effect/spawner/random/entertainment/arcade, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/hallway/secondary/exit/departure_lounge) "eMx" = ( /obj/effect/turf_decal/trimline/blue/filled/warning{ dir = 4 @@ -17040,26 +17193,6 @@ }, /turf/open/floor/iron, /area/maintenance/port/fore) -"eNt" = ( -/obj/structure/closet/crate, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/machinery/light_switch/directional/north, -/obj/effect/spawner/random/engineering/flashlight, -/obj/effect/spawner/random/engineering/flashlight, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/cargo/miningoffice) "eNR" = ( /turf/closed/wall, /area/ai_monitored/aisat/exterior) @@ -17157,33 +17290,6 @@ /obj/item/key/janitor, /turf/open/floor/iron, /area/service/janitor) -"ePK" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/no_nightlight/directional/north, -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/engineering/atmos) -"ePN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - id_tag = "MedbayFoyer"; - name = "Medbay Clinic" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/medical/medbay/central) "ePR" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -17272,6 +17378,10 @@ /mob/living/carbon/human/species/monkey, /turf/open/floor/grass, /area/medical/virology) +"eQQ" = ( +/obj/item/food/snowcones/clown, +/turf/open/floor/fake_snow, +/area/maintenance/port/aft) "eQZ" = ( /obj/structure/rack, /obj/effect/spawner/random/maintenance, @@ -17279,6 +17389,20 @@ icon_state = "platingdmg2" }, /area/maintenance/starboard/fore) +"eRi" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/sign/poster/contraband/random/directional/north, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"eRF" = ( +/obj/machinery/light/small/directional/west, +/obj/machinery/camera/directional/west{ + c_tag = "MiniSat Exterior - Starboard Fore"; + network = list("minisat") + }, +/obj/structure/window/reinforced, +/turf/open/floor/iron/dark, +/area/ai_monitored/aisat/exterior) "eRN" = ( /obj/structure/table, /obj/effect/turf_decal/stripes/line, @@ -17382,27 +17506,33 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, /area/hallway/primary/central) +"eSU" = ( +/turf/open/floor/iron, +/area/engineering/atmos/pumproom) "eTd" = ( /obj/structure/reflector/box/anchored{ dir = 8 }, /turf/open/floor/iron/dark, /area/engineering/supermatter/room) -"eTm" = ( -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 +"eTk" = ( +/obj/structure/table, +/obj/item/screwdriver{ + pixel_y = 10 }, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 +/obj/item/geiger_counter{ + pixel_x = 7; + pixel_y = 3 }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Plasma to Pure" +/obj/item/radio/off{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 1 }, /turf/open/floor/iron, -/area/engineering/atmos) +/area/security/checkpoint/engineering) "eTp" = ( /obj/structure/closet/secure_closet/captains, /obj/structure/window/reinforced{ @@ -17411,6 +17541,18 @@ }, /turf/open/floor/wood, /area/command/heads_quarters/captain/private) +"eTs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Dormitories" + }, +/obj/structure/cable, +/obj/machinery/navbeacon/wayfinding, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron, +/area/commons/dorms) "eTz" = ( /obj/structure/cable, /obj/effect/turf_decal/stripes/line{ @@ -17431,17 +17573,6 @@ }, /turf/open/floor/iron, /area/engineering/main) -"eTQ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/security/checkpoint/customs) "eTY" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /turf/closed/wall/r_wall, @@ -17470,6 +17601,19 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/engine, /area/engineering/supermatter/room) +"eUP" = ( +/mob/living/simple_animal/bot/medbot/autopatrol, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/white/corner{ + dir = 8 + }, +/area/medical/medbay/lobby) +"eVm" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron, +/area/construction/mining/aux_base) "eVO" = ( /obj/structure/sign/plaques/kiddie/badger{ pixel_y = 32 @@ -17579,17 +17723,17 @@ /obj/effect/landmark/start/paramedic, /turf/open/floor/iron/white, /area/medical/medbay/lobby) -"eXX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Hydroponics Storage" +"eXW" = ( +/obj/item/radio/intercom/directional/south, +/obj/structure/rack, +/obj/item/assembly/signaler, +/obj/item/assembly/signaler, +/obj/item/assembly/timer, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/green/fourcorners, -/turf/open/floor/iron, -/area/hallway/primary/central) +/turf/open/floor/iron/dark, +/area/command/bridge) "eYf" = ( /obj/machinery/door/airlock/external{ name = "Atmospherics External Access"; @@ -17634,65 +17778,22 @@ }, /turf/open/floor/iron/dark, /area/hallway/primary/fore) -"eZe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/service/hydroponics/garden) "eZk" = ( /obj/structure/filingcabinet/employment, /obj/machinery/airalarm/directional/east, /turf/open/floor/wood, /area/service/lawoffice) -"eZm" = ( -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/machinery/door/airlock/research{ - name = "Testing Labs"; - req_one_access_txt = "7" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/science/lab) -"eZI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/mixing/launch) "eZU" = ( /turf/closed/wall/r_wall, /area/security/courtroom) -"fam" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/obj/effect/turf_decal/siding/blue{ - dir = 8 - }, -/obj/effect/turf_decal/siding/blue{ - dir = 4 - }, +"fab" = ( +/obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark/telecomms, -/area/science/server) +/turf/open/floor/iron/dark, +/area/science/robotics/lab) "far" = ( /turf/open/floor/plating, /area/maintenance/aft/greater) -"fas" = ( -/obj/structure/bed/dogbed, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/sign/poster/contraband/random/directional/west, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/maintenance/port/aft) "faz" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, /turf/open/floor/engine, @@ -17707,18 +17808,11 @@ }, /turf/closed/wall, /area/service/library) -"faV" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/plasma, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/storage) +"fbl" = ( +/obj/structure/table, +/obj/item/storage/medkit/brute, +/turf/open/floor/iron, +/area/commons/fitness/recreation) "fbt" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ @@ -17749,12 +17843,6 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"fbJ" = ( -/obj/machinery/computer/teleporter, -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ai_monitored/turret_protected/aisat/foyer) "fbY" = ( /obj/structure/mirror/directional/east, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -17768,6 +17856,27 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, /turf/open/floor/plating, /area/maintenance/department/science/xenobiology) +"fcb" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door_buttons/airlock_controller{ + idExterior = "xeno_airlock_exterior"; + idInterior = "xeno_airlock_interior"; + idSelf = "xeno_airlock_control"; + name = "Access Console"; + pixel_x = -25; + pixel_y = -25; + req_access_txt = "55" + }, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/science/cytology) "fcm" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -17812,6 +17921,13 @@ /obj/item/circuitboard/machine/chem_master, /turf/open/floor/iron/showroomfloor, /area/maintenance/starboard/lesser) +"fdE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron/white, +/area/medical/medbay/lobby) "fdG" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -17828,25 +17944,15 @@ }, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) -"fdQ" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/medical/medbay/lobby) -"feb" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, +"fdW" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/engineering/storage/tech) +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/medical/virology) "fed" = ( /obj/structure/cable, /turf/closed/wall/r_wall, @@ -17944,6 +18050,15 @@ /obj/machinery/navbeacon/wayfinding, /turf/open/floor/engine/cult, /area/service/library) +"ffE" = ( +/obj/item/wrench, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/robotics/lab) "ffP" = ( /obj/effect/spawner/random/structure/grille, /turf/open/floor/plating/foam{ @@ -17976,18 +18091,6 @@ /obj/machinery/atmospherics/pipe/heat_exchanging/junction, /turf/closed/wall, /area/maintenance/department/science/xenobiology) -"fgH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/robotics/lab) "fgL" = ( /obj/machinery/computer/secure_data{ dir = 8 @@ -18068,49 +18171,11 @@ }, /turf/closed/wall/r_wall, /area/maintenance/disposal/incinerator) -"fhO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, +"fib" = ( +/obj/machinery/light_switch/directional/south, +/obj/effect/turf_decal/tile/yellow/half/contrasted, /turf/open/floor/iron/white, -/area/science/research) -"fhX" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood/o_plus{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/reagent_containers/blood/o_minus, -/obj/item/reagent_containers/blood/b_plus, -/obj/item/reagent_containers/blood/b_minus, -/obj/item/reagent_containers/blood/a_plus, -/obj/item/reagent_containers/blood/a_minus, -/obj/item/reagent_containers/blood/lizard, -/obj/item/reagent_containers/blood/ethereal, -/obj/item/reagent_containers/blood{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/reagent_containers/blood{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/reagent_containers/blood{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/green/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/medical/virology) +/area/medical/chemistry) "fic" = ( /obj/machinery/firealarm/directional/south, /obj/effect/turf_decal/tile/neutral, @@ -18200,41 +18265,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/security/checkpoint/supply) -"fjI" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, +"fjK" = ( +/obj/machinery/flasher/portable, /obj/structure/cable, -/obj/structure/sign/poster/official/random/directional/east, -/turf/open/floor/iron/white/corner, -/area/hallway/secondary/entry) -"fkv" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/tier_1, -/obj/machinery/camera/directional/east{ - c_tag = "Science Ordnance Gas Storage 2"; - network = list("ss13","rd") - }, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/storage) -"fky" = ( -/obj/machinery/computer/security/telescreen{ - desc = "Used for the Auxiliary Mining Base."; - dir = 1; - name = "Auxiliary Base Monitor"; - network = list("auxbase"); - pixel_y = -28 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ +/obj/effect/turf_decal/tile/blue/half/contrasted{ dir = 8 }, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron, -/area/construction/mining/aux_base) +/turf/open/floor/iron/dark, +/area/security/lockers) "fkF" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -18249,6 +18287,21 @@ }, /turf/open/floor/iron/dark, /area/command/heads_quarters/rd) +"fkJ" = ( +/obj/machinery/door/window/southright{ + dir = 8; + name = "Surgical Supplies"; + req_access_txt = "45" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/stack/sticky_tape/surgical, +/obj/item/stack/medical/bone_gel, +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/iron/white, +/area/medical/surgery/theatre) "fkK" = ( /obj/effect/landmark/start/roboticist, /turf/open/floor/iron/white, @@ -18262,6 +18315,25 @@ /obj/structure/railing, /turf/open/space/basic, /area/space/nearstation) +"flt" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/engineering/break_room) +"flF" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron, +/area/engineering/atmos) "fme" = ( /obj/effect/turf_decal/tile/yellow{ dir = 1 @@ -18397,18 +18469,6 @@ dir = 4 }, /area/security/prison) -"fov" = ( -/obj/machinery/disposal/bin, -/obj/machinery/airalarm/directional/east, -/obj/machinery/light/directional/east, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/cargo/storage) "foI" = ( /obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ dir = 4 @@ -18418,15 +18478,6 @@ }, /turf/open/floor/iron, /area/engineering/atmos) -"foL" = ( -/obj/machinery/status_display/evac/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Engineering - Power Monitoring" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/computer/station_alert, -/turf/open/floor/iron/dark, -/area/engineering/main) "fpq" = ( /obj/structure/chair/sofa/corp/left{ dir = 1 @@ -18508,14 +18559,6 @@ }, /turf/open/floor/plating, /area/maintenance/aft/greater) -"fqw" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/atmospherics/components/trinary/filter/atmos/o2{ - dir = 4 - }, -/turf/open/floor/iron, -/area/engineering/atmos) "fqz" = ( /obj/structure/cable, /obj/effect/turf_decal/siding/wood{ @@ -18601,6 +18644,11 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/maintenance/starboard/lesser) +"frC" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/engineering/gravity_generator) "frK" = ( /obj/effect/turf_decal/tile/bar, /obj/effect/turf_decal/tile/bar{ @@ -18650,16 +18698,6 @@ /obj/structure/cable, /turf/open/floor/iron/white, /area/medical/surgery/theatre) -"fst" = ( -/obj/machinery/gulag_teleporter, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/security/brig) "fsw" = ( /obj/item/radio/intercom/directional/east, /obj/effect/turf_decal/tile/purple, @@ -18686,23 +18724,36 @@ /obj/machinery/duct, /turf/open/floor/iron/cafeteria, /area/service/kitchen) -"fsC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/light/small/directional/west, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 2; - sortType = 28 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/science/research) +"fsW" = ( +/obj/structure/sign/poster/contraband/random/directional/east, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"ftq" = ( +/obj/structure/sign/poster/official/random/directional/south, +/turf/open/floor/iron/freezer, +/area/commons/toilet/restrooms) "fts" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, /area/maintenance/starboard/greater) +"ftE" = ( +/obj/structure/table, +/obj/item/storage/fancy/donut_box{ + pixel_x = 4 + }, +/obj/structure/cable, +/obj/effect/spawner/random/food_or_drink/donkpockets{ + pixel_x = -14; + pixel_y = 6 + }, +/obj/effect/turf_decal/tile/red/half/contrasted, +/turf/open/floor/iron/dark, +/area/security/office) +"ftO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/trinary/filter/flipped, +/turf/open/floor/iron, +/area/science/mixing) "fub" = ( /obj/structure/closet, /obj/effect/spawner/random/maintenance/two, @@ -18710,17 +18761,6 @@ icon_state = "panelscorched" }, /area/maintenance/starboard/greater) -"fue" = ( -/obj/effect/turf_decal/tile/purple/fourcorners, -/turf/open/floor/iron, -/area/hallway/primary/aft) -"fui" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/medical/surgery/theatre) "ful" = ( /obj/machinery/airalarm/directional/east, /obj/machinery/newscaster/directional/north, @@ -18752,20 +18792,6 @@ /obj/effect/spawner/random/trash/garbage, /turf/open/floor/iron, /area/maintenance/starboard/greater) -"fuQ" = ( -/obj/machinery/requests_console/directional/east{ - announcementConsole = 1; - department = "Bridge"; - departmentType = 5; - name = "Bridge Requests Console" - }, -/obj/machinery/computer/cargo/request, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/command/bridge) "fuY" = ( /obj/structure/closet/secure_closet/chemical, /turf/open/floor/iron/white, @@ -18799,12 +18825,11 @@ /turf/open/floor/iron, /area/hallway/primary/port) "fvg" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/stasis, -/obj/machinery/defibrillator_mount/directional/north, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/white, -/area/medical/treatment_center) +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) "fvp" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/stripes/line{ @@ -18814,25 +18839,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/fore) -"fvI" = ( -/mob/living/simple_animal/bot/medbot/autopatrol, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white/corner{ - dir = 8 - }, -/area/medical/medbay/lobby) -"fvK" = ( -/obj/structure/chair{ - dir = 4; - name = "Prosecution" - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/security/courtroom) "fwk" = ( /obj/machinery/door/firedoor, /obj/structure/cable, @@ -18841,20 +18847,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/white/side, /area/medical/medbay/lobby) -"fwy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/camera/directional/north{ - c_tag = "Science Lobby"; - network = list("ss13","rd") - }, -/obj/machinery/vending/modularpc, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/science/lobby) "fwC" = ( /obj/machinery/door/window/brigdoor{ dir = 1; @@ -18886,15 +18878,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/central) -"fxb" = ( -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/structure/table, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron/dark, -/area/security/office) "fxe" = ( /obj/machinery/door/morgue{ name = "Confession Booth (Chaplain)"; @@ -18946,34 +18929,25 @@ }, /turf/open/floor/iron, /area/maintenance/starboard/greater) -"fyf" = ( -/obj/machinery/status_display/evac/directional/west, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/computer/atmos_control{ - dir = 4 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/engineering/atmos/storage/gas) "fyh" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/aft/greater) -"fyE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - id_tag = "MedbayFoyer"; - name = "Medbay Clinic" +"fyv" = ( +/obj/structure/table/wood, +/obj/item/radio/intercom{ + broadcasting = 1; + dir = 8; + listening = 0; + name = "Station Intercom (Court)" }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/navbeacon/wayfinding, -/turf/open/floor/iron/white, -/area/medical/medbay/central) +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/security/courtroom) "fyM" = ( /obj/effect/landmark/xeno_spawn, /obj/effect/turf_decal/stripes/line, @@ -19050,14 +19024,21 @@ "fAJ" = ( /turf/open/floor/wood, /area/commons/lounge) -"fBn" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 +"fBf" = ( +/obj/machinery/flasher/portable, +/obj/machinery/light/small/directional/east, +/obj/item/radio/intercom/directional/east, +/obj/machinery/camera/directional/east{ + c_tag = "Security - Secure Gear Storage" }, -/turf/open/floor/iron, -/area/security/courtroom) +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/security/lockers) "fBu" = ( /obj/machinery/camera/directional/west{ c_tag = "Dormitories - Aft" @@ -19102,11 +19083,6 @@ }, /turf/open/floor/iron, /area/security/prison) -"fBQ" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/ai_monitored/aisat/exterior) "fCb" = ( /obj/machinery/shower{ dir = 8 @@ -19128,6 +19104,11 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron, /area/security/brig) +"fCv" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, +/turf/closed/wall, +/area/engineering/atmos/pumproom) "fCC" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/directional/north, @@ -19142,6 +19123,21 @@ }, /turf/open/floor/iron, /area/hallway/secondary/service) +"fCD" = ( +/obj/structure/rack, +/obj/item/radio/off{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/radio/off{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/security/office) "fCM" = ( /obj/structure/disposalpipe/segment{ dir = 9 @@ -19159,13 +19155,6 @@ /obj/structure/cable, /turf/open/floor/engine, /area/science/misc_lab/range) -"fCW" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron/dark, -/area/ai_monitored/command/nuke_storage) "fDe" = ( /obj/machinery/computer/crew{ dir = 4 @@ -19192,6 +19181,37 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/port/aft) +"fDi" = ( +/obj/structure/closet/emcloset, +/obj/machinery/light/directional/east, +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/tile/brown/half/contrasted, +/turf/open/floor/iron, +/area/cargo/miningoffice) +"fDp" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/sign/warning/securearea{ + pixel_x = -32; + pixel_y = -32 + }, +/turf/open/floor/iron, +/area/hallway/primary/starboard) "fDq" = ( /obj/machinery/camera/directional/west{ c_tag = "Aft Starboard Solar Maintenance" @@ -19212,6 +19232,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/central) +"fDw" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron/white, +/area/medical/chemistry) "fDM" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -19295,42 +19319,12 @@ /obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/maintenance/port) -"fEK" = ( -/obj/structure/table/glass, -/obj/item/clothing/gloves/color/latex, -/obj/item/healthanalyzer, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/science, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/medical/virology) "fEL" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/holopad, /obj/structure/cable, /turf/open/floor/carpet, /area/command/corporate_showroom) -"fEM" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/clothing/under/misc/assistantformal, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/shoes/winterboots, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron/dark, -/area/commons/dorms) -"fEZ" = ( -/obj/effect/turf_decal/stripes/white/line, -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/research) "fFc" = ( /obj/structure/window/reinforced{ dir = 4 @@ -19354,6 +19348,15 @@ /obj/machinery/door/firedoor/heavy, /turf/open/floor/iron/dark/textured, /area/engineering/atmos) +"fFl" = ( +/obj/machinery/dna_scannernew, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/genetics) "fFm" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -19394,6 +19397,18 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) +"fGA" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/landmark/blobstart, +/obj/machinery/camera/directional/north{ + c_tag = "Evidence Storage" + }, +/obj/item/storage/secure/safe/directional/north{ + name = "evidence safe" + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/security/brig) "fGD" = ( /obj/machinery/door/airlock/maintenance{ req_one_access_txt = "12;17" @@ -19417,10 +19432,6 @@ }, /turf/open/floor/plating/airless, /area/space/nearstation) -"fHg" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/commons/locker) "fHw" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 8 @@ -19465,21 +19476,41 @@ }, /turf/open/floor/iron, /area/hallway/primary/port) -"fIk" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/iron, -/area/engineering/atmos/pumproom) -"fIq" = ( +"fIy" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/genetics) +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/medical/virology) +"fIA" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted, +/turf/open/floor/iron, +/area/security/courtroom) "fJd" = ( /obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ dir = 4 }, /turf/open/floor/iron, /area/engineering/atmos) +"fJl" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/westleft{ + dir = 4; + name = "Hydroponics Desk"; + req_one_access_txt = "30;35" + }, +/obj/effect/turf_decal/tile/green/fourcorners, +/turf/open/floor/iron, +/area/service/hydroponics) "fJr" = ( /obj/item/bodypart/chest/robot{ pixel_x = -2; @@ -19506,6 +19537,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/security/lockers) +"fJw" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/medical/chemistry) "fJz" = ( /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, /turf/closed/wall, @@ -19552,6 +19592,24 @@ icon_state = "platingdmg1" }, /area/maintenance/starboard/greater) +"fKw" = ( +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/northleft{ + name = "Chemistry Desk"; + req_access_txt = "33" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chem_lockdown"; + name = "Chemistry shutters" + }, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/turf/open/floor/iron/white, +/area/medical/chemistry) "fKz" = ( /obj/structure/chair/office/light, /obj/structure/cable, @@ -19561,41 +19619,6 @@ /obj/machinery/atmospherics/pipe/smart/simple/dark/visible, /turf/open/floor/iron, /area/engineering/atmos) -"fKI" = ( -/obj/machinery/door/window/northleft{ - dir = 8; - name = "Disposals Chute" - }, -/obj/machinery/disposal/delivery_chute{ - dir = 8; - name = "disposals chute"; - pixel_x = 5 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/command/teleporter) -"fKN" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/item/radio/intercom/directional/south, -/obj/item/stack/sheet/glass, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/signaler, -/obj/item/assembly/timer{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted, -/turf/open/floor/iron/white, -/area/science/lobby) "fLk" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -19644,21 +19667,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/starboard/greater) -"fLE" = ( -/obj/structure/table/optable, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/medical/surgery/theatre) -"fLF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/command/heads_quarters/ce) "fLN" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/stripes/corner{ @@ -19671,18 +19679,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/central) -"fLO" = ( -/obj/structure/table, -/obj/item/stack/medical/gauze, -/obj/item/stack/medical/mesh, -/obj/item/stack/medical/suture, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/medical/medbay/lobby) "fLY" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/spawner/random/trash/garbage{ @@ -19690,12 +19686,12 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"fLZ" = ( -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ +"fMu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/monitored/air_output{ dir = 1 }, -/turf/open/floor/iron, -/area/security/courtroom) +/turf/open/floor/engine/air, +/area/engineering/atmos) "fMG" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/yellow{ @@ -19740,17 +19736,6 @@ }, /turf/open/floor/iron/white, /area/science/research) -"fMQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/engineering/break_room) "fMR" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -19774,23 +19759,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/ai_monitored/command/storage/satellite) -"fNe" = ( -/obj/structure/rack, -/obj/item/restraints/handcuffs{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/security/office) "fNu" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 4 @@ -19822,6 +19790,19 @@ /obj/effect/spawner/random/trash/janitor_supplies, /turf/open/floor/plating, /area/maintenance/port) +"fOH" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/engineering/atmos/pumproom) "fOJ" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -19890,18 +19871,6 @@ dir = 4 }, /area/service/chapel) -"fPC" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/starboard) "fPI" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -19926,58 +19895,66 @@ /turf/open/floor/iron, /area/engineering/main) "fQk" = ( -/obj/structure/reagent_dispensers/wall/peppertank/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Security - Gear Room" +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/obj/machinery/vending/wardrobe/sec_wardrobe, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 }, -/turf/open/floor/iron/dark, -/area/security/lockers) +/turf/open/floor/iron, +/area/engineering/break_room) "fQq" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 }, /turf/open/floor/wood, /area/commons/lounge) -"fQR" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Firing Range"; - req_one_access_txt = "1;4" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +"fRb" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/iron/white, +/area/medical/cryo) +"fRn" = ( +/obj/machinery/vending/clothing, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/security/range) -"fRf" = ( -/obj/structure/cable, -/obj/machinery/computer/security{ - dir = 1 - }, -/obj/item/paper/crumpled{ - info = "Hey, assholes. We don't need a couch in the meeting room, I threw it out the airlock. I don't care if it's real leather, go patrol like you're paid to do instead of cycling through cameras all shift!"; - name = "old, crumpled note" - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/security/office) +/area/commons/locker) +"fRp" = ( +/obj/item/candle, +/obj/machinery/light_switch/directional/north, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/service/chapel) "fRx" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/effect/turf_decal/trimline/yellow/filled/end, /turf/open/floor/iron/textured, /area/medical/medbay/central) +"fRB" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/research) "fRD" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/plating, /area/maintenance/aft/lesser) +"fRE" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/cable, +/obj/effect/spawner/random/engineering/tracking_beacon, +/turf/open/floor/iron/dark, +/area/command/gateway) "fRJ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/disposalpipe/sorting/mail/flip{ @@ -20136,6 +20113,28 @@ icon_state = "platingdmg1" }, /area/maintenance/fore) +"fUs" = ( +/obj/machinery/door/window{ + atom_integrity = 300; + base_state = "rightsecure"; + dir = 4; + icon_state = "rightsecure"; + name = "Primary AI Core Access"; + req_access_txt = "16" + }, +/obj/machinery/camera/directional/north{ + c_tag = "AI Chamber - Core"; + network = list("aicore") + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/cable, +/obj/machinery/requests_console/directional/north{ + department = "AI"; + departmentType = 5; + name = "AI Requests Console" + }, +/turf/open/floor/iron/dark, +/area/ai_monitored/turret_protected/ai) "fUP" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 4; @@ -20173,22 +20172,6 @@ /obj/machinery/status_display/ai/directional/south, /turf/open/floor/iron/white, /area/science/xenobiology) -"fVi" = ( -/obj/structure/table, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 1 - }, -/obj/item/storage/box/bodybags{ - pixel_x = -4; - pixel_y = 9 - }, -/obj/item/storage/box/disks{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/genetics) "fVm" = ( /obj/structure/cable, /turf/open/floor/plating{ @@ -20226,15 +20209,6 @@ }, /turf/open/floor/grass, /area/science/research) -"fVV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/command/heads_quarters/cmo) "fWg" = ( /obj/structure/chair, /obj/machinery/computer/security/telescreen/interrogation{ @@ -20254,15 +20228,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/service/bar) -"fWo" = ( -/obj/machinery/dna_scannernew, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/genetics) "fWD" = ( /obj/effect/landmark/blobstart, /obj/structure/cable, @@ -20276,16 +20241,6 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/department/engine) -"fWK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/engineering/atmos/pumproom) "fWM" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -20310,6 +20265,12 @@ }, /turf/open/floor/circuit/green, /area/science/robotics/mechbay) +"fXk" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/engineering/atmos) "fXt" = ( /obj/item/food/cracker, /obj/item/food/cracker{ @@ -20331,6 +20292,11 @@ /obj/structure/cable, /turf/open/floor/engine, /area/science/misc_lab/range) +"fXD" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/hallway/secondary/command) "fXF" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ @@ -20430,17 +20396,6 @@ /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plating, /area/science/robotics/mechbay) -"fZo" = ( -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/machinery/light/small/directional/north, -/obj/structure/table/wood, -/obj/structure/noticeboard/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/service/chapel) "fZy" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, @@ -20511,28 +20466,6 @@ }, /turf/open/floor/iron/white, /area/medical/cryo) -"gbb" = ( -/obj/structure/table, -/obj/item/folder/red{ - pixel_x = 3 - }, -/obj/item/folder/white{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/restraints/handcuffs, -/obj/machinery/light/directional/east, -/obj/item/radio/off, -/obj/machinery/requests_console/directional/east{ - department = "Security"; - departmentType = 5; - name = "Security Requests Console" - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/secondary/exit/departure_lounge) "gbm" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -20550,6 +20483,17 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/fore) +"gby" = ( +/obj/machinery/light/directional/south, +/obj/machinery/firealarm/directional/south, +/obj/structure/rack, +/obj/item/storage/secure/briefcase, +/obj/item/clothing/mask/cigarette/cigar, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/command/bridge) "gbE" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -20631,6 +20575,23 @@ }, /turf/open/floor/iron/white, /area/medical/medbay/lobby) +"gcP" = ( +/obj/structure/table, +/obj/item/folder/red{ + pixel_x = 3 + }, +/obj/item/taperecorder{ + pixel_x = -3 + }, +/obj/item/storage/fancy/cigarettes, +/obj/item/assembly/flash/handheld, +/obj/item/reagent_containers/spray/pepper, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/security/execution/education) "gda" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 @@ -20655,13 +20616,6 @@ }, /turf/open/floor/wood, /area/service/library) -"gej" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, -/obj/structure/sign/poster/official/random/directional/north, -/turf/open/floor/iron, -/area/commons/locker) "gep" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/space_heater, @@ -20794,6 +20748,34 @@ icon_state = "panelscorched" }, /area/maintenance/department/medical/central) +"ggk" = ( +/obj/machinery/disposal/bin{ + desc = "A pneumatic waste disposal unit. This one leads into space!"; + name = "deathsposal unit" + }, +/obj/structure/sign/warning/deathsposal{ + pixel_y = -32 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green/half/contrasted, +/turf/open/floor/iron/white, +/area/medical/virology) +"ggm" = ( +/obj/structure/rack, +/obj/item/vending_refill/security, +/obj/item/storage/box/handcuffs, +/obj/item/storage/box/flashbangs{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/security/lockers) "ggv" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -20835,6 +20817,12 @@ /obj/effect/spawner/random/vending/colavend, /turf/open/floor/iron, /area/hallway/primary/port) +"gha" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/red/half/contrasted, +/turf/open/floor/iron, +/area/hallway/secondary/exit/departure_lounge) "ghd" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -20908,14 +20896,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/science/xenobiology) -"gin" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron, -/area/engineering/break_room) "giF" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -20929,6 +20909,27 @@ }, /turf/closed/wall/r_wall, /area/engineering/atmos/storage/gas) +"giN" = ( +/obj/item/reagent_containers/glass/bottle/multiver{ + pixel_x = 7; + pixel_y = 12 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = -4; + pixel_y = 12 + }, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/reagent_containers/dropper, +/obj/structure/table, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/medical/chemistry) "giP" = ( /obj/structure/bookcase/random/reference, /turf/open/floor/wood, @@ -20939,18 +20940,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/grimy, /area/service/chapel/office) -"gja" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/storage) "gje" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -20959,13 +20948,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/port/aft) -"gjN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/service/hydroponics/garden) "gjU" = ( /obj/machinery/camera/directional/north{ c_tag = "Atmospherics - Hypertorus Fusion Reactor Chamber Fore" @@ -20989,12 +20971,24 @@ /turf/open/floor/iron, /area/hallway/primary/port) "gkT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/door/airlock/research/glass{ + name = "Robotics Lab"; + req_access_txt = "29" }, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/plating, -/area/maintenance/fore) +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple/fourcorners, +/turf/open/floor/iron, +/area/science/robotics/lab) +"gkX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/genetics) "gkY" = ( /obj/structure/table, /obj/item/storage/bag/plants, @@ -21011,6 +21005,32 @@ }, /turf/open/floor/iron, /area/hallway/secondary/service) +"glF" = ( +/obj/structure/table/glass, +/obj/item/radio/intercom/directional/west, +/obj/structure/microscope, +/obj/machinery/camera/directional/west{ + c_tag = "Xenobiology Lab - Fore"; + network = list("ss13","rd","xeno") + }, +/obj/machinery/light/directional/west, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/science/cytology) +"glK" = ( +/obj/machinery/camera/directional/east{ + c_tag = "Auxiliary Tool Storage" + }, +/obj/machinery/airalarm/directional/east, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/commons/storage/tools) "glN" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/rack, @@ -21034,6 +21054,10 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/service/hydroponics/garden) +"gmo" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) "gmC" = ( /obj/structure/chair/office/light{ dir = 8 @@ -21062,6 +21086,33 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/department/medical/central) +"gmZ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/spawner/random/trash/garbage{ + spawn_scatter_radius = 1 + }, +/obj/structure/sign/poster/contraband/random/directional/east, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/lesser) +"gnf" = ( +/obj/structure/bed/roller, +/obj/item/radio/intercom/directional/south, +/obj/machinery/camera/directional/south{ + c_tag = "Medbay Foyer"; + network = list("ss13","medbay") + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted, +/turf/open/floor/iron/white, +/area/medical/medbay/lobby) "gnh" = ( /obj/structure/chair/office/light{ dir = 8 @@ -21087,6 +21138,13 @@ /obj/item/canvas/twentythree_twentythree, /turf/open/space/basic, /area/space/nearstation) +"gnB" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/medical/chemistry) "gnD" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -21113,19 +21171,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/aft/greater) -"goa" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/engineering/break_room) "god" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/stripes/line{ @@ -21150,6 +21195,12 @@ "gox" = ( /turf/closed/wall, /area/medical/coldroom) +"goE" = ( +/obj/structure/closet/wardrobe/white, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/iron/dark, +/area/commons/locker) "goM" = ( /obj/structure/girder, /obj/effect/spawner/random/structure/grille, @@ -21170,6 +21221,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/engineering/storage/tcomms) +"goS" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/sign/poster/contraband/random/directional/north, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) "gpd" = ( /obj/effect/turf_decal/bot{ dir = 1 @@ -21179,6 +21237,34 @@ dir = 1 }, /area/engineering/main) +"gpy" = ( +/obj/item/radio/intercom/directional/east, +/obj/structure/table, +/obj/effect/turf_decal/bot, +/obj/item/computer_hardware/hard_drive/portable{ + pixel_x = -2 + }, +/obj/item/computer_hardware/hard_drive/portable{ + pixel_x = 7; + pixel_y = 2 + }, +/obj/item/computer_hardware/hard_drive/portable{ + pixel_x = -5; + pixel_y = 8 + }, +/obj/item/computer_hardware/hard_drive/portable{ + pixel_x = -8; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/mixing/launch) +"gpJ" = ( +/obj/item/kirbyplants, +/obj/machinery/vending/wallmed/directional/south, +/obj/effect/turf_decal/tile/blue/half/contrasted, +/turf/open/floor/iron/white, +/area/medical/medbay/central) "gqa" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/junction{ dir = 4 @@ -21191,12 +21277,6 @@ }, /turf/open/floor/iron/kitchen_coldroom/freezerfloor, /area/service/kitchen/coldroom) -"gqh" = ( -/obj/machinery/portable_atmospherics/scrubber/huge, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/storage) "gql" = ( /obj/structure/table, /obj/item/hfr_box/body/waste_output, @@ -21206,6 +21286,21 @@ /obj/structure/extinguisher_cabinet/directional/east, /turf/open/floor/iron/dark, /area/engineering/atmospherics_engine) +"gqA" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/button/door/directional/south{ + id = "evashutter"; + name = "E.V.A. Storage Shutter Control"; + req_access_txt = "19" + }, +/turf/open/floor/iron/dark, +/area/ai_monitored/command/storage/eva) +"gqE" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/commons/fitness/recreation) "gqZ" = ( /obj/effect/turf_decal/bot, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -21236,15 +21331,6 @@ /obj/item/radio/intercom/directional/west, /turf/open/floor/iron, /area/command/heads_quarters/rd) -"grt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white/corner{ - dir = 4 - }, -/area/medical/medbay/lobby) "grx" = ( /obj/structure/cable, /turf/open/floor/iron, @@ -21272,42 +21358,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, /turf/open/floor/engine, /area/engineering/supermatter/room) -"gss" = ( -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/northleft{ - name = "Chemistry Desk"; - req_access_txt = "33" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chem_lockdown"; - name = "Chemistry shutters" - }, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/turf/open/floor/iron/white, -/area/medical/chemistry) "gsy" = ( /obj/machinery/computer/exodrone_control_console{ dir = 1 }, /turf/open/floor/iron, /area/maintenance/port/fore) -"gsD" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Bridge - Port" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/command/bridge) "gsF" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -21325,6 +21381,20 @@ /obj/machinery/portable_atmospherics/canister/anesthetic_mix, /turf/open/floor/iron/dark, /area/medical/cryo) +"gts" = ( +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/starboard) "gtG" = ( /obj/machinery/door/airlock/maintenance{ name = "Gamer Lair"; @@ -21336,6 +21406,15 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) +"gtJ" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/clothing/under/misc/assistantformal, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/shoes/winterboots, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/iron/dark, +/area/commons/dorms) "gtK" = ( /obj/machinery/light_switch/directional/west, /obj/structure/table/reinforced, @@ -21353,6 +21432,29 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/maintenance/department/engine) +"guj" = ( +/obj/item/tank/internals/oxygen/red{ + pixel_x = -4; + pixel_y = -1 + }, +/obj/item/tank/internals/oxygen/red{ + pixel_x = 4; + pixel_y = -1 + }, +/obj/item/tank/internals/anesthetic{ + pixel_x = 2 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/item/wrench, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/turf/open/floor/iron/dark, +/area/security/execution/education) "gul" = ( /obj/structure/cable, /obj/effect/landmark/xeno_spawn, @@ -21405,6 +21507,13 @@ /obj/machinery/light/small/directional/east, /turf/open/floor/iron/white, /area/science/xenobiology) +"guV" = ( +/obj/machinery/computer/atmos_alert, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/command/bridge) "gvs" = ( /obj/structure/rack, /obj/item/screwdriver{ @@ -21414,18 +21523,6 @@ /obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/maintenance/port/aft) -"gvu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/starboard) "gvw" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -21457,6 +21554,30 @@ /obj/item/barcodescanner, /turf/open/space/basic, /area/space/nearstation) +"gvI" = ( +/obj/machinery/door_buttons/access_button{ + idDoor = "xeno_airlock_exterior"; + idSelf = "xeno_airlock_control"; + name = "Access Button"; + pixel_y = -24; + req_access_txt = "55" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/research{ + autoclose = 0; + frequency = 1449; + id_tag = "xeno_airlock_exterior"; + name = "Xenobiology Lab External Airlock"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/science/cytology) "gvN" = ( /obj/machinery/airalarm/directional/south, /obj/machinery/disposal/bin, @@ -21473,6 +21594,11 @@ }, /turf/open/floor/iron/cafeteria, /area/service/kitchen) +"gvV" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/spawner/random/entertainment/arcade, +/turf/open/floor/iron/dark, +/area/commons/fitness/recreation) "gvZ" = ( /obj/machinery/rnd/production/protolathe/department/engineering, /obj/effect/turf_decal/bot, @@ -21482,6 +21608,22 @@ /obj/machinery/firealarm/directional/east, /turf/open/floor/iron/dark/corner, /area/engineering/storage_shared) +"gwk" = ( +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/machinery/door/airlock/research{ + name = "Ordnance Lab"; + req_access_txt = "8" + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rdordnance"; + name = "Ordnance Lab Shutters" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "sci-toxins-passthrough" + }, +/turf/open/floor/iron/white, +/area/science/mixing) "gxC" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -21489,10 +21631,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/fore) -"gxL" = ( -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/dark, -/area/command/bridge) "gxQ" = ( /obj/structure/chair/stool/directional/east, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -21547,6 +21685,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/fore) +"gyN" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/two, +/obj/structure/sign/poster/contraband/random/directional/north, +/turf/open/floor/plating, +/area/maintenance/port) "gyP" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -21557,6 +21701,18 @@ }, /turf/open/floor/iron/white, /area/science/cytology) +"gyR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/starboard) "gyS" = ( /obj/structure/cable, /obj/machinery/light_switch/directional/south, @@ -21601,38 +21757,24 @@ }, /turf/open/floor/iron/dark, /area/engineering/atmos) -"gzt" = ( -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/machinery/door/airlock/command{ - name = "Research Director's Office"; - req_access_txt = "30" +"gzx" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, /turf/open/floor/iron, -/area/command/heads_quarters/rd) -"gzy" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 +/area/science/mixing) +"gzI" = ( +/obj/machinery/power/shieldwallgen, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 }, -/obj/item/pen{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/book/manual/wiki/security_space_law, -/obj/machinery/camera/directional/south{ - c_tag = "Security Post - Cargo" - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/security/checkpoint/supply) +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/command/teleporter) "gzO" = ( /obj/structure/plasticflaps/opaque, /obj/machinery/door/window/northleft{ @@ -21652,12 +21794,6 @@ /obj/machinery/field/generator, /turf/open/floor/plating, /area/engineering/main) -"gzV" = ( -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/medical/pharmacy) "gAj" = ( /obj/effect/turf_decal/trimline/brown/filled/corner{ dir = 8 @@ -21728,6 +21864,15 @@ }, /turf/open/floor/iron/freezer, /area/commons/toilet/restrooms) +"gBn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/engineering/atmos) "gBw" = ( /obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/plating/airless, @@ -21746,45 +21891,9 @@ }, /turf/open/floor/iron, /area/security/prison) -"gBL" = ( -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/security/range) -"gBP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Departure Lounge Security Post"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/hallway/secondary/exit/departure_lounge) "gBU" = ( /turf/open/floor/plating/airless, /area/engineering/atmos) -"gBW" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/medical/virology) "gCa" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ dir = 10 @@ -21792,6 +21901,11 @@ /obj/structure/lattice/catwalk, /turf/open/space/basic, /area/space/nearstation) +"gCj" = ( +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron, +/area/hallway/primary/aft) "gCw" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -21814,14 +21928,6 @@ /obj/structure/flora/ausbushes/ywflowers, /turf/open/floor/grass, /area/maintenance/starboard/aft) -"gCO" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Secure Tech Storage"; - req_access_txt = "19;23" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/engineering/storage/tech) "gCS" = ( /obj/structure/window/reinforced, /obj/structure/showcase/cyborg/old{ @@ -21836,6 +21942,18 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/ai_monitored/aisat/exterior) +"gCX" = ( +/obj/structure/closet/crate, +/obj/item/stack/cable_coil, +/obj/item/crowbar, +/obj/item/screwdriver{ + pixel_y = 16 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/iron/dark, +/area/command/teleporter) "gDh" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -21882,6 +22000,32 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/medical/medbay/central) +"gDM" = ( +/obj/structure/rack, +/obj/item/stack/package_wrap{ + pixel_x = 6 + }, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/item/book/manual/chef_recipes{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/effect/spawner/random/food_or_drink/donkpockets, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/trimline/brown/warning{ + dir = 5 + }, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/sign/poster/random/directional/east, +/turf/open/floor/iron/cafeteria, +/area/service/kitchen) "gDV" = ( /obj/machinery/door/poddoor/preopen{ id = "prison release"; @@ -21895,28 +22039,24 @@ }, /turf/open/floor/iron, /area/hallway/primary/fore) -"gEG" = ( -/obj/machinery/door/window/brigdoor{ - name = "Arrivals Security Checkpoint"; - pixel_y = -8; - req_access_txt = "1" +"gEv" = ( +/obj/machinery/airalarm/directional/north, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, +/turf/open/floor/iron/dark, +/area/ai_monitored/command/storage/satellite) +"gEB" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 9 }, -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/half/contrasted, /turf/open/floor/iron, -/area/security/checkpoint/customs) +/area/engineering/atmos/pumproom) "gET" = ( /obj/effect/turf_decal/tile/neutral, /obj/machinery/light/directional/east, /turf/open/floor/iron, /area/hallway/primary/aft) -"gEU" = ( -/obj/machinery/vending/wardrobe/sec_wardrobe, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron, -/area/security/checkpoint/customs) "gFa" = ( /obj/docking_port/stationary/random{ dir = 4; @@ -21944,61 +22084,12 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/engine, /area/engineering/atmospherics_engine) -"gFy" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/security/brig) -"gFC" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/security/office) -"gFO" = ( -/obj/structure/closet/secure_closet/evidence, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/security/brig) -"gGc" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/security/prison) "gGj" = ( /obj/structure/chair{ dir = 4 }, /turf/open/floor/iron, /area/commons/fitness/recreation) -"gGn" = ( -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/security/office) -"gGv" = ( -/obj/structure/table, -/obj/effect/turf_decal/bot, -/obj/machinery/computer/security/telescreen/ordnance{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/mixing/launch) "gGC" = ( /obj/effect/landmark/xeno_spawn, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -22037,35 +22128,43 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, /area/commons/locker) -"gHj" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/machinery/door/window/northleft{ - dir = 2; - name = "Pharmacy Desk"; - req_access_txt = "5; 69" - }, -/obj/machinery/door/firedoor, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "pharmacy_shutters"; - name = "pharmacy shutters" - }, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/turf/open/floor/iron/white, -/area/medical/pharmacy) -"gHX" = ( -/obj/structure/closet/wardrobe/black, +"gHt" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover/closet, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/commons/locker) +/area/engineering/storage/tech) +"gHw" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/command/teleporter) +"gHP" = ( +/obj/item/pen, +/obj/structure/table/reinforced, +/obj/structure/reagent_dispensers/wall/peppertank/directional/east, +/obj/item/folder/red, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/machinery/newscaster/security_unit/directional/north, +/obj/item/screwdriver{ + pixel_y = 10 + }, +/obj/item/radio/off, +/obj/effect/turf_decal/tile/red/fourcorners, +/turf/open/floor/iron/dark, +/area/security/checkpoint/medical) +"gIb" = ( +/obj/machinery/medical_kiosk, +/obj/effect/turf_decal/tile/blue/half/contrasted, +/turf/open/floor/iron/white, +/area/medical/medbay/central) "gIf" = ( /obj/effect/turf_decal/trimline/blue/filled/corner{ dir = 1 @@ -22089,6 +22188,23 @@ }, /turf/open/floor/iron, /area/science/xenobiology) +"gIW" = ( +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/airlock/research{ + name = "Xenobiology Space Bridge"; + req_access_txt = "55" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "xeno_blastdoor"; + name = "biohazard containment door" + }, +/turf/open/floor/iron/white, +/area/science/research) "gJg" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -22105,16 +22221,26 @@ /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/starboard/greater) -"gJu" = ( -/obj/effect/turf_decal/tile/bar, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 +"gJw" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/button/door/directional/south{ + id = "mechbay"; + name = "Mech Bay Shutters Control"; + req_access_txt = "29" + }, +/obj/effect/turf_decal/tile/purple/half/contrasted, +/turf/open/floor/iron/white, +/area/science/lobby) +"gJS" = ( +/obj/structure/window/reinforced{ + dir = 8 }, /obj/structure/table, -/obj/structure/sign/poster/random/directional/east, -/turf/open/floor/iron/cafeteria, -/area/service/kitchen) +/obj/item/surgical_drapes, +/obj/item/cautery, +/obj/effect/turf_decal/tile/purple/half/contrasted, +/turf/open/floor/iron/white, +/area/science/robotics/lab) "gKg" = ( /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/shutters{ @@ -22124,36 +22250,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron, /area/command/gateway) -"gKi" = ( -/obj/structure/table/glass, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/paicard, -/obj/effect/turf_decal/tile/purple/anticorner/contrasted, -/turf/open/floor/iron/white, -/area/science/lobby) -"gKn" = ( -/obj/item/target, -/obj/item/target, -/obj/item/target/alien, -/obj/item/target/alien, -/obj/item/target/clown, -/obj/item/target/clown, -/obj/item/target/syndicate, -/obj/item/target/syndicate, -/obj/structure/closet/crate/secure{ - desc = "A secure crate containing various materials for building a customised test-site."; - name = "Firing Range Gear Crate"; - req_access_txt = "1" - }, -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/security/range) "gKu" = ( /obj/effect/landmark/start/botanist, /obj/effect/turf_decal/tile/green{ @@ -22164,6 +22260,11 @@ }, /turf/open/floor/iron, /area/service/hydroponics) +"gKA" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark, +/area/commons/fitness/recreation) "gKE" = ( /obj/machinery/light/floor, /turf/open/floor/iron, @@ -22192,17 +22293,12 @@ /obj/machinery/vending/cigarette, /turf/open/floor/iron, /area/maintenance/starboard/greater) -"gLc" = ( -/obj/structure/extinguisher_cabinet/directional/east, -/obj/item/kirbyplants{ - icon_state = "plant-16" +"gLh" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 }, -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/central) +/turf/open/floor/iron/white, +/area/medical/chemistry) "gLu" = ( /obj/effect/turf_decal/delivery, /obj/effect/spawner/random/structure/crate, @@ -22258,25 +22354,18 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/port/fore) -"gOw" = ( -/obj/machinery/computer/med_data, -/obj/structure/cable, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 1 +"gOC" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Primary Treatment Centre"; + req_access_txt = "5" }, -/turf/open/floor/iron/dark, -/area/command/bridge) -"gOE" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/firealarm/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/blue/half/contrasted{ +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/unres{ dir = 8 }, -/turf/open/floor/iron, -/area/hallway/primary/aft) +/turf/open/floor/iron/white, +/area/medical/treatment_center) "gOV" = ( /obj/machinery/door/airlock{ id_tag = "Cabin4"; @@ -22323,6 +22412,25 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/engineering/supermatter/room) +"gPL" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/genetics) +"gPM" = ( +/obj/structure/reagent_dispensers/wall/peppertank/directional/east, +/obj/machinery/camera/directional/east{ + c_tag = "Security - Gear Room" + }, +/obj/machinery/vending/wardrobe/sec_wardrobe, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/security/lockers) "gPT" = ( /turf/closed/wall/r_wall, /area/medical/coldroom) @@ -22341,18 +22449,6 @@ /obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, /turf/open/space/basic, /area/space/nearstation) -"gQt" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Primary Treatment Centre"; - req_access_txt = "5" - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/medical/treatment_center) "gQz" = ( /obj/effect/landmark/start/botanist, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -22367,31 +22463,27 @@ "gQV" = ( /turf/open/floor/iron/white, /area/medical/storage) +"gQW" = ( +/obj/machinery/airalarm/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green/half/contrasted, +/turf/open/floor/iron/white, +/area/medical/virology) "gQZ" = ( /obj/item/kirbyplants/dead, /turf/open/floor/plating/airless{ icon_state = "platingdmg3" }, /area/space/nearstation) -"gRk" = ( -/obj/structure/table/optable, -/obj/structure/noticeboard/directional/east, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/science/robotics/lab) "gRn" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/closed/wall/r_wall, /area/engineering/supermatter) -"gRx" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, +"gRv" = ( +/obj/effect/landmark/start/scientist, +/turf/open/floor/iron/white, /area/science/mixing/launch) "gRy" = ( /obj/machinery/door/firedoor, @@ -22407,6 +22499,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/secondary/entry) +"gRC" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/engineering/storage/tech) "gRO" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -22417,16 +22514,6 @@ icon_state = "panelscorched" }, /area/maintenance/aft/greater) -"gRT" = ( -/obj/machinery/computer/scan_consolenew{ - dir = 8 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/genetics) "gSe" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/iron/dark, @@ -22467,6 +22554,20 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/primary/fore) +"gSZ" = ( +/obj/machinery/light_switch/directional/east, +/obj/machinery/camera/directional/east{ + c_tag = "Virology Lab"; + network = list("ss13","medbay") + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/medical/virology) "gTa" = ( /obj/machinery/duct, /obj/structure/disposalpipe/segment{ @@ -22474,11 +22575,11 @@ }, /turf/open/floor/iron/white, /area/medical/surgery/theatre) -"gTo" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/service/chapel) +"gTb" = ( +/obj/machinery/vending/wardrobe/sec_wardrobe, +/obj/effect/turf_decal/tile/red/anticorner/contrasted, +/turf/open/floor/iron, +/area/security/checkpoint/customs) "gTq" = ( /obj/machinery/door/airlock/grunge{ name = "Prison Forestry" @@ -22488,34 +22589,11 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron, /area/security/prison) -"gTt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/chem_heater/withbuffer, -/obj/effect/turf_decal/tile/purple/fourcorners, -/turf/open/floor/iron/white, -/area/science/xenobiology) "gTu" = ( /obj/machinery/power/emitter, /obj/machinery/light/small/directional/south, /turf/open/floor/plating, /area/engineering/main) -"gTQ" = ( -/obj/machinery/light/directional/east, -/obj/structure/disposalpipe/segment, -/obj/machinery/computer/security/telescreen{ - desc = "Used for monitoring the engine."; - dir = 8; - name = "Engine Monitor"; - network = list("engine"); - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/command/heads_quarters/ce) "gTW" = ( /obj/machinery/camera/directional/west{ c_tag = "Security - Office - Port" @@ -22633,14 +22711,6 @@ }, /turf/open/floor/holofloor/dark, /area/science/cytology) -"gVt" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/genetics) "gVu" = ( /obj/machinery/light/directional/north, /obj/effect/turf_decal/stripes/line{ @@ -22660,6 +22730,30 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/science/research) +"gVL" = ( +/obj/structure/table, +/obj/effect/turf_decal/bot, +/obj/machinery/camera/directional/west{ + c_tag = "Science Ordnance Test Lab" + }, +/obj/item/assembly/prox_sensor{ + pixel_y = 2 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = 9; + pixel_y = -2 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = 8; + pixel_y = 9 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/mixing/launch) "gVP" = ( /obj/machinery/bluespace_beacon, /obj/effect/turf_decal/stripes/line{ @@ -22692,17 +22786,6 @@ "gWx" = ( /turf/open/floor/carpet, /area/command/heads_quarters/captain/private) -"gWD" = ( -/obj/structure/table/glass, -/obj/machinery/reagentgrinder{ - pixel_y = 8 - }, -/obj/item/toy/figure/virologist{ - pixel_x = -8 - }, -/obj/effect/turf_decal/tile/green/half/contrasted, -/turf/open/floor/iron/white, -/area/medical/virology) "gWP" = ( /obj/effect/turf_decal/plaque{ icon_state = "L4" @@ -22717,44 +22800,6 @@ /obj/structure/lattice, /turf/open/space/basic, /area/space/nearstation) -"gXr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/beerkeg, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/wood, -/area/service/bar) -"gXs" = ( -/obj/item/radio/intercom/directional/east, -/obj/structure/table, -/obj/effect/turf_decal/bot, -/obj/item/computer_hardware/hard_drive/portable{ - pixel_x = -2 - }, -/obj/item/computer_hardware/hard_drive/portable{ - pixel_x = 7; - pixel_y = 2 - }, -/obj/item/computer_hardware/hard_drive/portable{ - pixel_x = -5; - pixel_y = 8 - }, -/obj/item/computer_hardware/hard_drive/portable{ - pixel_x = -8; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/mixing/launch) -"gXC" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/engineering/atmos) "gXE" = ( /obj/effect/turf_decal/siding/white, /obj/effect/turf_decal/trimline/brown/warning, @@ -22823,6 +22868,12 @@ dir = 1 }, /area/service/chapel) +"gYI" = ( +/obj/machinery/light/directional/west, +/obj/structure/cable, +/obj/structure/sign/poster/official/random/directional/west, +/turf/open/floor/iron, +/area/commons/fitness/recreation) "gZp" = ( /turf/closed/wall, /area/maintenance/aft/greater) @@ -22852,24 +22903,43 @@ /obj/structure/sign/warning/pods, /turf/closed/wall/r_wall, /area/maintenance/department/engine) +"hac" = ( +/obj/machinery/status_display/ai/directional/north, +/obj/machinery/porta_turret/ai, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the RD's goons from the safety of his office."; + dir = 4; + name = "Research Monitor"; + network = list("rd"); + pixel_x = -28 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ai_monitored/turret_protected/aisat_interior) "hae" = ( /obj/effect/turf_decal/loading_area/white, /turf/open/floor/iron/white, /area/science/robotics/lab) -"hay" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ +"haB" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/turf_decal/siding/white{ dir = 4 }, -/obj/machinery/door/airlock{ - name = "Garden" +/obj/item/clothing/glasses/hud/health{ + pixel_y = 6 }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/service/hydroponics/garden) +/obj/item/clothing/glasses/hud/health{ + pixel_y = 4 + }, +/obj/item/clothing/glasses/hud/health{ + pixel_y = 2 + }, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/iron/white/side{ + dir = 8 + }, +/area/medical/treatment_center) "haC" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -22920,6 +22990,32 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/primary/central) +"hbw" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Engineering - Foyer - Shared Storage" + }, +/obj/structure/sign/poster/official/random/directional/west, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/engineering/storage_shared) +"hbC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/robotics/lab) +"hbG" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/science/lobby) "hbO" = ( /turf/closed/wall/r_wall, /area/command/heads_quarters/captain/private) @@ -22972,15 +23068,6 @@ /obj/structure/cable, /turf/open/floor/iron/white, /area/science/research) -"hdq" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/command/heads_quarters/ce) "hdw" = ( /obj/effect/turf_decal/trimline/blue/filled/corner{ dir = 8 @@ -23031,6 +23118,13 @@ /obj/structure/closet/emcloset, /turf/open/floor/plating, /area/maintenance/port/aft) +"hef" = ( +/obj/machinery/photocopier, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/cargo/sorting) "heh" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -23038,6 +23132,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood, /area/command/heads_quarters/hos) +"hel" = ( +/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/cargo/sorting) "her" = ( /obj/structure/chair/stool/directional/north, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -23123,12 +23223,6 @@ }, /turf/open/floor/wood, /area/cargo/qm) -"hfe" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/machinery/light_switch/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ai_monitored/command/storage/eva) "hfg" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -23163,6 +23257,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/service/hydroponics) +"hfr" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/security/checkpoint/engineering) "hfx" = ( /obj/machinery/door/airlock/maintenance{ name = "Vacant Office Maintenance"; @@ -23172,14 +23272,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/port) -"hfP" = ( -/obj/machinery/light_switch/directional/south, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron/dark, -/area/security/execution/education) "hfT" = ( /obj/effect/turf_decal/tile/purple, /obj/structure/disposalpipe/segment, @@ -23190,23 +23282,12 @@ /obj/structure/cable, /turf/open/floor/wood, /area/command/corporate_showroom) -"hge" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ +"hgg" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/carbon_input{ dir = 1 }, -/turf/open/floor/iron/white, -/area/science/cytology) -"hgi" = ( -/obj/machinery/door/window/southleft{ - dir = 8; - name = "Mass Driver Door"; - req_access_txt = "8" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/mixing/launch) +/turf/open/floor/engine/co2, +/area/engineering/atmos) "hgo" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=14.2-Central-CrewQuarters"; @@ -23227,27 +23308,13 @@ icon_state = "platingdmg3" }, /area/maintenance/starboard/greater) -"hgM" = ( -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Server Access"; - req_access_txt = "30" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +"hgN" = ( +/obj/structure/closet/wardrobe/pjs, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/landmark/start/hangover/closet, +/obj/structure/sign/poster/official/random/directional/south, /turf/open/floor/iron/dark, -/area/science/server) -"hgV" = ( -/obj/machinery/light/directional/south, -/obj/machinery/firealarm/directional/south, -/obj/structure/rack, -/obj/item/storage/secure/briefcase, -/obj/item/clothing/mask/cigarette/cigar, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/command/bridge) +/area/commons/dorms) "hgX" = ( /obj/machinery/portable_atmospherics/canister/nitrogen, /obj/effect/turf_decal/bot, @@ -23284,17 +23351,12 @@ /obj/structure/cable, /turf/open/floor/iron/white, /area/science/xenobiology) -"hhM" = ( -/obj/machinery/shower{ - name = "emergency shower"; - pixel_y = 16 - }, -/obj/effect/turf_decal/trimline/blue/end, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"hhO" = ( +/obj/structure/cable, +/obj/machinery/chem_heater/withbuffer, +/obj/machinery/power/apc/auto_name/directional/west, /obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 + dir = 8 }, /turf/open/floor/iron/white, /area/medical/chemistry) @@ -23392,10 +23454,6 @@ }, /turf/open/floor/plating, /area/medical/abandoned) -"hki" = ( -/obj/machinery/air_sensor/atmos/air_tank, -/turf/open/floor/engine/air, -/area/engineering/atmos) "hks" = ( /obj/effect/turf_decal/trimline/blue/filled/corner{ dir = 8 @@ -23415,6 +23473,18 @@ }, /turf/open/floor/iron/white, /area/medical/virology) +"hkJ" = ( +/obj/machinery/camera/directional/south{ + c_tag = "Auxiliary Base Construction" + }, +/obj/machinery/button/door/directional/south{ + id = "aux_base_shutters"; + name = "Public Shutters Control"; + req_access_txt = "72" + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron, +/area/construction/mining/aux_base) "hkK" = ( /turf/closed/wall, /area/medical/medbay/lobby) @@ -23431,36 +23501,29 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/service/bar) -"hkZ" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 12 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 +"hkS" = ( +/obj/effect/turf_decal/box, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 }, +/obj/structure/cable, /turf/open/floor/iron/white, -/area/medical/medbay/central) -"hld" = ( -/obj/machinery/status_display/ai/directional/north, -/obj/machinery/porta_turret/ai, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the RD's goons from the safety of his office."; - dir = 4; - name = "Research Monitor"; - network = list("rd"); - pixel_x = -28 +/area/science/mixing/launch) +"hkW" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Science Robotics Workshop"; + network = list("ss13","rd") + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light_switch/directional/north{ + pixel_x = 9 }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/ai_monitored/turret_protected/aisat_interior) +/area/science/robotics/lab) "hle" = ( /obj/effect/turf_decal/trimline/red/filled/corner{ dir = 4 @@ -23570,6 +23633,15 @@ /obj/structure/lattice/catwalk, /turf/open/space, /area/space/nearstation) +"hnt" = ( +/obj/structure/reagent_dispensers/wall/peppertank/directional/north, +/obj/structure/closet/secure_closet/security, +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/security/checkpoint/customs) "hnw" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -23622,6 +23694,13 @@ /obj/machinery/computer/department_orders/engineering, /turf/open/floor/iron, /area/engineering/break_room) +"hoe" = ( +/obj/machinery/light_switch/directional/west, +/obj/machinery/power/smes/engineering, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/engineering/main) "hoj" = ( /obj/machinery/atmospherics/components/binary/crystallizer{ dir = 4 @@ -23654,12 +23733,6 @@ }, /turf/open/floor/plating, /area/maintenance/department/science/xenobiology) -"hoC" = ( -/obj/machinery/vending/cigarette, -/obj/machinery/newscaster/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/hallway/secondary/command) "hoF" = ( /obj/effect/turf_decal/tile/bar, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -23694,16 +23767,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai_upload) -"hoS" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"hpi" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted, -/turf/open/floor/iron/white, -/area/medical/medbay/central) "hpk" = ( /obj/structure/disposaloutlet{ dir = 1 @@ -23717,6 +23780,14 @@ /obj/structure/disposalpipe/trunk, /turf/open/floor/plating, /area/cargo/sorting) +"hpm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/command/bridge) "hpn" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 1 @@ -23771,11 +23842,31 @@ /obj/machinery/power/energy_accumulator/grounding_rod/anchored, /turf/open/floor/engine, /area/engineering/supermatter) +"hqc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/destructive_scanner, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/science/lobby) "hqf" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/duct, /turf/open/floor/iron/freezer, /area/commons/toilet/restrooms) +"hqg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/medical/pharmacy) "hql" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/westleft{ @@ -23902,19 +23993,15 @@ icon_state = "panelscorched" }, /area/maintenance/port/aft) -"hrO" = ( -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/machinery/door/airlock/research{ - name = "Research Division Access"; - req_access_txt = "47" +"hrI" = ( +/obj/machinery/chem_dispenser{ + layer = 2.7 }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "sci-entrance" +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 }, /turf/open/floor/iron/white, -/area/science/research) +/area/medical/pharmacy) "hrY" = ( /obj/structure/chair/office, /turf/open/floor/iron, @@ -23941,12 +24028,36 @@ dir = 1 }, /area/engineering/atmos) +"hsy" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/tier_1, +/obj/machinery/camera/directional/east{ + c_tag = "Science Ordnance Gas Storage 2"; + network = list("ss13","rd") + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/storage) "hsE" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 }, /turf/open/floor/iron/dark/smooth_large, /area/medical/storage) +"hsM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Auxiliary Tool Storage"; + req_access_txt = "12" + }, +/obj/effect/landmark/event_spawn, +/obj/machinery/navbeacon/wayfinding, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/turf/open/floor/iron, +/area/commons/storage/tools) "hsO" = ( /obj/structure/table, /obj/item/paper_bin{ @@ -23979,11 +24090,25 @@ }, /turf/open/floor/iron, /area/security/prison) +"htC" = ( +/obj/machinery/computer/shuttle/mining{ + dir = 1; + req_access = null + }, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/cargo/miningoffice) "htR" = ( /turf/open/floor/iron/dark/corner{ dir = 4 }, /area/security/prison) +"htS" = ( +/obj/structure/fluff/iced_abductor, +/turf/open/misc/asteroid/basalt/airless, +/area/space/nearstation) "htW" = ( /obj/effect/landmark/event_spawn, /obj/effect/turf_decal/tile/neutral{ @@ -24007,6 +24132,24 @@ /obj/effect/spawner/random/food_or_drink/seed, /turf/open/floor/plating, /area/maintenance/starboard/aft) +"huT" = ( +/obj/structure/table/glass, +/obj/item/folder/white{ + pixel_y = 2 + }, +/obj/item/screwdriver{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/radio/headset/headset_med, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/item/hand_labeler, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/turf/open/floor/iron/white, +/area/medical/pharmacy) "hva" = ( /obj/machinery/door_timer{ id = "Cell 3"; @@ -24033,16 +24176,19 @@ /mob/living/simple_animal/pet/dog/corgi/ian, /turf/open/floor/wood, /area/command/heads_quarters/hop) -"hvL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 +"hvN" = ( +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/machinery/door/airlock/research{ + name = "Research Division Access"; + req_access_txt = "47" }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "sci-entrance" }, -/turf/open/floor/iron, -/area/engineering/break_room) +/turf/open/floor/iron/white, +/area/science/research) "hvQ" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -24074,16 +24220,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/medical/morgue) -"hwo" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start/depsec/engineering, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/security/checkpoint/engineering) "hwA" = ( /obj/structure/table, /obj/item/clothing/gloves/color/latex, @@ -24094,6 +24230,17 @@ }, /turf/open/floor/iron/white, /area/security/medical) +"hwD" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/sign/poster/random/directional/east, +/turf/open/floor/iron, +/area/hallway/primary/central) "hwS" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -24113,26 +24260,6 @@ }, /turf/open/floor/iron, /area/engineering/atmos) -"hxg" = ( -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/security/prison) -"hxo" = ( -/obj/structure/window/reinforced, -/obj/machinery/computer/atmos_control/tank/nitrogen_tank{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/machinery/atmospherics/pipe/bridge_pipe/dark/visible{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/engineering/atmos) "hxw" = ( /obj/effect/turf_decal/plaque{ icon_state = "L13" @@ -24141,6 +24268,23 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/primary/central) +"hxF" = ( +/obj/structure/rack, +/obj/item/gun/energy/e_gun{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/e_gun, +/obj/item/gun/energy/e_gun{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/ai_monitored/security/armory) "hxX" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -24161,6 +24305,12 @@ /obj/effect/landmark/start/depsec/science, /turf/open/floor/iron, /area/security/checkpoint/science) +"hyp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron, +/area/commons/storage/tools) "hyt" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -24202,18 +24352,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/carpet, /area/command/heads_quarters/hop) -"hyV" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/cable, -/obj/machinery/newscaster/security_unit/directional/east, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/security/lockers) "hyY" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -24223,6 +24361,15 @@ }, /turf/open/floor/plating, /area/command/heads_quarters/hos) +"hyZ" = ( +/obj/machinery/flasher/directional/east{ + id = "AI"; + pixel_y = 26 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/holopad/secure, +/turf/open/floor/iron/dark, +/area/ai_monitored/turret_protected/ai) "hza" = ( /obj/structure/table/wood, /obj/item/folder/white{ @@ -24331,16 +24478,32 @@ }, /turf/closed/wall/r_wall, /area/engineering/atmos) -"hBL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +"hBJ" = ( /obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 4 }, -/obj/effect/turf_decal/tile/purple/half/contrasted, -/turf/open/floor/iron/white, -/area/science/lobby) +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/engineering/break_room) +"hBR" = ( +/obj/structure/rack, +/obj/item/shield/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/shield/riot, +/obj/item/shield/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted, +/turf/open/floor/iron/dark, +/area/ai_monitored/security/armory) "hBT" = ( /obj/machinery/holopad, /obj/effect/turf_decal/tile/blue{ @@ -24365,20 +24528,6 @@ /obj/effect/turf_decal/tile/purple, /turf/open/floor/iron/white, /area/science/misc_lab) -"hCH" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/engineering{ - name = "Auxiliary Base Construction"; - req_one_access_txt = "72" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/turf/open/floor/iron, -/area/construction/mining/aux_base) "hCI" = ( /obj/item/hand_labeler_refill, /obj/structure/rack, @@ -24400,6 +24549,25 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, /area/commons/locker) +"hCU" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/westright{ + dir = 4; + name = "Hydroponics Desk"; + req_one_access_txt = "30;35" + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/green/fourcorners, +/turf/open/floor/iron, +/area/service/hydroponics) "hDb" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, @@ -24418,12 +24586,18 @@ dir = 1 }, /area/command/heads_quarters/ce) -"hDg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/poster/contraband/random/directional/west, -/turf/open/floor/wood, -/area/service/theater) +"hDN" = ( +/obj/machinery/photocopier{ + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/security/brig) "hDP" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -24439,23 +24613,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/commons/storage/primary) -"hDS" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Science Genetics"; - network = list("ss13","rd") - }, -/obj/machinery/newscaster/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/genetics) "hDV" = ( /obj/effect/landmark/event_spawn, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -24481,6 +24638,18 @@ /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/starboard/aft) +"hEl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Departure Lounge Security Post"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/hallway/secondary/exit/departure_lounge) "hEr" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -24504,6 +24673,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/engineering/main) +"hEX" = ( +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/science/mixing) "hFc" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -24564,6 +24740,19 @@ /obj/item/reagent_containers/glass/rag, /turf/open/floor/iron/white, /area/medical/abandoned) +"hFZ" = ( +/obj/machinery/dna_scannernew, +/obj/effect/turf_decal/siding/purple{ + dir = 10 + }, +/obj/machinery/requests_console/directional/west{ + department = "Genetics"; + departmentType = 2; + name = "Genetics Requests Console" + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/genetics) "hGa" = ( /obj/effect/decal/cleanable/oil, /obj/machinery/light_switch/directional/east, @@ -24619,18 +24808,6 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron, /area/hallway/primary/aft) -"hGS" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Engineering - Foyer - Shared Storage" - }, -/obj/structure/sign/poster/official/random/directional/west, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/engineering/storage_shared) "hGT" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -24639,10 +24816,18 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"hHo" = ( -/obj/effect/turf_decal/tile/blue/anticorner/contrasted, -/turf/open/floor/iron/dark, -/area/command/bridge) +"hHy" = ( +/obj/machinery/disposal/bin, +/obj/machinery/firealarm/directional/west, +/obj/machinery/light/directional/west, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/cargo/sorting) "hHJ" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=1.5-Fore-Central"; @@ -24656,31 +24841,6 @@ }, /turf/open/space/basic, /area/space/nearstation) -"hHP" = ( -/obj/structure/table/glass, -/obj/structure/reagent_dispensers/wall/virusfood/directional/west, -/obj/machinery/requests_console/directional/south{ - department = "Virology"; - name = "Virology Requests Console"; - receive_ore_updates = 1 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/pen/red, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/effect/turf_decal/tile/green/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/medical/virology) "hIa" = ( /obj/structure/chair, /obj/effect/landmark/start/chaplain, @@ -24688,11 +24848,25 @@ /turf/open/floor/iron/grimy, /area/service/chapel/office) "hIe" = ( -/obj/machinery/atmospherics/pipe/smart/simple/supply/visible{ - dir = 10 +/obj/machinery/airalarm/directional/east, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 4 }, -/turf/closed/wall/r_wall, -/area/engineering/atmos/pumproom) +/turf/open/floor/iron/white, +/area/medical/virology) +"hIn" = ( +/obj/machinery/disposal/bin, +/obj/machinery/light_switch/directional/south, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/camera/directional/south{ + c_tag = "Fitness Room - Aft" + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/commons/fitness/recreation) "hIt" = ( /obj/structure/table/reinforced, /obj/machinery/door/poddoor/shutters{ @@ -24772,17 +24946,6 @@ }, /turf/open/floor/iron, /area/commons/fitness/recreation) -"hKA" = ( -/obj/structure/table, -/obj/item/storage/box/prisoner{ - pixel_y = 8 - }, -/obj/item/storage/box/prisoner, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/security/prison) "hKH" = ( /turf/closed/wall/mineral/plastitanium, /area/commons/fitness/recreation) @@ -24810,12 +24973,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/central) -"hLu" = ( -/obj/machinery/status_display/evac/directional/north, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/command/gateway) "hLx" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -24832,20 +24989,6 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron, /area/security/prison) -"hLN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Vault Storage" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/construction/storage_wing) "hMa" = ( /obj/effect/turf_decal/trimline/purple/line{ dir = 8 @@ -24864,18 +25007,6 @@ }, /turf/open/floor/iron/dark, /area/security/brig) -"hMm" = ( -/obj/structure/chair, -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/hallway/secondary/exit/departure_lounge) "hMn" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 4 @@ -24889,10 +25020,6 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/plating, /area/maintenance/fore) -"hMW" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/service/chapel) "hNh" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -24909,13 +25036,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/fore) -"hNy" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/table/wood, -/obj/item/food/pie/cream, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/wood, -/area/service/theater) "hNP" = ( /obj/effect/turf_decal/trimline/blue/filled/corner{ dir = 8 @@ -24930,6 +25050,14 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/commons/lounge) +"hNZ" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Staff Entrance"; + req_access_txt = "5" + }, +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/iron/white, +/area/medical/office) "hOe" = ( /obj/structure/table/wood, /turf/open/floor/wood, @@ -24953,18 +25081,28 @@ }, /turf/open/floor/iron, /area/security/prison) -"hOH" = ( -/obj/structure/sign/poster/official/anniversary_vintage_reprint{ - pixel_y = 32 +"hOF" = ( +/obj/machinery/disposal/bin, +/obj/machinery/camera/directional/east{ + c_tag = "Garden" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/disposalpipe/trunk{ + dir = 8 }, +/obj/machinery/light/directional/east, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron, +/area/service/hydroponics/garden) +"hOV" = ( +/obj/structure/closet/toolcloset, +/obj/item/radio/intercom/directional/north, /obj/effect/turf_decal/tile/yellow/half/contrasted{ dir = 1 }, -/turf/open/floor/iron/white, -/area/medical/chemistry) +/turf/open/floor/iron, +/area/commons/storage/tools) "hPi" = ( /obj/machinery/door/airlock/grunge{ name = "Cell 1" @@ -24973,21 +25111,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/security/prison/safe) -"hPk" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/effect/turf_decal/siding/white/corner, -/obj/item/storage/box/gloves{ - pixel_y = 8 - }, -/obj/item/storage/box/masks{ - pixel_y = 4 - }, -/obj/item/storage/box/bodybags, -/turf/open/floor/iron/white/side{ - dir = 9 - }, -/area/medical/treatment_center) "hPq" = ( /obj/effect/turf_decal/tile/neutral, /obj/structure/disposalpipe/segment{ @@ -25050,6 +25173,25 @@ /obj/item/pen, /turf/open/floor/iron, /area/commons/vacant_room/commissary) +"hRj" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold/green/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown/fourcorners, +/turf/open/floor/iron, +/area/engineering/atmos) +"hRm" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/security_space_law, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/security/courtroom) "hRx" = ( /turf/closed/wall, /area/maintenance/port/greater) @@ -25067,6 +25209,12 @@ /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/starboard/greater) +"hRN" = ( +/obj/machinery/atmospherics/components/trinary/mixer{ + dir = 1 + }, +/turf/open/floor/iron, +/area/science/mixing) "hSw" = ( /obj/effect/turf_decal/tile/bar, /obj/effect/turf_decal/tile/bar{ @@ -25077,20 +25225,22 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/service/bar) -"hSF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "bridge-left" - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, +"hSy" = ( +/obj/structure/closet/wardrobe/mixed, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/landmark/start/hangover/closet, /turf/open/floor/iron/dark, -/area/command/bridge) +/area/commons/locker) +"hSz" = ( +/obj/effect/turf_decal/tile/bar, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/table, +/obj/structure/sign/poster/random/directional/east, +/turf/open/floor/iron/cafeteria, +/area/service/kitchen) "hSK" = ( /obj/effect/turf_decal/plaque{ icon_state = "L7" @@ -25133,16 +25283,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white/corner, /area/hallway/secondary/entry) -"hTg" = ( -/obj/machinery/computer/station_alert{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/engineering/break_room) "hTj" = ( /obj/structure/table, /obj/item/book/manual/hydroponics_pod_people, @@ -25151,24 +25291,15 @@ }, /turf/open/floor/iron, /area/service/hydroponics) -"hTl" = ( -/obj/item/wrench, -/obj/item/stack/sheet/glass{ - amount = 30 +"hTs" = ( +/obj/structure/chair{ + name = "Judge" }, -/obj/item/stack/sheet/iron{ - amount = 30 +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 4 }, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/structure/closet, -/obj/item/vending_refill/cigarette, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/sign/poster/random/directional/south, -/turf/open/floor/wood, -/area/service/bar) +/turf/open/floor/iron, +/area/security/courtroom) "hTt" = ( /obj/machinery/computer/station_alert{ dir = 1 @@ -25206,33 +25337,22 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/maintenance/space_hut) -"hTY" = ( -/obj/structure/safe, -/obj/item/storage/secure/briefcase{ - contents = newlist(/obj/item/clothing/suit/armor/vest,/obj/item/gun/ballistic/automatic/pistol,/obj/item/suppressor,/obj/item/melee/baton/telescopic,/obj/item/clothing/mask/balaclava,/obj/item/bodybag,/obj/item/soap/nanotrasen) - }, -/obj/item/storage/backpack/duffelbag/syndie/hitman, -/obj/item/card/id/advanced/silver/reaper, -/obj/item/lazarus_injector, -/obj/item/gun/energy/disabler, -/obj/item/gun/ballistic/revolver/russian, -/obj/item/ammo_box/a357, -/obj/item/clothing/neck/stethoscope, -/obj/item/book{ - desc = "An undeniably handy book."; - icon_state = "bookknock"; - name = "\improper A Simpleton's Guide to Safe-cracking with Stethoscopes" - }, -/obj/effect/turf_decal/bot_white/left, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ai_monitored/command/nuke_storage) "hUr" = ( /obj/effect/turf_decal/tile/yellow{ dir = 1 }, /turf/open/floor/iron/white, /area/medical/chemistry) +"hUx" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start/chemist, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/medical/pharmacy) "hUy" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -25278,6 +25398,13 @@ }, /turf/open/floor/iron, /area/engineering/break_room) +"hWc" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/bot_white, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/storage) "hWg" = ( /obj/machinery/door/airlock/external{ name = "Solar Maintenance"; @@ -25339,10 +25466,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/primary/central) -"hXo" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/command/gateway) "hXy" = ( /obj/machinery/teleport/hub, /turf/open/floor/plating, @@ -25358,22 +25481,29 @@ }, /turf/open/floor/iron, /area/maintenance/disposal/incinerator) -"hYh" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Teleporter Room" +"hXY" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 }, -/obj/structure/rack, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 +/turf/open/floor/iron, +/area/engineering/break_room) +"hYi" = ( +/obj/structure/table, +/obj/item/stack/package_wrap{ + pixel_x = -7; + pixel_y = 9 }, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/command/teleporter) +/obj/item/dest_tagger{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/cargo/sorting) "hYl" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -25398,11 +25528,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/starboard/greater) -"hZf" = ( -/obj/item/clothing/suit/snowman, -/obj/item/clothing/head/snowman, -/turf/open/floor/fake_snow, -/area/maintenance/port/aft) "hZj" = ( /obj/machinery/duct, /obj/effect/turf_decal/trimline/blue/filled/corner, @@ -25456,6 +25581,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/disposal) +"iac" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron, +/area/engineering/break_room) "iad" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 @@ -25470,28 +25604,6 @@ }, /turf/open/floor/iron/freezer, /area/commons/fitness/recreation) -"iap" = ( -/obj/machinery/light/directional/south, -/obj/machinery/button/door/directional/south{ - id = "roboticsprivacy2"; - name = "Robotics Privacy Control"; - req_access_txt = "29" - }, -/obj/item/mod/core/standard{ - pixel_x = -4 - }, -/obj/item/mod/core/standard{ - pixel_x = 4 - }, -/obj/item/mod/core/standard{ - pixel_y = 4 - }, -/obj/structure/closet/crate/science{ - name = "MOD core crate" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/robotics/lab) "iat" = ( /obj/structure/cable, /turf/open/floor/wood, @@ -25505,43 +25617,34 @@ /obj/effect/landmark/start/lawyer, /turf/open/floor/wood, /area/service/lawoffice) -"iaY" = ( -/obj/item/radio/intercom/directional/west, -/obj/machinery/computer/secure_data{ - dir = 4 - }, -/obj/machinery/button/door/directional/west{ - id = "MedbayFoyer"; - name = "Medbay Doors Control"; - normaldoorcontrol = 1; - pixel_y = -9 - }, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron/dark, -/area/security/checkpoint/medical) -"ibe" = ( -/obj/effect/turf_decal/tile/yellow/half/contrasted{ +"iaT" = ( +/obj/effect/turf_decal/stripes/white/line{ dir = 1 }, -/turf/open/floor/iron, -/area/construction/mining/aux_base) +/obj/effect/turf_decal/stripes/white/line, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/storage) "ibf" = ( /obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, /obj/machinery/atmospherics/pipe/smart/simple/purple/visible, /turf/closed/wall, /area/engineering/atmos) -"ibl" = ( -/obj/machinery/computer/prisoner/gulag_teleporter_computer{ - dir = 8 +"ibj" = ( +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 6 }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/security/brig) +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/purple/fourcorners, +/turf/open/floor/iron, +/area/hallway/primary/aft) "ibo" = ( /obj/structure/table/glass, /obj/item/paper_bin, @@ -25574,13 +25677,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/aft/lesser) -"ibI" = ( -/obj/machinery/light_switch/directional/north, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/medical/chemistry) "ibS" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -25588,32 +25684,6 @@ /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden, /turf/open/floor/iron, /area/engineering/atmos/storage/gas) -"ici" = ( -/obj/machinery/door/window/southright{ - dir = 1; - name = "First Aid Supplies"; - req_access_txt = "5" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/storage/medkit/regular{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/storage/medkit/toxin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/medkit/toxin, -/obj/item/storage/medkit/toxin{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/table/reinforced, -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/medical/storage) "icj" = ( /obj/machinery/door/airlock/maintenance{ name = "Mining Dock Maintenance"; @@ -25661,18 +25731,6 @@ }, /turf/open/floor/wood, /area/command/heads_quarters/captain/private) -"icN" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Engineering Security Post"; - req_access_txt = "63" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron, -/area/security/checkpoint/engineering) "icO" = ( /obj/machinery/door/airlock/grunge{ name = "Morgue"; @@ -25681,38 +25739,6 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron/dark, /area/medical/morgue) -"idh" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Storage"; - req_access_txt = "5" - }, -/obj/machinery/duct, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/medical/storage) -"idj" = ( -/obj/machinery/computer/secure_data{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/hallway/secondary/exit/departure_lounge) -"ido" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/engineering/storage/tech) -"idr" = ( -/obj/machinery/shower{ - pixel_y = 12 - }, -/obj/item/radio/intercom/directional/east, -/obj/effect/turf_decal/tile/green/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/medical/virology) "idt" = ( /obj/structure/chair/comfy/brown{ dir = 8 @@ -25788,27 +25814,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/medical/virology) -"ieM" = ( -/obj/item/book/manual/wiki/chemistry{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/book/manual/wiki/grenades, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/obj/item/book/manual/wiki/plumbing{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/reagent_containers/dropper, -/obj/structure/table, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/medical/chemistry) "ieR" = ( /obj/machinery/door/airlock/external{ name = "Escape Pod One"; @@ -25819,18 +25824,6 @@ }, /turf/open/floor/plating, /area/hallway/secondary/entry) -"ieT" = ( -/obj/machinery/light/directional/south, -/obj/structure/bed/roller, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/white, -/area/medical/medbay/lobby) "ifr" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, @@ -25878,63 +25871,17 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/security/office) -"igu" = ( -/obj/machinery/power/shieldwallgen, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/command/teleporter) "igv" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/item/radio/intercom/directional/east, /turf/open/floor/wood, /area/service/theater) -"igy" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/red/box, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/science/cytology) -"igC" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Bridge - Starboard" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/command/bridge) -"igF" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/light/directional/north, -/obj/machinery/portable_atmospherics/canister/tier_1, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/storage) "igG" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 10 }, /turf/open/floor/iron/white, /area/medical/storage) -"igI" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/storage) "ihb" = ( /obj/structure/chair/office{ dir = 1 @@ -25990,65 +25937,54 @@ icon_state = "platingdmg1" }, /area/maintenance/starboard/lesser) -"ihJ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 +"ihP" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/blue{ + dir = 4 }, -/obj/structure/sign/poster/random/directional/west, -/turf/open/floor/iron, -/area/hallway/primary/central) +/obj/structure/cable, +/obj/structure/sign/poster/official/random/directional/east, +/turf/open/floor/iron/white/corner, +/area/hallway/secondary/entry) "ihQ" = ( /turf/closed/wall, /area/command/heads_quarters/rd) -"ihY" = ( +"ihT" = ( +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/medical/virology) +"iia" = ( +/obj/effect/turf_decal/bot, +/obj/item/robot_suit, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/commons/fitness/recreation) -"iib" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/stripes/white/line, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/storage) +/area/science/robotics/lab) "iit" = ( /obj/structure/cable, /turf/open/floor/iron/solarpanel/airless, /area/solars/starboard/aft) -"iiv" = ( -/obj/structure/table, -/obj/machinery/newscaster/security_unit/directional/east, -/obj/machinery/camera/directional/south{ - c_tag = "Departure Lounge - Security Post" - }, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/taperecorder{ - pixel_x = 4 - }, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron, -/area/hallway/secondary/exit/departure_lounge) "iix" = ( /obj/structure/closet/crate/bin, /obj/item/knife/kitchen, /turf/open/floor/plating, /area/maintenance/port/aft) -"iiy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, +"iiC" = ( +/obj/machinery/iv_drip, +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/tile/blue/half/contrasted, /turf/open/floor/iron/white, -/area/medical/chemistry) +/area/medical/surgery/aft) +"iiD" = ( +/obj/machinery/mineral/equipment_vendor, +/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/cargo/miningoffice) "iiI" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -26058,15 +25994,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/commons/locker) -"ija" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/genetics) "iji" = ( /obj/effect/turf_decal/trimline/green/filled/corner, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -26092,15 +26019,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/engineering/atmos/storage/gas) -"ika" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/camera/directional/west{ - c_tag = "Medbay Primary Treatment Centre West"; - network = list("ss13","medbay") - }, -/turf/open/floor/iron/white, -/area/medical/treatment_center) "ikj" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, @@ -26188,6 +26106,41 @@ }, /turf/open/floor/iron/white, /area/science/cytology) +"ilu" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rdgene2"; + name = "Genetics Lab Shutters" + }, +/obj/machinery/door/window/westleft{ + dir = 4; + name = "Genetics Desk"; + req_access_txt = "9" + }, +/obj/item/folder, +/obj/item/pen, +/obj/effect/turf_decal/tile/purple/fourcorners, +/turf/open/floor/iron, +/area/science/genetics) +"ilG" = ( +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/machinery/light/small/directional/north, +/obj/structure/table/wood, +/obj/structure/noticeboard/directional/north, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/service/chapel) +"ilJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/construction/mining/aux_base) "ilO" = ( /obj/machinery/firealarm/directional/north, /obj/effect/turf_decal/tile/neutral{ @@ -26197,12 +26150,18 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/primary/port) -"ilU" = ( -/obj/machinery/iv_drip, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/white, -/area/medical/surgery/aft) +"ime" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/robotics/lab) "img" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ dir = 4 @@ -26346,6 +26305,10 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron/white/side, /area/science/lobby) +"ioe" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/commons/fitness/recreation) "ior" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ @@ -26388,27 +26351,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/security/courtroom) -"ipW" = ( -/obj/machinery/door/window/northleft{ - dir = 8; - name = "Jetpack Storage"; - pixel_x = -1; - req_access_txt = "18" - }, -/obj/structure/window/reinforced, -/obj/structure/rack, -/obj/item/tank/jetpack/carbondioxide{ - pixel_x = 4; - pixel_y = -1 - }, -/obj/item/tank/jetpack/carbondioxide, -/obj/item/tank/jetpack/carbondioxide{ - pixel_x = -4; - pixel_y = 1 - }, +"ipR" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/recharge_station, /turf/open/floor/iron/dark, -/area/ai_monitored/command/storage/eva) +/area/ai_monitored/command/storage/satellite) "iqk" = ( /obj/machinery/camera/directional/east{ c_tag = "Atmospherics Tank - Toxins" @@ -26441,6 +26388,18 @@ /obj/effect/decal/cleanable/dirt, /turf/closed/wall, /area/maintenance/starboard/greater) +"iqY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/medical/medbay/central) "iri" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -26517,6 +26476,18 @@ }, /turf/open/floor/iron/white, /area/science/research) +"isP" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Distro to Waste" + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/engineering/atmos/pumproom) "isU" = ( /obj/machinery/door/airlock/external, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ @@ -26560,38 +26531,29 @@ }, /turf/open/floor/iron/white, /area/science/research) -"itA" = ( -/obj/machinery/status_display/ai/directional/north, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -1; - pixel_y = 4 +"itE" = ( +/obj/machinery/status_display/evac/directional/west, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/brown/half/contrasted{ +/obj/machinery/computer/atmos_control/nocontrol/master{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner{ dir = 1 }, -/turf/open/floor/iron/dark, -/area/command/bridge) -"itC" = ( -/obj/machinery/turretid{ - icon_state = "control_stun"; - name = "AI Chamber turret control"; - pixel_x = 3; - pixel_y = -23 +/area/engineering/atmos/storage/gas) +"itM" = ( +/obj/machinery/button/door/directional/north{ + id = "chem_lockdown"; + name = "chemistry lockdown control"; + req_access_txt = "69" }, -/obj/machinery/door/window{ - atom_integrity = 300; - base_state = "leftsecure"; - dir = 8; - icon_state = "leftsecure"; - name = "Primary AI Core Access"; - req_access_txt = "16" +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron/dark, -/area/ai_monitored/turret_protected/ai) +/turf/open/floor/iron/white, +/area/medical/chemistry) "itV" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -26672,6 +26634,15 @@ /obj/structure/closet/crate, /turf/open/floor/plating/airless, /area/space/nearstation) +"ivJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/no_nightlight/directional/east, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/engineering/atmos) "ivO" = ( /obj/item/radio/intercom/directional/north, /obj/machinery/firealarm/directional/west, @@ -26684,15 +26655,6 @@ /obj/item/clothing/under/misc/burial, /turf/open/floor/iron/grimy, /area/service/chapel/office) -"ivS" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/medical/virology) "iwp" = ( /obj/structure/window/reinforced{ dir = 1; @@ -26716,6 +26678,53 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/security/brig) +"iwK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/landmark/start/geneticist, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/genetics) +"iwX" = ( +/obj/machinery/computer/cargo{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown/anticorner/contrasted, +/turf/open/floor/iron, +/area/cargo/sorting) +"ixe" = ( +/obj/machinery/lapvend, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/science/lobby) +"ixn" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/bot, +/obj/machinery/camera{ + c_tag = "Engineering - Foyer - Starboard"; + dir = 9 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/engineering/break_room) +"ixw" = ( +/obj/machinery/holopad, +/obj/machinery/camera/directional/south{ + network = list("minisat") + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/dark, +/area/ai_monitored/aisat/exterior) "ixz" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/tile/neutral{ @@ -26726,16 +26735,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/primary/central) -"ixL" = ( -/obj/item/radio/intercom/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/medical/chemistry) +"ixT" = ( +/obj/effect/turf_decal/bot_white/left, +/obj/structure/closet/crate/silvercrate, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ai_monitored/command/nuke_storage) "iyk" = ( /obj/machinery/door/airlock/maintenance{ name = "Medbay Maintenance"; @@ -26775,18 +26780,6 @@ /obj/machinery/door/firedoor/heavy, /turf/open/floor/iron/dark/textured, /area/engineering/atmos) -"iyV" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Auxiliary Base Construction" - }, -/obj/machinery/button/door/directional/south{ - id = "aux_base_shutters"; - name = "Public Shutters Control"; - req_access_txt = "72" - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron, -/area/construction/mining/aux_base) "izf" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -26795,11 +26788,14 @@ dir = 1 }, /area/engineering/atmos) -"izv" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/engineering/storage/tech) +"izy" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/obj/item/stamp/ce, +/obj/item/reagent_containers/pill/patch/aiuri, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/iron, +/area/command/heads_quarters/ce) "izW" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, @@ -26854,12 +26850,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/secondary/command) -"iAW" = ( -/obj/structure/table/wood, -/obj/item/clothing/head/sombrero, -/obj/structure/sign/poster/random/directional/east, -/turf/open/floor/wood, -/area/service/theater) "iBF" = ( /obj/machinery/vending/hydroseeds{ slogan_delay = 700 @@ -26871,37 +26861,21 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/service/hydroponics) -"iBQ" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/eastright{ - name = "Pharmacy Desk"; - req_access_txt = "5; 69" - }, -/obj/machinery/door/window/eastright{ - dir = 8; - name = "Pharmacy Desk"; - req_access_txt = "5" - }, -/obj/item/reagent_containers/glass/bottle/morphine, -/obj/item/reagent_containers/glass/bottle/toxin{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = 8 - }, -/obj/item/reagent_containers/glass/bottle/multiver{ - pixel_x = -5 - }, -/obj/item/reagent_containers/syringe/epinephrine, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/turf/open/floor/iron/white, -/area/medical/pharmacy) +"iBO" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/engineering/storage/tech) "iBW" = ( /obj/structure/cable, /turf/open/floor/wood, /area/commons/lounge) +"iBY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos/pumproom) "iBZ" = ( /obj/structure/toilet{ pixel_y = 8 @@ -26932,13 +26906,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/engineering/atmos/storage/gas) -"iCp" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/stripes/white/line, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/storage) "iCB" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/carpet, @@ -26952,15 +26919,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/medical/office) -"iCK" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/engineering/atmos) "iCV" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit, @@ -26988,6 +26946,12 @@ }, /turf/open/floor/plating, /area/commons/fitness/recreation) +"iDo" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/iron/dark, +/area/engineering/storage/tech) "iDs" = ( /obj/structure/sign/warning/fire{ pixel_x = 32 @@ -27023,6 +26987,15 @@ /obj/item/stock_parts/manipulator, /turf/open/floor/iron, /area/science/lab) +"iDZ" = ( +/obj/structure/chair{ + pixel_y = -2 + }, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/service/chapel/funeral) "iEb" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock{ @@ -27059,6 +27032,12 @@ }, /turf/open/floor/iron, /area/engineering/atmos/storage/gas) +"iEx" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/turf/open/floor/iron, +/area/engineering/atmos/pumproom) "iEG" = ( /obj/effect/landmark/xeno_spawn, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -27088,6 +27067,24 @@ dir = 8 }, /area/service/chapel) +"iFu" = ( +/obj/machinery/camera/directional/east{ + c_tag = "Virology Airlock"; + network = list("ss13","medbay") + }, +/obj/structure/closet/l3closet, +/obj/effect/turf_decal/tile/green/anticorner/contrasted, +/turf/open/floor/iron/white, +/area/medical/virology) +"iFw" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/engineering/break_room) "iFA" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -27104,14 +27101,6 @@ }, /turf/open/floor/plating, /area/service/chapel/funeral) -"iFL" = ( -/obj/machinery/autolathe, -/obj/machinery/camera/directional/south{ - c_tag = "Cargo - Mailroom" - }, -/obj/effect/turf_decal/tile/brown/fourcorners, -/turf/open/floor/iron, -/area/cargo/sorting) "iFR" = ( /obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ dir = 4 @@ -27122,13 +27111,6 @@ "iFZ" = ( /turf/closed/wall, /area/cargo/sorting) -"iGa" = ( -/obj/machinery/photocopier, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/cargo/sorting) "iGi" = ( /obj/item/crowbar, /turf/open/floor/plating{ @@ -27234,14 +27216,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/security/brig) -"iHF" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/newscaster/security_unit/directional/north, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/security/checkpoint/customs) +"iHE" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/stasis, +/obj/machinery/defibrillator_mount/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/white, +/area/medical/treatment_center) "iIf" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -27250,6 +27231,12 @@ /obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/iron, /area/hallway/secondary/command) +"iIo" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/command/gateway) "iJe" = ( /obj/machinery/newscaster/directional/north, /obj/structure/table/glass, @@ -27268,22 +27255,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/security/prison) -"iJp" = ( -/obj/structure/table, -/obj/item/stack/package_wrap{ - pixel_x = -8; - pixel_y = -3 - }, -/obj/item/paperslip{ - pixel_x = -5; - pixel_y = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron, -/area/cargo/sorting) "iJw" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -27304,6 +27275,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/primary/aft) +"iJS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/chem_master, +/obj/effect/turf_decal/tile/purple/fourcorners, +/turf/open/floor/iron/white, +/area/science/xenobiology) "iKa" = ( /turf/open/floor/iron, /area/service/hydroponics) @@ -27351,16 +27330,28 @@ /obj/structure/cable, /turf/open/floor/iron, /area/security/office) -"iKF" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/siding/purple{ - dir = 6 +"iKW" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Storage"; + req_access_txt = "5" }, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/genetics) +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/iron/white, +/area/medical/storage) +"iKZ" = ( +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Air to Distro" + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/engineering/atmos/pumproom) "iLe" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ @@ -27485,26 +27476,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/maintenance/port/fore) -"iNr" = ( -/obj/machinery/computer/shuttle/mining{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/construction/mining/aux_base) -"iNw" = ( -/obj/machinery/firealarm/directional/north, -/obj/machinery/atmospherics/components/binary/tank_compressor{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/north, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/science/mixing/launch) +"iNH" = ( +/obj/machinery/air_sensor/plasma_tank, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) "iNN" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ @@ -27527,17 +27502,17 @@ /obj/machinery/light/dim/directional/north, /turf/open/floor/plating, /area/maintenance/starboard/greater) -"iNY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/service/hydroponics/garden) "iOc" = ( /obj/machinery/bounty_board/directional/east, /turf/open/floor/iron, /area/cargo/sorting) +"iOe" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/medical/pharmacy) "iOs" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/spawner/random/structure/crate, @@ -27559,12 +27534,6 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/iron, /area/science/robotics/mechbay) -"iOM" = ( -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/medical/chemistry) "iON" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/tile/neutral{ @@ -27614,6 +27583,14 @@ /obj/effect/spawner/random/structure/crate, /turf/open/floor/plating, /area/maintenance/aft/lesser) +"iPm" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/security/execution/education) "iPs" = ( /obj/machinery/washing_machine, /obj/effect/turf_decal/tile/blue{ @@ -27629,20 +27606,6 @@ /obj/machinery/suit_storage_unit/industrial/loader, /turf/open/floor/iron, /area/cargo/warehouse) -"iPN" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron/dark, -/area/security/range) -"iPQ" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/medical/surgery/aft) "iPU" = ( /obj/machinery/light/directional/east, /turf/open/floor/iron/dark, @@ -27655,6 +27618,41 @@ /obj/item/radio/intercom/directional/west, /turf/open/floor/wood, /area/service/lawoffice) +"iQh" = ( +/obj/structure/table/reinforced, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/machinery/door/window/northleft{ + dir = 2; + name = "Pharmacy Desk"; + req_access_txt = "5; 69" + }, +/obj/machinery/door/firedoor, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "pharmacy_shutters"; + name = "pharmacy shutters" + }, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/turf/open/floor/iron/white, +/area/medical/pharmacy) +"iQl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark/telecomms, +/area/science/server) "iQr" = ( /obj/structure/chair{ dir = 1 @@ -27667,6 +27665,14 @@ }, /turf/open/floor/iron/white, /area/medical/medbay/central) +"iQL" = ( +/obj/item/storage/secure/safe/directional/north, +/obj/machinery/camera/directional/north{ + c_tag = "Chief Engineer's Office" + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/command/heads_quarters/ce) "iQR" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/purple, @@ -27679,30 +27685,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/science/research) -"iQX" = ( -/obj/machinery/porta_turret/ai, -/obj/machinery/flasher/directional/north{ - id = "AI" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ai_monitored/turret_protected/ai) -"iQZ" = ( -/obj/structure/table/glass, -/obj/item/scalpel{ - pixel_y = 12 - }, -/obj/item/circular_saw, -/obj/item/blood_filter, -/obj/machinery/light/directional/south, -/obj/item/bonesetter, -/obj/machinery/button/door/directional/south{ - id = "main_surgery"; - name = "privacy shutters control" - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/medical/surgery/theatre) "iRg" = ( /obj/structure/cable, /turf/open/floor/wood, @@ -27725,10 +27707,6 @@ "iRA" = ( /turf/closed/wall, /area/service/chapel/office) -"iRB" = ( -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/iron/freezer, -/area/commons/toilet/restrooms) "iRC" = ( /obj/structure/chair/stool/directional/west, /obj/effect/turf_decal/trimline/red/warning{ @@ -27736,6 +27714,46 @@ }, /turf/open/floor/iron, /area/security/brig) +"iRE" = ( +/obj/structure/bed/dogbed, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/sign/poster/contraband/random/directional/west, +/turf/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/maintenance/port/aft) +"iRG" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/riot{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/item/clothing/suit/armor/riot{ + pixel_y = 2 + }, +/obj/item/clothing/suit/armor/riot{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_y = -2 + }, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/machinery/requests_console/directional/north{ + department = "Security"; + departmentType = 3; + name = "Security Requests Console" + }, +/obj/effect/turf_decal/tile/blue/half/contrasted, +/turf/open/floor/iron/dark, +/area/ai_monitored/security/armory) "iRL" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -27798,24 +27816,31 @@ /obj/machinery/door/poddoor/incinerator_ordmix, /turf/open/floor/engine, /area/science/mixing/chamber) -"iSB" = ( -/obj/machinery/computer/operating, -/obj/machinery/camera/directional/west{ - c_tag = "Medbay Primary Surgery"; - name = "medical camera"; - network = list("ss13","medical") +"iSA" = ( +/obj/structure/table/reinforced, +/obj/machinery/camera/directional/north{ + c_tag = "Science Robotics Office"; + network = list("ss13","rd") }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/medical/surgery/theatre) -"iSH" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/command/teleporter) +/obj/item/radio/intercom/directional/north, +/obj/item/storage/medkit{ + pixel_x = 7; + pixel_y = -3 + }, +/obj/item/storage/medkit{ + pixel_x = -5; + pixel_y = -1 + }, +/obj/item/healthanalyzer{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/healthanalyzer{ + pixel_x = -3; + pixel_y = -4 + }, +/turf/open/floor/iron, +/area/science/robotics/lab) "iSS" = ( /obj/structure/table, /obj/item/stack/sheet/glass/fifty, @@ -27832,6 +27857,12 @@ dir = 1 }, /area/engineering/atmos) +"iTe" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/nitrous_input{ + dir = 1 + }, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) "iTg" = ( /obj/structure/flora/ausbushes/lavendergrass, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -27864,33 +27895,6 @@ /obj/effect/spawner/random/techstorage/ai_all, /turf/open/floor/iron/dark, /area/engineering/storage/tech) -"iTY" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "CO2 to Pure" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/engineering/atmos) -"iUc" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/medical/virology) "iUd" = ( /obj/effect/turf_decal/stripes/white/line{ dir = 8 @@ -27900,9 +27904,70 @@ }, /turf/open/floor/iron, /area/science/mixing/chamber) +"iUe" = ( +/obj/machinery/button/door/directional/west{ + id = "transitlockdown"; + name = "Transit Tube Lockdown"; + pixel_y = -6; + req_access_txt = "19" + }, +/obj/machinery/button/door/directional/west{ + id = "Secure Storage"; + name = "Engineering Secure Storage"; + pixel_y = 6; + req_access_txt = "11" + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/command/heads_quarters/ce) +"iUf" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/ai_monitored/turret_protected/ai_upload_foyer) +"iUk" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge Access"; + req_access_txt = "19" + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/navbeacon/wayfinding, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "bridge-left" + }, +/turf/open/floor/iron/dark, +/area/command/bridge) +"iUG" = ( +/obj/machinery/airalarm/directional/west, +/obj/machinery/modular_computer/console/preset/command, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/command/bridge) "iUN" = ( /turf/open/floor/iron/dark, /area/science/lab) +"iUU" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/item/pen, +/obj/effect/turf_decal/tile/green/fourcorners, +/turf/open/floor/iron, +/area/hallway/primary/central) "iVc" = ( /obj/machinery/airalarm/directional/south, /obj/item/stack/package_wrap{ @@ -27930,13 +27995,6 @@ }, /turf/open/floor/iron/white, /area/science/research) -"iVP" = ( -/obj/machinery/computer/atmos_alert, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/command/bridge) "iVQ" = ( /obj/structure/extinguisher_cabinet/directional/east, /obj/machinery/light/directional/east, @@ -27950,16 +28008,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/aft/greater) -"iVS" = ( -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/machinery/door/airlock/command{ - name = "Research Director's Office"; - req_access_txt = "30" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/iron, -/area/command/heads_quarters/rd) "iVZ" = ( /obj/structure/table, /obj/item/crowbar/red, @@ -28007,15 +28055,21 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/commons/fitness/recreation) -"iXv" = ( -/obj/machinery/atmospherics/components/trinary/mixer{ - dir = 1 - }, -/turf/open/floor/iron, -/area/science/mixing) "iXC" = ( /turf/open/floor/engine/air, /area/engineering/atmos) +"iXV" = ( +/obj/structure/chair, +/obj/structure/sign/map/left{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-left-MS"; + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/hallway/secondary/exit/departure_lounge) "iYn" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -28033,6 +28087,12 @@ /obj/effect/turf_decal/stripes/end, /turf/open/floor/plating/airless, /area/science/test_area) +"iYt" = ( +/obj/structure/table/wood, +/obj/effect/spawner/random/trash/soap, +/obj/structure/sign/poster/random/directional/east, +/turf/open/floor/wood, +/area/service/theater) "iYu" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 @@ -28099,6 +28159,15 @@ /obj/effect/spawner/random/structure/grille, /turf/open/space/basic, /area/space) +"iZK" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/medical/pharmacy) "iZM" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -28109,28 +28178,50 @@ /obj/machinery/status_display/ai/directional/east, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai) -"iZX" = ( -/obj/machinery/button/door/directional/north{ - id = "chem_lockdown"; - name = "chemistry lockdown control"; - req_access_txt = "69" +"jan" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/chem_pack{ + pixel_x = 10; + pixel_y = 10 }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 +/obj/item/storage/box/rxglasses{ + pixel_x = -4; + pixel_y = 8 }, +/obj/item/stack/medical/gauze{ + pixel_x = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/white/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/iron/white/side{ + dir = 10 + }, +/area/medical/treatment_center) +"jat" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/door/airlock/medical{ + name = "Psychology"; + req_access_txt = "70" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, -/area/medical/chemistry) -"jad" = ( -/obj/structure/closet/masks, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron/dark, -/area/commons/fitness/recreation) -"jaz" = ( -/obj/machinery/camera/directional/north, -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron/dark, -/area/ai_monitored/aisat/exterior) +/area/medical/psychology) +"jaw" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, +/turf/open/floor/iron, +/area/engineering/break_room) "jaI" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -28151,24 +28242,30 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/engineering/atmos) -"jaM" = ( -/obj/machinery/washing_machine, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/sign/poster/official/random/directional/north, -/turf/open/floor/iron/cafeteria, -/area/commons/dorms) "jaN" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white/side, /area/science/lobby) -"jaY" = ( -/turf/closed/wall/r_wall, -/area/engineering/atmos/pumproom) +"jaT" = ( +/obj/item/target, +/obj/item/target, +/obj/item/target/alien, +/obj/item/target/alien, +/obj/item/target/clown, +/obj/item/target/clown, +/obj/item/target/syndicate, +/obj/item/target/syndicate, +/obj/structure/closet/crate/secure{ + desc = "A secure crate containing various materials for building a customised test-site."; + name = "Firing Range Gear Crate"; + req_access_txt = "1" + }, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/security/range) "jbh" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood{ @@ -28197,25 +28294,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"jbz" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/research{ - autoclose = 0; - frequency = 1449; - id_tag = "xeno_airlock_interior"; - name = "Xenobiology Lab Internal Airlock"; - req_access_txt = "55" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/science/cytology) +"jbD" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/engineering/storage/tech) "jbJ" = ( /obj/effect/turf_decal/plaque{ icon_state = "L1" @@ -28267,14 +28349,10 @@ }, /turf/open/floor/iron/dark, /area/engineering/supermatter/room) -"jcY" = ( -/obj/machinery/atmospherics/components/binary/thermomachine/freezer/on{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/server) +"jcZ" = ( +/obj/machinery/air_sensor/mix_tank, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) "jdn" = ( /obj/effect/turf_decal/trimline/brown/filled/line, /obj/structure/disposalpipe/segment{ @@ -28286,15 +28364,47 @@ /obj/machinery/light_switch/directional/south, /turf/open/floor/iron, /area/science/robotics/mechbay) -"jec" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 +"jdZ" = ( +/obj/item/assembly/timer{ + pixel_x = -3; + pixel_y = 3 }, -/turf/open/floor/iron/dark, -/area/engineering/atmos) +/obj/item/assembly/timer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/assembly/igniter{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/assembly/igniter{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/assembly/igniter{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/assembly/igniter{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/assembly/timer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/assembly/timer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/item/storage/pill_bottle/epinephrine{ + pixel_x = 8; + pixel_y = 5 + }, +/turf/open/floor/iron/white, +/area/medical/pharmacy) "jef" = ( /obj/machinery/airalarm/directional/west, /obj/effect/spawner/random/structure/tank_holder, @@ -28311,6 +28421,17 @@ }, /turf/open/floor/engine/vacuum, /area/engineering/atmos) +"jeV" = ( +/obj/machinery/modular_computer/console/preset/id, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/requests_console/directional/north{ + announcementConsole = 1; + department = "Chief Engineer's Desk"; + departmentType = 4; + name = "Chief Engineer's Requests Console" + }, +/turf/open/floor/iron/dark, +/area/command/heads_quarters/ce) "jfl" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -28338,6 +28459,13 @@ /obj/structure/bookcase, /turf/open/floor/wood, /area/command/bridge) +"jfS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/belt/utility/full, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/robotics/lab) "jgL" = ( /obj/structure/cable, /turf/open/floor/iron, @@ -28386,6 +28514,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/commons/storage/primary) +"jhT" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/atmospherics/components/trinary/filter/atmos/o2{ + dir = 4 + }, +/turf/open/floor/iron, +/area/engineering/atmos) "jhV" = ( /obj/effect/spawner/random/structure/chair_maintenance{ dir = 8 @@ -28408,17 +28544,24 @@ }, /turf/open/floor/iron/white, /area/security/prison) -"jiE" = ( -/obj/machinery/rnd/production/techfab/department/cargo, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera/directional/east{ - c_tag = "Cargo Bay - Mid" +"jiA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted, +/turf/open/floor/iron/dark, +/area/command/bridge) +"jiG" = ( +/obj/machinery/firealarm/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 }, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 1 +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 8 }, /turf/open/floor/iron, -/area/cargo/storage) +/area/hallway/secondary/exit/departure_lounge) "jiO" = ( /obj/machinery/light/small/directional/south, /obj/machinery/light_switch/directional/south{ @@ -28433,32 +28576,32 @@ dir = 1 }, /area/service/chapel) -"jiQ" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Firing Range" - }, -/obj/machinery/light_switch/directional/west{ - pixel_y = -12 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/security/range) "jiR" = ( /obj/machinery/light/small/directional/south, /turf/open/floor/engine/plasma, /area/engineering/atmos) -"jjh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"jjf" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 1 }, -/obj/structure/cable, +/turf/open/floor/iron/white, +/area/medical/chemistry) +"jjp" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/plating, -/area/maintenance/starboard/lesser) +/obj/item/target/alien, +/obj/item/target/alien, +/obj/item/target/clown, +/obj/item/target/clown, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/mixing/launch) "jjE" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ @@ -28468,10 +28611,20 @@ /obj/machinery/navbeacon/wayfinding, /turf/open/floor/iron, /area/commons/locker) -"jjG" = ( -/obj/machinery/atmospherics/components/binary/thermomachine/freezer, -/turf/open/floor/iron, -/area/engineering/atmos/pumproom) +"jjQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/research) "jkv" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, @@ -28481,6 +28634,21 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/fore) +"jky" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/light/directional/west, +/obj/machinery/camera/directional/west{ + c_tag = "Virology Central Hallway"; + network = list("ss13","medbay") + }, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/medical/virology) "jkE" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -28502,6 +28670,15 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) +"jlf" = ( +/obj/structure/table/wood, +/obj/item/staff/broom, +/obj/item/wrench, +/obj/machinery/airalarm/directional/east, +/obj/machinery/light/small/directional/north, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/wood, +/area/service/theater) "jll" = ( /obj/machinery/light/small/broken/directional/south, /obj/effect/landmark/event_spawn, @@ -28529,15 +28706,18 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/engineering/main) +"jmc" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/construction/mining/aux_base) "jmf" = ( /turf/closed/wall, /area/engineering/storage/tech) -"jmn" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron, -/area/science/mixing) "jmD" = ( /obj/structure/table/reinforced, /obj/item/stack/sheet/plasteel{ @@ -28549,14 +28729,6 @@ }, /turf/open/floor/iron, /area/science/robotics/lab) -"jmE" = ( -/obj/effect/turf_decal/siding/purple/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/genetics) "jmL" = ( /obj/structure/table, /obj/item/stack/sheet/iron/fifty, @@ -28618,6 +28790,33 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) +"jnd" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/security/range) +"jnk" = ( +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chem_lockdown"; + name = "Chemistry shutters" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/research/glass{ + name = "Chemistry Lab"; + req_access_txt = "33" + }, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/turf/open/floor/iron/white, +/area/medical/chemistry) "jnH" = ( /obj/effect/landmark/start/scientist, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -28637,43 +28836,14 @@ "jnU" = ( /turf/open/floor/iron/white, /area/science/mixing/launch) -"jon" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/siding/blue{ - dir = 4 - }, -/obj/effect/turf_decal/siding/blue{ - dir = 8 - }, +"jnX" = ( +/obj/item/candle, +/obj/machinery/light_switch/directional/west, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/table/wood, /obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark/telecomms, -/area/science/server) -"joq" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/rack, -/obj/machinery/camera/directional/south{ - c_tag = "Brig - Infirmary" - }, -/obj/item/clothing/under/rank/medical/scrubs/purple, -/obj/item/storage/medkit/regular, -/obj/item/healthanalyzer{ - pixel_y = -2 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/security/medical) +/turf/open/floor/iron/dark, +/area/service/chapel) "jou" = ( /obj/machinery/firealarm/directional/west, /obj/machinery/light/directional/west, @@ -28799,11 +28969,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/service/chapel/office) -"jpI" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/spawner/random/entertainment/arcade, -/turf/open/floor/iron/dark, -/area/commons/fitness/recreation) "jpN" = ( /obj/machinery/light/directional/north, /obj/effect/turf_decal/tile/neutral{ @@ -28832,18 +28997,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, /turf/open/floor/engine, /area/engineering/supermatter/room) -"jqv" = ( -/obj/machinery/light/directional/east, -/obj/structure/filingcabinet, -/obj/machinery/computer/security/telescreen/minisat{ - dir = 8; - pixel_x = 26 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/security/checkpoint/engineering) "jqz" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -28868,13 +29021,26 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/aisat/exterior) -"jqG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/fourcorners, +"jqI" = ( +/obj/machinery/airalarm/directional/west, +/obj/structure/rack, +/obj/item/reagent_containers/glass/bottle/morphine, +/obj/item/storage/box/chemimp{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/storage/box/trackimp, +/obj/item/storage/lockbox/loyalty, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, /turf/open/floor/iron/dark, -/area/science/genetics) +/area/security/lockers) +"jqN" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/sign/poster/official/random/directional/south, +/turf/open/floor/plating, +/area/commons/toilet/auxiliary) "jqS" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/iron, @@ -28965,6 +29131,22 @@ }, /turf/open/floor/carpet/red, /area/cargo/qm) +"jrB" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge Access"; + req_access_txt = "19" + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "bridge-left" + }, +/turf/open/floor/iron/dark, +/area/command/bridge) "jrJ" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -29024,35 +29206,6 @@ /obj/machinery/meter, /turf/open/floor/plating, /area/maintenance/department/science/xenobiology) -"jsP" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrous_input{ - dir = 1 - }, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) -"jsQ" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/chem_pack{ - pixel_x = 10; - pixel_y = 10 - }, -/obj/item/storage/box/rxglasses{ - pixel_x = -4; - pixel_y = 8 - }, -/obj/item/stack/medical/gauze{ - pixel_x = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/white/corner{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white/side{ - dir = 10 - }, -/area/medical/treatment_center) "jsY" = ( /obj/structure/bed, /obj/item/clothing/suit/straight_jacket, @@ -29103,12 +29256,6 @@ "jue" = ( /turf/closed/wall/mineral/plastitanium, /area/security/prison) -"juk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron, -/area/commons/storage/tools) "jul" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -29178,14 +29325,12 @@ }, /turf/open/floor/iron, /area/cargo/warehouse) -"juW" = ( -/obj/machinery/power/smes{ - charge = 5e+006 +"jve" = ( +/obj/structure/sign/poster/contraband/random/directional/east, +/turf/open/floor/plating{ + icon_state = "platingdmg1" }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/ai_monitored/command/storage/satellite) +/area/maintenance/port/aft) "jvq" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/firedoor/heavy, @@ -29246,13 +29391,6 @@ dir = 1 }, /area/engineering/main) -"jwg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port) "jwj" = ( /obj/effect/turf_decal/trimline/green/filled/line, /obj/effect/turf_decal/trimline/brown/filled/warning, @@ -29291,20 +29429,6 @@ dir = 1 }, /area/command/gateway) -"jxb" = ( -/obj/machinery/light_switch/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Virology Lab"; - network = list("ss13","medbay") - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/medical/virology) "jxf" = ( /obj/machinery/door/window/northleft{ name = "Inner Pipe Access"; @@ -29317,23 +29441,28 @@ /obj/machinery/door/firedoor/heavy, /turf/open/floor/iron/dark, /area/engineering/atmos) -"jxG" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/item/radio/off{ - pixel_x = -11; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/security/checkpoint/supply) "jxI" = ( /turf/open/floor/engine/vacuum, /area/engineering/atmos) +"jyd" = ( +/obj/structure/table, +/obj/effect/turf_decal/bot, +/obj/item/assembly/timer{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/assembly/timer{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/assembly/timer{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/assembly/timer, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/mixing/launch) "jyo" = ( /obj/machinery/door/firedoor, /obj/effect/spawner/structure/window, @@ -29342,19 +29471,32 @@ "jyv" = ( /turf/open/floor/iron/dark, /area/engineering/gravity_generator) -"jyz" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/white, -/area/maintenance/aft/lesser) -"jyH" = ( -/obj/structure/closet/secure_closet/cytology, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/machinery/light/directional/west, +"jyx" = ( +/obj/item/kirbyplants/random, +/obj/machinery/firealarm/directional/west{ + pixel_y = -9 + }, /obj/effect/turf_decal/tile/purple/half/contrasted{ dir = 8 }, /turf/open/floor/iron/white, /area/science/cytology) +"jyz" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/white, +/area/maintenance/aft/lesser) +"jyK" = ( +/obj/structure/table, +/obj/item/storage/box/bodybags{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/medical/medbay/lobby) "jyR" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -29362,11 +29504,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/engineering/main) -"jzD" = ( -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron, -/area/construction/mining/aux_base) "jzH" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -29376,19 +29513,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/primary/central) -"jzM" = ( -/obj/machinery/airalarm/directional/north, -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/starboard) "jzZ" = ( /obj/machinery/conveyor/inverted{ dir = 10; @@ -29407,15 +29531,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/security/brig) -"jAc" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/machinery/newscaster/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/hallway/primary/central) "jAq" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/spawner/random/medical/patient_stretcher, @@ -29467,6 +29582,15 @@ }, /turf/open/floor/iron/dark, /area/engineering/transit_tube) +"jAW" = ( +/obj/machinery/igniter/incinerator_atmos, +/obj/machinery/air_sensor/incinerator_tank{ + pixel_x = -32; + pixel_y = -32 + }, +/obj/structure/cable, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) "jBb" = ( /obj/structure/window/reinforced{ dir = 8 @@ -29478,27 +29602,6 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/aisat/exterior) -"jBq" = ( -/obj/machinery/modular_computer/console/preset/engineering, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/command/bridge) -"jBF" = ( -/obj/structure/rack, -/obj/item/vending_refill/security, -/obj/item/storage/box/handcuffs, -/obj/item/storage/box/flashbangs{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/security/lockers) "jBV" = ( /obj/structure/table, /obj/item/radio/intercom/directional/north, @@ -29554,18 +29657,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/white, /area/medical/surgery/theatre) -"jCG" = ( -/obj/structure/showcase/cyborg/old{ - dir = 8; - pixel_x = 9; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/newscaster/security_unit/directional/east{ - pixel_y = 12 - }, -/turf/open/floor/iron/dark, -/area/ai_monitored/turret_protected/ai) "jCW" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -29582,6 +29673,16 @@ /obj/machinery/firealarm/directional/south, /turf/open/floor/iron/dark, /area/medical/break_room) +"jDl" = ( +/obj/structure/rack, +/obj/item/tank/internals/oxygen, +/obj/item/tank/internals/oxygen, +/obj/item/radio/off, +/obj/item/radio/off, +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/command/teleporter) "jDn" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -29598,6 +29699,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/science/mixing/launch) +"jDH" = ( +/obj/structure/closet/l3closet, +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/medical/virology) "jDM" = ( /obj/machinery/door/airlock/maintenance{ name = "Mining Dock Maintenance"; @@ -29620,12 +29728,32 @@ icon_state = "platingdmg1" }, /area/maintenance/department/engine) +"jEr" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/holopad/secure, +/obj/machinery/flasher/directional/west{ + id = "AI"; + pixel_y = -26 + }, +/turf/open/floor/iron/dark, +/area/ai_monitored/turret_protected/ai) "jEv" = ( /obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden{ dir = 4 }, /turf/closed/wall/r_wall, /area/maintenance/starboard/greater) +"jEz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/security/office) "jEF" = ( /obj/machinery/firealarm/directional/east, /obj/structure/table/wood, @@ -29655,27 +29783,20 @@ }, /turf/open/floor/iron/white, /area/security/prison) -"jES" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/plating, -/area/maintenance/port) "jEX" = ( /obj/machinery/seed_extractor, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"jEY" = ( -/obj/structure/cable, -/obj/machinery/computer/secure_data{ - dir = 1 +"jFa" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/iron, -/area/security/office) +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/genetics) "jFe" = ( /obj/machinery/door/airlock/maintenance{ name = "Pharmacy Maintenance"; @@ -29699,6 +29820,15 @@ /obj/machinery/meter, /turf/open/floor/iron, /area/engineering/atmos) +"jFu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/command/heads_quarters/cmo) "jFz" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -29718,21 +29848,6 @@ /obj/machinery/vending/coffee, /turf/open/floor/iron, /area/hallway/secondary/entry) -"jFE" = ( -/obj/structure/cable, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chem_lockdown"; - name = "Chemistry shutters" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/research/glass{ - name = "Chemistry Lab"; - req_access_txt = "33" - }, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/turf/open/floor/iron/white, -/area/medical/chemistry) "jFF" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -29757,6 +29872,11 @@ }, /turf/open/floor/iron/dark, /area/medical/morgue) +"jFR" = ( +/obj/effect/spawner/random/entertainment/arcade, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/commons/fitness/recreation) "jGa" = ( /obj/structure/table/reinforced, /obj/item/paper_bin{ @@ -29770,6 +29890,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /turf/closed/wall/r_wall, /area/maintenance/disposal/incinerator) +"jGm" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/mob/living/simple_animal/parrot/poly, +/turf/open/floor/iron/dark, +/area/command/heads_quarters/ce) "jGD" = ( /obj/structure/chair/stool/directional/west, /turf/open/floor/wood{ @@ -29781,6 +29907,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/service/hydroponics) +"jHu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/aft) "jHB" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -29850,11 +29985,6 @@ }, /turf/open/floor/carpet, /area/medical/psychology) -"jIB" = ( -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron/white, -/area/medical/chemistry) "jIG" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/effect/turf_decal/bot, @@ -29888,16 +30018,23 @@ }, /turf/open/floor/wood, /area/service/library) -"jJe" = ( -/obj/structure/closet/l3closet/security, -/obj/structure/window/reinforced{ - dir = 8 +"jJa" = ( +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "sci-maint-passthrough" }, -/obj/effect/turf_decal/tile/red/half/contrasted{ +/obj/machinery/door/airlock/research{ + name = "Xenobiology Access"; + req_access_txt = "47" + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/iron, -/area/security/brig) +/turf/open/floor/iron/white, +/area/science/research) "jJq" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 1 @@ -29908,11 +30045,34 @@ /obj/machinery/portable_atmospherics/canister/anesthetic_mix, /turf/open/floor/iron/dark, /area/medical/cryo) -"jJK" = ( +"jJP" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/security/courtroom) +"jJT" = ( +/obj/machinery/light/directional/south, +/obj/machinery/button/door/directional/south{ + id = "roboticsprivacy2"; + name = "Robotics Privacy Control"; + req_access_txt = "29" + }, +/obj/item/mod/core/standard{ + pixel_x = -4 + }, +/obj/item/mod/core/standard{ + pixel_x = 4 + }, +/obj/item/mod/core/standard{ + pixel_y = 4 + }, +/obj/structure/closet/crate/science{ + name = "MOD core crate" + }, /obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/dark, -/area/commons/fitness/recreation) +/area/science/robotics/lab) "jJX" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -29927,6 +30087,10 @@ }, /turf/open/floor/iron/dark, /area/commons/fitness/recreation) +"jKn" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/mixing/launch) "jKo" = ( /obj/structure/bed, /obj/item/bedsheet, @@ -29969,25 +30133,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/commons/locker) -"jKB" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/command/heads_quarters/ce) -"jKJ" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/engineering/break_room) "jKO" = ( /turf/open/floor/plating{ icon_state = "platingdmg3" @@ -30015,18 +30160,6 @@ /obj/machinery/vending/wardrobe/jani_wardrobe, /turf/open/floor/iron, /area/service/janitor) -"jLM" = ( -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Security Office"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron, -/area/security/checkpoint/science) "jLR" = ( /obj/effect/landmark/secequipment, /obj/effect/turf_decal/bot, @@ -30050,20 +30183,16 @@ /obj/effect/spawner/random/entertainment/deck, /turf/open/floor/wood, /area/maintenance/port/aft) -"jMb" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple/fourcorners, -/turf/open/floor/iron/white, -/area/science/cytology) "jMk" = ( /turf/closed/wall/r_wall, /area/engineering/atmos) +"jMn" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/storage) "jMp" = ( /obj/structure/window/reinforced{ dir = 4 @@ -30121,11 +30250,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/port) -"jNE" = ( -/obj/item/kirbyplants, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron, -/area/hallway/primary/central) "jNH" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 @@ -30174,6 +30298,23 @@ /obj/machinery/bluespace_vendor/directional/west, /turf/open/floor/iron, /area/commons/dorms) +"jOn" = ( +/obj/structure/chair, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/medical/medbay/lobby) +"jOp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/genetics) "jOq" = ( /obj/structure/table, /obj/item/paper_bin{ @@ -30182,21 +30323,6 @@ /obj/item/pen, /turf/open/floor/plating, /area/maintenance/starboard/lesser) -"jOr" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/button/door/directional/south{ - id = "evashutter"; - name = "E.V.A. Storage Shutter Control"; - req_access_txt = "19" - }, -/turf/open/floor/iron/dark, -/area/ai_monitored/command/storage/eva) -"jOE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible/layer4, -/turf/closed/wall/r_wall, -/area/engineering/atmos/pumproom) "jOK" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -30209,42 +30335,22 @@ dir = 8 }, /area/science/lab) -"jOL" = ( -/obj/structure/closet{ - name = "Evidence Closet 4" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/security/brig) "jPR" = ( /obj/effect/turf_decal/trimline/blue/filled/corner{ dir = 4 }, /turf/open/floor/iron/white, /area/medical/medbay/central) -"jPV" = ( -/obj/structure/window/reinforced{ - dir = 1 +"jPX" = ( +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 4 }, -/obj/item/storage/medkit/regular{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/storage/medkit/o2{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/medkit/o2, -/obj/item/storage/medkit/o2{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/table/reinforced, -/turf/open/floor/iron/dark, -/area/medical/storage) +/obj/machinery/light/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white, +/area/science/mixing/launch) "jPY" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -30278,11 +30384,6 @@ /obj/machinery/duct, /turf/open/floor/iron/cafeteria, /area/service/kitchen) -"jQz" = ( -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/robotics/lab) "jQA" = ( /obj/item/radio/intercom/directional/north, /obj/machinery/light/small/directional/north, @@ -30310,12 +30411,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/commons/fitness/recreation) -"jQQ" = ( +"jQL" = ( /obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted, -/turf/open/floor/iron, -/area/security/courtroom) +/obj/effect/spawner/random/bureaucracy/paper, +/obj/structure/sign/poster/official/random/directional/south, +/turf/open/floor/wood, +/area/commons/vacant_room/office) "jQZ" = ( /obj/item/storage/box/syringes, /obj/item/storage/box/beakers{ @@ -30367,23 +30468,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/engineering/gravity_generator) -"jRE" = ( -/obj/machinery/light/small/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/floor/wood, -/area/service/theater) -"jRK" = ( -/obj/machinery/computer/security/mining{ - dir = 4 - }, -/obj/machinery/light/directional/north, -/obj/item/radio/intercom/directional/west, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/security/checkpoint/supply) +"jRA" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/security/brig) "jRR" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -30443,6 +30532,12 @@ /obj/structure/light_construct/directional/north, /turf/open/floor/plating, /area/maintenance/port/aft) +"jSL" = ( +/obj/structure/closet/athletic_mixed, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/iron/dark, +/area/commons/fitness/recreation) "jTj" = ( /obj/structure/bed, /obj/item/bedsheet/medical, @@ -30460,6 +30555,28 @@ /obj/machinery/door/firedoor/heavy, /turf/open/floor/iron/dark, /area/engineering/atmos) +"jTp" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/item/stack/cable_coil, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/robotics/lab) +"jTu" = ( +/obj/item/kirbyplants{ + icon_state = "plant-11" + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron/white, +/area/medical/medbay/lobby) "jTC" = ( /obj/machinery/light/small/directional/east, /obj/machinery/camera/directional/east{ @@ -30477,41 +30594,6 @@ }, /turf/open/floor/plating, /area/maintenance/fore/lesser) -"jTL" = ( -/obj/machinery/door/window/southright{ - name = "First Aid Supplies"; - req_access_txt = "5" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/storage/medkit/regular{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/storage/medkit/brute{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/medkit/brute, -/obj/item/storage/medkit/brute{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/table/reinforced, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark, -/area/medical/storage) -"jUh" = ( -/obj/machinery/light/directional/west, -/obj/machinery/computer/camera_advanced/base_construction/aux{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/construction/mining/aux_base) "jUt" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -30535,44 +30617,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/cargo/storage) -"jUK" = ( -/obj/effect/turf_decal/siding/purple{ - dir = 9 - }, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/pen{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/machinery/light_switch/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/genetics) -"jVD" = ( -/obj/structure/table/glass, -/obj/item/storage/secure/briefcase{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/item/storage/medkit/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/command/heads_quarters/cmo) -"jVE" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/space, -/area/space/nearstation) "jVO" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/cable, @@ -30590,20 +30634,6 @@ "jVV" = ( /turf/closed/wall/r_wall, /area/command/heads_quarters/hos) -"jVW" = ( -/obj/structure/table, -/obj/item/storage/box/lights/mixed{ - pixel_x = 11; - pixel_y = 11 - }, -/obj/item/multitool{ - pixel_x = -3; - pixel_y = -4 - }, -/obj/machinery/newscaster/directional/east, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron, -/area/cargo/sorting) "jWa" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/siding/purple, @@ -30613,16 +30643,6 @@ }, /turf/open/floor/iron/white, /area/science/research) -"jWr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/plating, -/area/maintenance/port/aft) "jXc" = ( /obj/structure/window/reinforced{ dir = 8 @@ -30636,6 +30656,16 @@ /obj/item/wirecutters, /turf/open/space/basic, /area/space/nearstation) +"jXj" = ( +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/machinery/camera/directional/east{ + c_tag = "Prison Isolation Cell"; + network = list("ss13","prison","isolation") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/white, +/area/security/prison) "jXp" = ( /obj/item/paper_bin{ pixel_x = -3; @@ -30674,15 +30704,6 @@ }, /turf/open/floor/grass, /area/service/hydroponics/garden) -"jXy" = ( -/obj/machinery/light/small/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "MiniSat Exterior - Starboard Fore"; - network = list("minisat") - }, -/obj/structure/window/reinforced, -/turf/open/floor/iron/dark, -/area/ai_monitored/aisat/exterior) "jXC" = ( /obj/structure/bodycontainer/morgue, /obj/effect/turf_decal/tile/neutral, @@ -30697,31 +30718,16 @@ }, /turf/open/floor/iron/dark, /area/medical/morgue) -"jXE" = ( -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/photocopier, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron, -/area/engineering/break_room) -"jXH" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/security/checkpoint/customs) +"jXG" = ( +/obj/effect/turf_decal/bot_white/right, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/command/gateway) "jXL" = ( /obj/machinery/hydroponics/constructable, /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/service/hydroponics/garden) -"jXR" = ( -/obj/effect/turf_decal/bot_white/right, -/obj/machinery/ore_silo, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ai_monitored/command/nuke_storage) "jXY" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/start/scientist, @@ -30760,21 +30766,19 @@ /obj/structure/fans/tiny, /turf/open/floor/plating, /area/service/chapel/funeral) +"jYH" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/iron, +/area/engineering/atmos) "jYU" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, /area/security/office) -"jYV" = ( -/obj/structure/chair{ - dir = 8; - name = "Defense" - }, -/obj/effect/turf_decal/tile/green/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/security/courtroom) "jZd" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -30797,12 +30801,6 @@ /obj/structure/cable, /turf/open/floor/iron/white, /area/science/research) -"jZl" = ( -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/science/lobby) "jZv" = ( /obj/machinery/button/crematorium{ id = "crematoriumChapel"; @@ -30831,6 +30829,11 @@ /obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/maintenance/port/fore) +"jZC" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/space, +/area/space/nearstation) "jZS" = ( /obj/item/kirbyplants{ icon_state = "plant-21" @@ -30883,6 +30886,33 @@ /obj/item/extinguisher, /turf/open/floor/iron, /area/science/xenobiology) +"kas" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/food/grown/harebell, +/obj/item/food/grown/harebell, +/obj/item/food/grown/harebell, +/obj/item/food/grown/harebell, +/obj/item/food/grown/harebell, +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/service/chapel/funeral) +"kaC" = ( +/obj/machinery/light_switch/directional/east, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/ai_monitored/security/armory) +"kaE" = ( +/obj/machinery/vending/wardrobe/cargo_wardrobe, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/cargo/storage) "kaM" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -30910,14 +30940,27 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/aft/greater) -"kbu" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/trinary/filter/flipped, -/turf/open/floor/iron, -/area/science/mixing) +"kbe" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/machinery/reagentgrinder{ + pixel_x = -1; + pixel_y = 8 + }, +/obj/effect/turf_decal/tile/purple/fourcorners, +/turf/open/floor/iron/white, +/area/science/xenobiology) "kbv" = ( /turf/closed/wall/r_wall, /area/engineering/break_room) +"kbB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/red/half/contrasted, +/turf/open/floor/iron/dark, +/area/security/execution/education) "kbY" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 @@ -30928,33 +30971,18 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/security/prison) -"kca" = ( -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" +"kce" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "Waste to Filter" }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge Access"; - req_access_txt = "19" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "bridge-right" - }, -/turf/open/floor/iron/dark, -/area/command/bridge) -"kcj" = ( -/obj/machinery/door/airlock/command{ - name = "Chief Medical Officer's Office"; - req_access_txt = "40" +/obj/effect/turf_decal/tile/yellow{ + dir = 8 }, /obj/structure/cable, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/white, -/area/command/heads_quarters/cmo) +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/engineering/atmos/pumproom) "kcr" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -30963,6 +30991,9 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/fore) +"kcB" = ( +/turf/closed/wall, +/area/engineering/atmos/pumproom) "kcG" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ @@ -31011,18 +31042,25 @@ }, /turf/open/floor/iron/dark, /area/command/bridge) -"kdn" = ( -/obj/structure/closet/toolcloset, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/commons/storage/tools) "kdo" = ( /obj/machinery/light/directional/west, /obj/structure/cable, /turf/open/floor/iron, /area/cargo/sorting) +"kdp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/security/office) "kdr" = ( /obj/machinery/door/window/northleft{ base_state = "right"; @@ -31054,10 +31092,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/security/office) -"kex" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, -/turf/open/floor/iron, -/area/engineering/atmos/pumproom) "keB" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -31113,22 +31147,6 @@ }, /turf/open/floor/iron, /area/science/robotics/lab) -"kfd" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/target/alien, -/obj/item/target/alien, -/obj/item/target/clown, -/obj/item/target/clown, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/mixing/launch) "kfk" = ( /obj/item/reagent_containers/food/drinks/drinkingglass{ pixel_x = 4; @@ -31204,6 +31222,11 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/commons/vacant_room/commissary) +"kgu" = ( +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron/white, +/area/medical/chemistry) "kgD" = ( /obj/structure/chair, /obj/item/radio/intercom/chapel/directional/west, @@ -31216,6 +31239,11 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/department/medical/central) +"kgL" = ( +/obj/structure/table/optable, +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/iron/white, +/area/medical/surgery/theatre) "kgQ" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 @@ -31234,6 +31262,17 @@ /obj/item/clothing/mask/surgical, /turf/open/floor/iron/showroomfloor, /area/maintenance/starboard/lesser) +"khh" = ( +/obj/structure/table/reinforced, +/obj/structure/cable, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/obj/effect/turf_decal/tile/red/half/contrasted, +/turf/open/floor/iron, +/area/security/checkpoint/customs) "khj" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 @@ -31266,15 +31305,36 @@ /obj/structure/sign/warning/pods, /turf/closed/wall, /area/commons/locker) -"kir" = ( -/obj/structure/table/wood, -/obj/item/staff/broom, -/obj/item/wrench, -/obj/machinery/airalarm/directional/east, -/obj/machinery/light/small/directional/north, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/wood, -/area/service/theater) +"kie" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Air to Pure" + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron, +/area/engineering/atmos) +"kiq" = ( +/obj/structure/table, +/obj/effect/turf_decal/bot, +/obj/item/raw_anomaly_core/random{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/item/raw_anomaly_core/random{ + pixel_x = 7; + pixel_y = 9 + }, +/obj/item/raw_anomaly_core/random, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/mixing/launch) "kiw" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -31282,6 +31342,13 @@ }, /turf/open/floor/iron, /area/hallway/primary/port) +"kix" = ( +/obj/machinery/atmospherics/components/binary/thermomachine/heater/on, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/engineering/atmos) "kiE" = ( /obj/item/book/manual/nuclear, /turf/open/floor/plating/foam{ @@ -31323,43 +31390,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/port/fore) -"kjh" = ( -/obj/structure/table, -/obj/effect/turf_decal/bot, -/obj/machinery/camera/directional/west{ - c_tag = "Science Ordnance Test Lab" - }, -/obj/item/assembly/prox_sensor{ - pixel_y = 2 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = 9; - pixel_y = -2 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = 8; - pixel_y = 9 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/mixing/launch) "kjv" = ( /obj/effect/decal/cleanable/cobweb, /obj/machinery/photocopier, /turf/open/floor/wood, /area/service/library) -"kjy" = ( -/obj/structure/closet/secure_closet/miner, -/obj/machinery/camera/directional/north{ - c_tag = "Mining Dock" - }, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron, -/area/cargo/miningoffice) "kjG" = ( /obj/effect/turf_decal/trimline/blue/filled/corner{ dir = 8 @@ -31385,9 +31420,25 @@ /obj/effect/turf_decal/tile/bar, /turf/open/floor/iron, /area/commons/lounge) +"kjY" = ( +/obj/structure/chair{ + pixel_y = -2 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/service/chapel/funeral) "kkb" = ( /turf/closed/wall, /area/commons/lounge) +"kkn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/engineering/atmos) "kkt" = ( /obj/effect/spawner/structure/window/reinforced/plasma, /turf/open/floor/plating, @@ -31420,73 +31471,14 @@ /obj/machinery/atmospherics/pipe/smart/simple/orange/visible, /turf/open/floor/plating, /area/maintenance/department/engine) -"klA" = ( -/obj/structure/table, -/obj/item/pen/red{ - pixel_x = 8; - pixel_y = 15 - }, -/obj/item/gps{ - gpstag = "QM0"; - pixel_x = -4; - pixel_y = 10 - }, -/obj/item/pen/fountain{ - pixel_x = 9; - pixel_y = 4 - }, -/obj/item/pen/blue{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/cargo/storage) "klR" = ( /obj/machinery/light/small/directional/east, /obj/effect/turf_decal/delivery, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) -"klS" = ( -/obj/structure/closet/emcloset, -/obj/machinery/light/directional/east, -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron, -/area/cargo/miningoffice) -"kml" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/engineering/storage/tech) "kmq" = ( /turf/closed/wall/r_wall, /area/medical/morgue) -"kmu" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/iron/dark, -/area/command/teleporter) -"kmv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/modular_computer/console/preset/cargochat/service{ - dir = 8 - }, -/obj/structure/sign/poster/random/directional/east, -/turf/open/floor/iron, -/area/maintenance/starboard/greater) "kmw" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -31505,14 +31497,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, /turf/closed/wall/r_wall, /area/science/mixing/chamber) -"kmM" = ( -/obj/machinery/holopad, -/obj/machinery/camera/directional/south{ - network = list("minisat") - }, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron/dark, -/area/ai_monitored/aisat/exterior) "kmP" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -31523,19 +31507,15 @@ /obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron, /area/hallway/primary/central) -"kmQ" = ( +"kmR" = ( +/obj/machinery/light/small/directional/south, +/obj/machinery/camera/directional/south{ + c_tag = "Security - EVA Storage" + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/sorting/mail{ - dir = 4; - sortType = 28 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/science/cytology) +/turf/open/floor/iron/dark, +/area/security/brig) "knc" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/start/cargo_technician, @@ -31571,6 +31551,16 @@ }, /turf/open/floor/iron/white, /area/science/xenobiology) +"knP" = ( +/obj/machinery/light/directional/west, +/obj/machinery/computer/camera_advanced/base_construction/aux{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/construction/mining/aux_base) "koo" = ( /obj/machinery/door/airlock/maintenance{ req_one_access_txt = "12;47" @@ -31583,6 +31573,30 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/science/research) +"koC" = ( +/obj/machinery/camera/autoname{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/effect/landmark/start/depsec/engineering, +/obj/effect/turf_decal/tile/red/half/contrasted, +/turf/open/floor/iron, +/area/security/checkpoint/engineering) +"koH" = ( +/obj/machinery/firealarm/directional/north, +/obj/machinery/atmospherics/components/binary/tank_compressor{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/science/mixing/launch) "koV" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -31621,33 +31635,52 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/primary/central) -"kpr" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 4 +"kps" = ( +/obj/machinery/camera/directional/east{ + c_tag = "Teleporter Room" }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 +/obj/structure/rack, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 }, -/turf/open/floor/iron, -/area/engineering/break_room) +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/command/teleporter) "kpF" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/cargo/miningoffice) +"kpP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/light/small/directional/west, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 2; + sortType = 28 + }, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/science/research) "kqz" = ( /obj/structure/sign/warning/docking, /turf/closed/wall, /area/hallway/primary/port) -"kqK" = ( -/obj/machinery/portable_atmospherics/scrubber/huge, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/stripes/white/line, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/storage) +"kqO" = ( +/obj/effect/landmark/blobstart, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/maintenance/aft/lesser) "kqR" = ( /obj/machinery/suit_storage_unit/hos, /obj/item/radio/intercom/directional/east, @@ -31739,6 +31772,55 @@ /obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/medical/abandoned) +"ktm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted, +/turf/open/floor/iron/white, +/area/medical/medbay/lobby) +"ktt" = ( +/obj/machinery/turretid{ + control_area = "/area/ai_monitored/turret_protected/ai_upload"; + icon_state = "control_stun"; + name = "AI Upload turret control"; + pixel_y = 28 + }, +/obj/item/radio/intercom/directional/north{ + broadcasting = 1; + frequency = 1447; + name = "Private Channel"; + pixel_x = -26 + }, +/obj/effect/landmark/start/cyborg, +/obj/machinery/light/small/directional/west, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the AI Upload."; + dir = 4; + name = "AI Upload Monitor"; + network = list("aiupload"); + pixel_x = -29 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/iron/dark, +/area/ai_monitored/turret_protected/ai_upload_foyer) +"ktB" = ( +/obj/machinery/computer/prisoner/gulag_teleporter_computer{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/security/brig) "ktK" = ( /obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ dir = 10 @@ -31746,6 +31828,15 @@ /obj/structure/lattice, /turf/open/space/basic, /area/space/nearstation) +"ktN" = ( +/obj/structure/table, +/obj/item/storage/toolbox/emergency, +/obj/machinery/light_switch/directional/west, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/commons/storage/tools) "ktO" = ( /obj/machinery/conveyor{ dir = 1; @@ -31822,6 +31913,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/central) +"kuX" = ( +/obj/machinery/vending/cigarette, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/commons/fitness/recreation) "kuY" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -31861,6 +31958,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/maintenance/starboard/greater) +"kvj" = ( +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/robotics/lab) "kvs" = ( /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, /turf/closed/wall/r_wall, @@ -31939,22 +32041,6 @@ }, /turf/open/floor/carpet, /area/command/bridge) -"kwC" = ( -/obj/effect/turf_decal/tile/yellow/fourcorners, -/obj/machinery/chem_heater/withbuffer, -/turf/open/floor/iron/white, -/area/medical/pharmacy) -"kwD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/sorting/mail{ - dir = 1; - sortType = 11 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/medical/medbay/central) "kwF" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -31994,21 +32080,19 @@ /obj/machinery/duct, /turf/open/floor/iron, /area/service/bar) +"kxq" = ( +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/porta_turret/ai, +/obj/machinery/computer/security/telescreen/minisat{ + dir = 8; + pixel_x = 28 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ai_monitored/turret_protected/aisat_interior) "kxB" = ( /turf/open/floor/iron/white, /area/medical/surgery/theatre) -"kxE" = ( -/obj/effect/turf_decal/tile/purple/half/contrasted, -/turf/open/floor/iron/white, -/area/science/lobby) -"kxF" = ( -/obj/machinery/vending/autodrobe, -/obj/structure/sign/poster/contraband/clown{ - pixel_x = 32 - }, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/wood, -/area/service/theater) "kxY" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -32038,6 +32122,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/security/prison) +"kyv" = ( +/obj/machinery/washing_machine, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/sign/poster/official/random/directional/north, +/turf/open/floor/iron/cafeteria, +/area/commons/dorms) "kyF" = ( /turf/closed/wall, /area/maintenance/starboard/greater) @@ -32101,11 +32196,6 @@ /obj/item/stock_parts/subspace/treatment, /turf/open/floor/iron/dark, /area/engineering/storage/tcomms) -"kzX" = ( -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron/white, -/area/security/prison) "kAa" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -32134,36 +32224,12 @@ /obj/structure/cable, /turf/open/floor/iron/white, /area/science/research) -"kAA" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/starboard) "kAP" = ( /obj/structure/table, /obj/item/flashlight/lamp, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/security/interrogation) -"kAS" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/iron/white, -/area/command/heads_quarters/cmo) "kBa" = ( /obj/machinery/door/poddoor/shutters/radiation/preopen{ id = "engsm"; @@ -32172,22 +32238,23 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/engineering/supermatter) +"kBg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/engineering/break_room) "kBj" = ( /obj/structure/rack, /obj/effect/landmark/blobstart, /obj/effect/spawner/random/trash/janitor_supplies, /turf/open/floor/plating, /area/maintenance/fore) -"kBk" = ( -/obj/machinery/light/small/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/camera/directional/west{ - c_tag = "Auxilary Restrooms" - }, -/obj/structure/sign/poster/official/random/directional/west, -/turf/open/floor/iron, -/area/commons/toilet/auxiliary) "kBm" = ( /obj/item/radio/intercom/directional/south, /turf/open/floor/carpet, @@ -32260,6 +32327,12 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/service/hydroponics) +"kCd" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/storage) "kCn" = ( /obj/item/bodypart/l_arm, /turf/open/floor/plating/airless, @@ -32280,6 +32353,12 @@ /obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible, /turf/closed/wall/r_wall, /area/science/server) +"kCF" = ( +/obj/structure/closet/wardrobe/grey, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/iron/dark, +/area/commons/locker) "kCH" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/stripes/line{ @@ -32293,17 +32372,6 @@ }, /turf/open/floor/iron/dark, /area/medical/medbay/central) -"kCZ" = ( -/obj/item/storage/medkit/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/command/bridge) "kDb" = ( /obj/structure/table, /obj/item/food/mint, @@ -32327,6 +32395,18 @@ }, /turf/open/floor/iron, /area/science/mixing) +"kDz" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/cable, +/obj/machinery/newscaster/security_unit/directional/east, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/security/lockers) "kDK" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -32357,6 +32437,12 @@ /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/solars/port/aft) +"kEk" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos/pumproom) "kEt" = ( /obj/machinery/holopad, /turf/open/floor/iron, @@ -32390,6 +32476,22 @@ /obj/machinery/duct, /turf/open/floor/iron/cafeteria, /area/service/kitchen) +"kFg" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/construction/mining/aux_base) +"kFj" = ( +/obj/machinery/light/small/directional/west, +/obj/item/clothing/mask/animal/horsehead, +/obj/structure/table/wood, +/obj/machinery/airalarm/directional/south, +/obj/item/clothing/mask/cigarette/pipe, +/obj/item/clothing/mask/fakemoustache, +/obj/structure/sign/poster/contraband/random/directional/west, +/turf/open/floor/wood, +/area/service/theater) "kFl" = ( /obj/structure/window/reinforced{ dir = 4 @@ -32406,46 +32508,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/engineering/transit_tube) -"kFv" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/sign/poster/random/directional/east, -/turf/open/floor/iron, -/area/hallway/primary/central) "kFz" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/engineering/gravity_generator) -"kFL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/machinery/reagentgrinder{ - pixel_x = -1; - pixel_y = 8 - }, -/obj/effect/turf_decal/tile/purple/fourcorners, -/turf/open/floor/iron/white, -/area/science/xenobiology) -"kFW" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/components/trinary/filter/atmos/n2o{ - dir = 4 - }, -/turf/open/floor/iron/cafeteria, -/area/engineering/atmos) "kGj" = ( /obj/structure/window/reinforced{ dir = 1 @@ -32465,16 +32531,25 @@ }, /turf/open/floor/plating, /area/cargo/storage) +"kGz" = ( +/obj/structure/closet/wardrobe/black, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/iron/dark, +/area/commons/locker) "kGF" = ( /obj/structure/displaycase/labcage, /turf/open/floor/engine, /area/command/heads_quarters/rd) -"kGP" = ( -/obj/effect/turf_decal/tile/green/half/contrasted{ +"kGI" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/iron/white, -/area/medical/virology) +/turf/open/floor/iron/dark, +/area/hallway/primary/central) "kGW" = ( /obj/effect/decal/cleanable/dirt, /obj/item/restraints/legcuffs/beartrap, @@ -32483,25 +32558,10 @@ /obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron, /area/service/janitor) -"kGZ" = ( -/obj/structure/chair{ - pixel_y = -2 - }, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/service/chapel/funeral) "kHd" = ( /obj/machinery/light/small/directional/south, /turf/open/floor/engine, /area/science/xenobiology) -"kHo" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/service/hydroponics/garden) "kHr" = ( /obj/structure/table/wood, /obj/item/storage/secure/briefcase{ @@ -32528,27 +32588,6 @@ /obj/machinery/meter, /turf/open/floor/iron, /area/engineering/atmos) -"kHZ" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron, -/area/hallway/primary/starboard) "kIb" = ( /obj/effect/spawner/random/structure/crate, /turf/open/floor/plating, @@ -32604,6 +32643,33 @@ }, /turf/open/floor/iron/dark, /area/command/bridge) +"kIP" = ( +/obj/structure/table, +/obj/item/pen/red{ + pixel_x = 8; + pixel_y = 15 + }, +/obj/item/gps{ + gpstag = "QM0"; + pixel_x = -4; + pixel_y = 10 + }, +/obj/item/pen/fountain{ + pixel_x = 9; + pixel_y = 4 + }, +/obj/item/pen/blue{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/cargo/storage) "kIY" = ( /obj/effect/turf_decal/tile/neutral, /obj/machinery/power/apc/auto_name/directional/east, @@ -32613,6 +32679,18 @@ }, /turf/open/floor/iron, /area/hallway/primary/aft) +"kJd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/medical/medbay/lobby) "kJe" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -32630,12 +32708,16 @@ /obj/item/pen, /turf/open/floor/iron/dark, /area/medical/morgue) -"kJC" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, +"kJA" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/obj/machinery/meter, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, /turf/open/floor/iron/dark, -/area/ai_monitored/command/storage/eva) +/area/engineering/atmos) "kJG" = ( /obj/structure/disposalpipe/segment{ dir = 6 @@ -32744,15 +32826,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai) -"kLy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/hallway/primary/aft) "kLA" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron, @@ -32826,6 +32899,24 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/engineering/atmos) +"kMY" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/table/reinforced, +/obj/machinery/requests_console/directional/north{ + department = "Security"; + departmentType = 3; + name = "Security Requests Console" + }, +/obj/machinery/light/directional/north, +/obj/machinery/camera/directional/north{ + c_tag = "Security Post - Medbay"; + network = list("ss13","medbay") + }, +/obj/effect/turf_decal/tile/red/fourcorners, +/turf/open/floor/iron/dark, +/area/security/checkpoint/medical) "kNa" = ( /obj/effect/turf_decal/siding/purple{ dir = 5 @@ -32858,6 +32949,22 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) +"kNN" = ( +/obj/structure/sign/map/left{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-left-MS"; + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/hallway/primary/central) +"kNU" = ( +/obj/machinery/chem_master, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron/white, +/area/medical/chemistry) "kNW" = ( /obj/structure/table/wood, /obj/item/clothing/glasses/monocle, @@ -32878,6 +32985,19 @@ /obj/structure/cable, /turf/open/floor/engine, /area/science/xenobiology) +"kOW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/iron/white/side, +/area/medical/treatment_center) "kPq" = ( /obj/structure/cable, /turf/open/floor/wood, @@ -32925,21 +33045,6 @@ /obj/item/clothing/head/welding, /turf/open/floor/iron, /area/construction/storage_wing) -"kQA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Dormitories" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/commons/dorms) -"kQI" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/newscaster/directional/south, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted, -/turf/open/floor/iron/white, -/area/command/heads_quarters/cmo) "kQN" = ( /obj/effect/spawner/random/trash/caution_sign, /turf/open/floor/plating, @@ -32978,18 +33083,64 @@ }, /turf/open/floor/holofloor/dark, /area/science/cytology) +"kSd" = ( +/obj/structure/closet{ + name = "Evidence Closet 3" + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/security/brig) +"kSg" = ( +/obj/structure/rack, +/obj/item/storage/box, +/obj/effect/turf_decal/bot, +/obj/item/radio/off{ + pixel_x = 6 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron, +/area/engineering/break_room) "kSr" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/cargo/storage) -"kSQ" = ( -/obj/machinery/vending/wardrobe/viro_wardrobe, -/obj/item/radio/intercom/directional/east, -/obj/effect/turf_decal/tile/green/anticorner/contrasted, -/turf/open/floor/iron/white, -/area/medical/virology) +"kSz" = ( +/obj/machinery/bounty_board/directional/north, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/engineering/break_room) +"kSC" = ( +/obj/structure/table, +/obj/item/clothing/under/rank/prisoner/skirt{ + pixel_x = -13; + pixel_y = 5 + }, +/obj/item/clothing/under/rank/prisoner/skirt{ + pixel_x = 9; + pixel_y = 5 + }, +/obj/item/clothing/under/rank/prisoner{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/security/prison) "kSV" = ( /obj/structure/closet/firecloset, /turf/open/floor/plating, @@ -33001,6 +33152,15 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron, /area/engineering/main) +"kTh" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/medical/virology) "kTA" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -33016,6 +33176,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/security/interrogation) +"kTH" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/landmark/start/hangover, +/obj/effect/spawner/random/engineering/tracking_beacon, +/turf/open/floor/iron/dark, +/area/commons/fitness/recreation) "kTW" = ( /turf/closed/wall/r_wall, /area/engineering/storage/tcomms) @@ -33110,6 +33276,17 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/ai_monitored/security/armory) +"kWa" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/security/checkpoint/customs) "kWh" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ @@ -33120,27 +33297,27 @@ /obj/effect/landmark/start/depsec/science, /turf/open/floor/iron, /area/security/checkpoint/science) +"kWl" = ( +/obj/machinery/door/window/brigdoor/security/cell{ + id = "Cell 2"; + name = "Cell 2" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/red/half/contrasted, +/turf/open/floor/iron, +/area/security/brig) "kWq" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, /turf/open/floor/iron/dark, /area/security/execution/education) -"kWw" = ( -/obj/item/pen, -/obj/structure/table/reinforced, -/obj/structure/reagent_dispensers/wall/peppertank/directional/east, -/obj/item/folder/red, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/machinery/newscaster/security_unit/directional/north, -/obj/item/screwdriver{ - pixel_y = 10 - }, -/obj/item/radio/off, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron/dark, -/area/security/checkpoint/medical) +"kWz" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/iv_drip, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/white, +/area/medical/treatment_center) "kWE" = ( /obj/machinery/camera/directional/east{ c_tag = "Departure Lounge - Starboard Aft" @@ -33203,14 +33380,10 @@ }, /turf/open/floor/circuit/green/off, /area/science/research) -"kXV" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/security/courtroom) +"kXR" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted, +/turf/open/floor/iron/white, +/area/science/lobby) "kYe" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -33264,6 +33437,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/security/brig) +"kZE" = ( +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/security/checkpoint/supply) "kZM" = ( /obj/effect/turf_decal/plaque{ icon_state = "L4" @@ -33272,58 +33455,30 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/primary/central) -"kZW" = ( -/obj/machinery/meter/atmos/atmos_waste_loop, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 +"lae" = ( +/obj/item/reagent_containers/spray/plantbgone{ + pixel_y = 3 }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 +/obj/item/reagent_containers/spray/plantbgone{ + pixel_x = 8; + pixel_y = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 8 +/obj/item/reagent_containers/spray/plantbgone{ + pixel_x = 13; + pixel_y = 5 }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/turf/open/floor/iron/dark/corner{ +/obj/item/watertank, +/obj/item/grenade/chem_grenade/antiweed, +/obj/structure/table/glass, +/obj/effect/turf_decal/stripes/line{ dir = 1 }, -/area/engineering/atmos/pumproom) -"kZY" = ( -/obj/structure/closet/crate/secure/weapon{ - desc = "A secure clothing crate."; - name = "formal uniform crate"; - req_access_txt = "3" +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 }, -/obj/item/clothing/under/rank/security/officer/formal, -/obj/item/clothing/under/rank/security/officer/formal, -/obj/item/clothing/under/rank/security/officer/formal, -/obj/item/clothing/under/rank/security/officer/formal, -/obj/item/clothing/under/rank/security/officer/formal, -/obj/item/clothing/under/rank/security/officer/formal, -/obj/item/clothing/suit/security/officer, -/obj/item/clothing/suit/security/officer, -/obj/item/clothing/suit/security/officer, -/obj/item/clothing/suit/security/officer, -/obj/item/clothing/suit/security/officer, -/obj/item/clothing/suit/security/officer, -/obj/item/clothing/under/rank/security/warden/formal, -/obj/item/clothing/suit/security/warden, -/obj/item/clothing/under/rank/security/head_of_security/formal, -/obj/item/clothing/suit/security/hos, -/obj/item/clothing/head/beret/sec/navyofficer, -/obj/item/clothing/head/beret/sec/navyofficer, -/obj/item/clothing/head/beret/sec/navyofficer, -/obj/item/clothing/head/beret/sec/navyofficer, -/obj/item/clothing/head/beret/sec/navyofficer, -/obj/item/clothing/head/beret/sec/navyofficer, -/obj/item/clothing/head/beret/sec/navywarden, -/obj/item/clothing/head/hos/beret/navyhos, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/dark, -/area/security/lockers) +/obj/structure/sign/poster/official/random/directional/south, +/turf/open/floor/iron, +/area/service/hydroponics) "lai" = ( /turf/closed/wall/r_wall, /area/security/lockers) @@ -33335,6 +33490,10 @@ }, /turf/open/floor/iron, /area/security/prison) +"lan" = ( +/obj/machinery/air_sensor/nitrogen_tank, +/turf/open/floor/engine/n2, +/area/engineering/atmos) "laG" = ( /obj/machinery/modular_computer/console/preset/cargochat/engineering, /obj/effect/turf_decal/trimline/brown/filled/line{ @@ -33420,6 +33579,39 @@ /obj/machinery/light/directional/east, /turf/open/floor/iron/white, /area/medical/office) +"lbW" = ( +/obj/structure/table/wood, +/obj/item/lipstick{ + pixel_y = 5 + }, +/obj/machinery/camera/directional/east{ + c_tag = "Theater - Stage" + }, +/obj/machinery/light/small/directional/east, +/obj/effect/spawner/random/entertainment/musical_instrument, +/obj/structure/sign/poster/random/directional/east, +/turf/open/floor/wood, +/area/service/theater) +"lci" = ( +/obj/machinery/light_switch/directional/west, +/obj/structure/table, +/obj/item/transfer_valve{ + pixel_x = 5 + }, +/obj/item/transfer_valve{ + pixel_x = 5 + }, +/obj/item/transfer_valve{ + pixel_x = 5 + }, +/obj/item/transfer_valve{ + pixel_x = 5 + }, +/obj/item/transfer_valve{ + pixel_x = 5 + }, +/turf/open/floor/iron/white, +/area/science/mixing/launch) "lcq" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 8 @@ -33497,12 +33689,12 @@ }, /turf/open/floor/iron, /area/service/bar) -"ldE" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/oxygen_input{ - dir = 1 - }, -/turf/open/floor/engine/o2, -/area/engineering/atmos) +"ldl" = ( +/obj/machinery/vending/cigarette, +/obj/machinery/newscaster/directional/south, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/hallway/secondary/command) "ldP" = ( /turf/closed/wall/r_wall, /area/ai_monitored/command/storage/satellite) @@ -33520,6 +33712,18 @@ dir = 1 }, /area/science/lobby) +"lev" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/engineering/break_room) "lew" = ( /obj/machinery/door/window{ dir = 1; @@ -33619,6 +33823,12 @@ }, /turf/open/floor/iron/white, /area/medical/medbay/central) +"lgb" = ( +/obj/structure/table/wood, +/obj/item/clothing/head/sombrero, +/obj/structure/sign/poster/random/directional/east, +/turf/open/floor/wood, +/area/service/theater) "lgg" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -33628,6 +33838,15 @@ }, /turf/open/floor/iron, /area/construction/storage_wing) +"lgk" = ( +/obj/machinery/vending/wardrobe/hydro_wardrobe, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/light/small/directional/north, +/obj/structure/sign/poster/official/random/directional/east, +/turf/open/floor/iron, +/area/service/hydroponics) "lgw" = ( /turf/open/floor/carpet, /area/service/library) @@ -33639,6 +33858,30 @@ /obj/machinery/atmospherics/components/unary/portables_connector/visible, /turf/open/floor/iron, /area/science/mixing) +"lgI" = ( +/obj/structure/table, +/obj/item/paper_bin/bundlenatural{ + pixel_x = -19; + pixel_y = 5 + }, +/obj/item/paper_bin/bundlenatural{ + pixel_x = -7; + pixel_y = 5 + }, +/obj/item/paper_bin/bundlenatural{ + pixel_x = -19; + pixel_y = 9 + }, +/obj/item/paperplane{ + pixel_x = 9 + }, +/obj/item/paperplane{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/effect/turf_decal/tile/brown/anticorner/contrasted, +/turf/open/floor/iron, +/area/cargo/sorting) "lgQ" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -33671,6 +33914,11 @@ }, /turf/open/floor/iron/dark/textured, /area/engineering/atmos) +"lhr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/turf/open/floor/iron, +/area/engineering/atmos/pumproom) "lhC" = ( /obj/structure/chair/comfy/black{ dir = 4 @@ -33678,6 +33926,17 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/carpet, /area/commons/vacant_room/office) +"lhE" = ( +/obj/structure/table/glass, +/obj/item/clothing/gloves/color/latex, +/obj/item/healthanalyzer, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/science, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/medical/virology) "lhK" = ( /obj/machinery/door/poddoor/shutters{ id = "teleshutter"; @@ -33692,6 +33951,12 @@ }, /turf/open/floor/iron, /area/command/teleporter) +"lhL" = ( +/obj/machinery/chem_master, +/obj/structure/noticeboard/directional/south, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, +/turf/open/floor/iron/white, +/area/medical/pharmacy) "lhR" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -33700,13 +33965,6 @@ "lhW" = ( /turf/closed/wall, /area/engineering/main) -"lhY" = ( -/obj/structure/closet/l3closet/virology, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/medical/virology) "lib" = ( /obj/structure/closet/secure_closet/hos, /obj/item/clothing/shoes/cowboy/black, @@ -33735,13 +33993,6 @@ /obj/effect/spawner/random/decoration/showcase, /turf/open/floor/carpet, /area/command/corporate_showroom) -"liD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/science/cytology) "ljb" = ( /obj/machinery/holopad, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -33816,12 +34067,6 @@ /obj/machinery/duct, /turf/open/floor/iron/freezer, /area/commons/toilet/restrooms) -"lkE" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/plasma, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/storage) "lkF" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -33834,12 +34079,6 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/lesser) -"lkM" = ( -/obj/machinery/smartfridge/chemistry/virology/preloaded, -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/tile/green/half/contrasted, -/turf/open/floor/iron/white, -/area/medical/virology) "lkO" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral{ @@ -33877,16 +34116,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/security/warden) -"llg" = ( -/obj/structure/rack, -/obj/item/gun/energy/ionrifle, -/obj/item/gun/energy/temperature/security, -/obj/item/clothing/suit/hooded/ablative, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/ai_monitored/security/armory) "llh" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -33946,6 +34175,19 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/cargo/storage) +"lmC" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/keycard_auth/directional/west, +/turf/open/floor/iron/dark, +/area/command/heads_quarters/ce) +"lmF" = ( +/obj/effect/turf_decal/bot_white/right, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/ai_monitored/command/nuke_storage) "lmG" = ( /obj/machinery/door/poddoor/shutters/preopen{ id = "rdrnd"; @@ -33963,6 +34205,26 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/primary/aft) +"lmS" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/storage/medkit/regular{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/storage/medkit/o2{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/medkit/o2, +/obj/item/storage/medkit/o2{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/table/reinforced, +/turf/open/floor/iron/dark, +/area/medical/storage) "lnt" = ( /obj/effect/landmark/event_spawn, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -34044,6 +34306,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/science/misc_lab) +"lpd" = ( +/obj/machinery/computer/scan_consolenew{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/genetics) "lpg" = ( /turf/closed/wall/r_wall, /area/maintenance/starboard/lesser) @@ -34067,16 +34339,6 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron, /area/construction/storage_wing) -"lpu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/robotics/lab) "lpz" = ( /obj/structure/table, /obj/structure/window/reinforced{ @@ -34185,11 +34447,22 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron, /area/hallway/primary/starboard) -"lrs" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/iron/white, -/area/science/mixing/launch) +"lrj" = ( +/obj/machinery/computer/rdconsole, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/command/bridge) +"lro" = ( +/obj/structure/showcase/cyborg/old{ + dir = 4; + pixel_x = -9; + pixel_y = 2 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ai_monitored/turret_protected/ai) "lry" = ( /obj/machinery/door/airlock{ name = "Maintenance Bathroom"; @@ -34197,6 +34470,19 @@ }, /turf/open/floor/plating, /area/maintenance/aft/greater) +"lrI" = ( +/obj/machinery/airalarm/directional/north, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/computer/cargo{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/cargo/sorting) "lrP" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -34208,6 +34494,13 @@ dir = 8 }, /area/science/lab) +"lrY" = ( +/obj/structure/table/optable, +/obj/machinery/airalarm/directional/south, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/blue/half/contrasted, +/turf/open/floor/iron/white, +/area/medical/surgery/aft) "lsj" = ( /obj/machinery/light/directional/west, /obj/machinery/button/flasher{ @@ -34220,21 +34513,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/security/prison) +"lsv" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/iron/white, +/area/medical/chemistry) "lsU" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, /turf/open/floor/iron/white, /area/science/storage) -"ltd" = ( -/obj/structure/table, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/effect/spawner/random/entertainment/dice, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/cargo/miningoffice) "ltn" = ( /obj/machinery/airalarm/directional/south, /obj/machinery/door/firedoor, @@ -34246,26 +34534,13 @@ }, /turf/open/floor/iron, /area/hallway/primary/central) -"ltx" = ( -/obj/machinery/computer/security/mining, -/obj/machinery/keycard_auth/directional/north, -/obj/item/radio/intercom/directional/north{ - pixel_y = 34 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/command/bridge) -"ltz" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ +"lty" = ( +/obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/turf/open/floor/iron/dark, -/area/engineering/atmos) +/obj/structure/sign/poster/official/random/directional/south, +/turf/open/floor/iron, +/area/hallway/primary/port) "ltB" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -34313,12 +34588,18 @@ }, /turf/open/floor/iron, /area/cargo/storage) -"ltR" = ( +"lup" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/machinery/flasher/directional/south{ + id = "AI"; + pixel_x = 26 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/hallway/secondary/exit/departure_lounge) +/turf/open/floor/iron/dark, +/area/ai_monitored/turret_protected/ai) "luD" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -34348,21 +34629,6 @@ /obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/iron, /area/maintenance/disposal/incinerator) -"lvG" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/bottle/multiver{ - pixel_x = 6 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/item/reagent_containers/syringe, -/obj/effect/turf_decal/siding/white/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white/side{ - dir = 5 - }, -/area/medical/treatment_center) "lvM" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -34384,14 +34650,6 @@ /obj/structure/cable, /turf/open/floor/wood, /area/command/heads_quarters/hop) -"lwo" = ( -/obj/machinery/light/no_nightlight/directional/east, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/cyan/visible, -/turf/open/floor/iron/dark/corner, -/area/engineering/atmos/pumproom) "lwp" = ( /obj/machinery/light/directional/north, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -34453,13 +34711,17 @@ "lxb" = ( /turf/closed/wall, /area/command/gateway) -"lxi" = ( -/obj/structure/chair{ - dir = 1 +"lxh" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 }, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/white, -/area/medical/medbay/central) +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/security/courtroom) "lxj" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 1 @@ -34479,6 +34741,38 @@ icon_state = "platingdmg1" }, /area/maintenance/department/science/xenobiology) +"lxO" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/security/lockers) +"lxZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/chem_heater/withbuffer, +/obj/effect/turf_decal/tile/purple/fourcorners, +/turf/open/floor/iron/white, +/area/science/xenobiology) +"lya" = ( +/obj/structure/table/glass, +/obj/item/stack/medical/mesh, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/white/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/iron/white/side{ + dir = 6 + }, +/area/medical/treatment_center) "lye" = ( /turf/open/floor/iron, /area/engineering/atmos) @@ -34510,6 +34804,20 @@ /obj/structure/chair/comfy/black, /turf/open/floor/iron/dark, /area/security/office) +"lzb" = ( +/obj/item/folder/red{ + pixel_y = 3 + }, +/obj/machinery/light/directional/east, +/obj/structure/table/glass, +/obj/item/folder/red{ + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/command/bridge) "lzf" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/maintenance{ @@ -34520,15 +34828,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/maintenance/port/aft) -"lzi" = ( -/obj/item/wrench, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 +"lzg" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Distro Staging to Filter" }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/robotics/lab) +/turf/open/floor/iron, +/area/engineering/atmos/pumproom) "lzj" = ( /obj/structure/table, /obj/item/hand_labeler, @@ -34603,6 +34909,26 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood, /area/command/corporate_showroom) +"lAI" = ( +/obj/structure/rack, +/obj/item/gun/energy/laser/practice{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/item/gun/energy/laser/practice{ + pixel_x = 2; + pixel_y = 1 + }, +/obj/item/gun/energy/laser/practice{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/security/range) "lBi" = ( /obj/structure/table/wood, /obj/effect/decal/cleanable/dirt/dust, @@ -34642,6 +34968,17 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/cargo/miningoffice) +"lCB" = ( +/obj/machinery/computer/scan_consolenew{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/genetics) "lCF" = ( /obj/structure/cable, /turf/open/floor/iron/white, @@ -34714,20 +35051,14 @@ /obj/item/clothing/mask/muzzle, /turf/open/floor/plating, /area/maintenance/starboard/lesser) -"lDd" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - aiControlDisabled = 1; - id_tag = "prisonereducation"; - name = "Prisoner Education Chamber"; - req_access_txt = "3" +"lDe" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/door/poddoor/shutters/window{ + id = "armory"; + name = "armory shutters" }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron, -/area/security/execution/education) +/turf/open/floor/iron/dark, +/area/ai_monitored/security/armory) "lDf" = ( /turf/open/floor/iron, /area/hallway/primary/port) @@ -34739,6 +35070,18 @@ }, /turf/open/floor/wood, /area/maintenance/port/aft) +"lDl" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/light/no_nightlight/directional/north, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/engineering/atmos/pumproom) "lDp" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -34808,11 +35151,18 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/primary/central) -"lEu" = ( -/obj/effect/spawner/random/entertainment/arcade, +"lEA" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/hallway/secondary/exit/departure_lounge) +/area/science/research) "lEC" = ( /obj/structure/cable, /turf/open/floor/plating/airless, @@ -34833,6 +35183,31 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/white, /area/science/mixing/launch) +"lEY" = ( +/obj/machinery/door/window/southright{ + name = "First Aid Supplies"; + req_access_txt = "5" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/storage/medkit/regular{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/storage/medkit/brute{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/medkit/brute, +/obj/item/storage/medkit/brute{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/table/reinforced, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark, +/area/medical/storage) "lFh" = ( /obj/structure/table, /obj/machinery/cell_charger, @@ -34845,6 +35220,22 @@ }, /turf/open/floor/iron, /area/science/lab) +"lFl" = ( +/obj/machinery/door/airlock/command{ + name = "Chief Medical Officer's Office"; + req_access_txt = "40" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/white, +/area/command/heads_quarters/cmo) +"lFz" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/hallway/secondary/command) "lFH" = ( /obj/structure/window, /obj/effect/decal/cleanable/food/flour, @@ -34868,16 +35259,6 @@ }, /turf/open/floor/engine, /area/science/cytology) -"lGf" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/obj/machinery/meter, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/engineering/atmos) "lGi" = ( /obj/effect/turf_decal/tile/purple, /obj/structure/cable, @@ -34891,47 +35272,6 @@ /obj/effect/turf_decal/trimline/yellow/warning, /turf/open/floor/iron, /area/engineering/atmos) -"lGs" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Engineering Desk"; - req_one_access_txt = "24;32" - }, -/obj/item/folder/yellow, -/obj/item/pen, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/turf/open/floor/iron, -/area/engineering/break_room) -"lGt" = ( -/obj/structure/rack, -/obj/item/clothing/glasses/hud/security/sunglasses/gars{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/clothing/glasses/hud/security/sunglasses/gars{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/item/clothing/glasses/hud/security/sunglasses{ - pixel_x = -3; - pixel_y = -2 - }, -/obj/item/clothing/glasses/hud/security/sunglasses{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/machinery/airalarm/directional/west, -/obj/machinery/camera/motion/directional/west{ - c_tag = "Armory - Internal" - }, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted, -/turf/open/floor/iron/dark, -/area/ai_monitored/security/armory) "lGF" = ( /obj/effect/turf_decal/trimline/purple/line{ dir = 4 @@ -35011,22 +35351,6 @@ }, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) -"lHM" = ( -/obj/machinery/medical_kiosk, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/effect/turf_decal/siding/white, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white/side{ - dir = 1 - }, -/area/medical/treatment_center) -"lHR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/command/bridge) "lIi" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -35045,37 +35369,12 @@ }, /turf/open/floor/iron, /area/commons/locker) -"lIA" = ( -/obj/structure/table, -/obj/item/folder/red{ - pixel_x = 3 +"lIz" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 4 }, -/obj/item/taperecorder{ - pixel_x = -3 - }, -/obj/item/storage/fancy/cigarettes, -/obj/item/assembly/flash/handheld, -/obj/item/reagent_containers/spray/pepper, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/security/execution/education) -"lIB" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/service/chapel) -"lIC" = ( -/obj/machinery/light/small/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Security - EVA Storage" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/security/brig) +/turf/open/floor/iron/white, +/area/medical/pharmacy) "lID" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -35112,30 +35411,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/service/bar) -"lJz" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/eastright{ - dir = 8; - name = "Pharmacy Desk"; - req_access_txt = "5; 69" - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/pen, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "pharmacy_shutters_2"; - name = "Pharmacy shutters" - }, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/turf/open/floor/iron/white, -/area/medical/pharmacy) "lJI" = ( /obj/machinery/status_display/supply{ pixel_y = 32 @@ -35161,6 +35436,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/science/research) +"lJT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron, +/area/engineering/break_room) "lJW" = ( /obj/structure/railing{ dir = 1 @@ -35180,6 +35463,32 @@ /obj/effect/landmark/carpspawn, /turf/open/space/basic, /area/space) +"lKI" = ( +/obj/item/radio/intercom/directional/west, +/obj/structure/table/glass, +/obj/machinery/camera/directional/west{ + c_tag = "Pharmacy"; + network = list("ss13","medbay") + }, +/obj/machinery/light/directional/west, +/obj/item/book/manual/wiki/chemistry{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/book/manual/wiki/grenades, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/medical/pharmacy) +"lKW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/hallway/primary/aft) "lLc" = ( /obj/machinery/door/airlock/engineering{ name = "Telecomms Storage"; @@ -35234,14 +35543,6 @@ }, /turf/open/floor/grass, /area/science/genetics) -"lLJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/robotics/lab) "lLS" = ( /obj/item/crowbar, /obj/item/wrench, @@ -35256,18 +35557,38 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/hallway/primary/starboard) -"lMc" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/pipe_dispenser, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ +"lLU" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, /turf/open/floor/iron, -/area/construction/mining/aux_base) +/area/hallway/primary/starboard) +"lLZ" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/components/trinary/filter/atmos/co2{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark/fourcorners, +/turf/open/floor/iron, +/area/engineering/atmos) "lMh" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, @@ -35280,28 +35601,21 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/medical/medbay/central) +"lMq" = ( +/turf/open/misc/asteroid/basalt/airless, +/area/space/nearstation) +"lMy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/robotics/lab) "lMJ" = ( /obj/structure/lattice, /turf/open/space/basic, /area/space/nearstation) -"lMQ" = ( -/obj/machinery/disposal/bin{ - desc = "A pneumatic waste disposal unit. This one leads to the morgue."; - name = "corpse disposal" - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/obj/structure/sign/warning/bodysposal{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/medical/surgery/aft) "lMV" = ( /obj/structure/chair/office{ dir = 4 @@ -35310,6 +35624,11 @@ /mob/living/simple_animal/sloth/citrus, /turf/open/floor/iron, /area/cargo/storage) +"lMZ" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron, +/area/command/heads_quarters/ce) "lNj" = ( /obj/structure/sink{ dir = 8; @@ -35328,6 +35647,21 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/starboard/fore) +"lNO" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table, +/obj/machinery/camera/directional/south{ + c_tag = "Science Toxins Launch"; + network = list("ss13","rd") + }, +/obj/machinery/computer/pod/old/mass_driver_controller/ordnancedriver{ + pixel_y = -24 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/mixing/launch) "lNR" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -35361,6 +35695,19 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/department/medical/central) +"lOW" = ( +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/research{ + name = "Ordnance Test Lab"; + req_access_txt = "8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/heavy, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/science/storage) "lOX" = ( /obj/structure/window/reinforced, /obj/effect/turf_decal/delivery, @@ -35384,10 +35731,30 @@ }, /turf/open/floor/iron/dark, /area/security/checkpoint/medical) -"lPp" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted, +"lPk" = ( +/obj/machinery/space_heater, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/turf/open/floor/iron/dark, +/area/security/execution/education) +"lPu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/mix_output{ + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"lPD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, /turf/open/floor/iron, -/area/security/courtroom) +/area/commons/locker) "lPG" = ( /obj/effect/landmark/start/station_engineer, /obj/structure/cable, @@ -35416,6 +35783,17 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, /turf/closed/wall/r_wall, /area/engineering/supermatter) +"lQh" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/white, +/area/command/heads_quarters/cmo) "lQj" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, @@ -35436,21 +35814,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/primary/central) -"lQq" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table, -/obj/machinery/camera/directional/south{ - c_tag = "Science Toxins Launch"; - network = list("ss13","rd") - }, -/obj/machinery/computer/pod/old/mass_driver_controller/ordnancedriver{ - pixel_y = -24 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/mixing/launch) "lQv" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ @@ -35469,12 +35832,6 @@ /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, /turf/open/floor/iron/dark/corner, /area/engineering/atmos) -"lQH" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/engineering/storage/tech) "lRj" = ( /obj/effect/turf_decal/tile/neutral, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -35485,6 +35842,11 @@ }, /turf/open/floor/iron, /area/hallway/primary/aft) +"lRn" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/hallway/secondary/exit/departure_lounge) "lRE" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -35493,15 +35855,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/primary/aft) -"lRW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/no_nightlight/directional/east, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/engineering/atmos) "lSa" = ( /turf/open/floor/engine/plasma, /area/engineering/atmos) @@ -35545,11 +35898,12 @@ }, /turf/open/floor/wood, /area/service/library) -"lUb" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted, -/turf/open/floor/iron/white, -/area/medical/surgery/aft) +"lTM" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ai_monitored/command/storage/eva) "lUq" = ( /obj/effect/spawner/random/structure/chair_maintenance{ dir = 4 @@ -35561,18 +35915,18 @@ /obj/structure/altar_of_gods, /turf/open/floor/iron/dark, /area/service/chapel) +"lUy" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12 + }, +/obj/structure/sign/poster/contraband/random/directional/west, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) "lUB" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/maintenance/aft/greater) -"lUM" = ( -/obj/machinery/lapvend, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/science/lobby) "lUU" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -35591,16 +35945,6 @@ /obj/machinery/light/small/directional/north, /turf/open/floor/cult, /area/service/chapel/funeral) -"lVs" = ( -/obj/structure/closet/bombcloset/security, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/security/brig) "lVw" = ( /obj/machinery/newscaster/directional/west, /obj/structure/cable, @@ -35621,15 +35965,18 @@ }, /turf/open/floor/iron, /area/science/xenobiology) -"lVH" = ( +"lWz" = ( /obj/structure/cable, +/obj/machinery/door/airlock/engineering/glass{ + name = "Shared Engineering Storage"; + req_one_access_txt = "32;19" + }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/medical/virology) +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/turf/open/floor/iron, +/area/engineering/storage_shared) "lWB" = ( /obj/item/cigbutt, /obj/machinery/light/small/directional/east, @@ -35743,16 +36090,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/cargo/storage) -"lYH" = ( -/obj/machinery/power/shieldwallgen, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/command/teleporter) "lYI" = ( /obj/machinery/airalarm/directional/west, /turf/open/floor/iron, @@ -35781,14 +36118,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/grass, /area/medical/virology) -"lZl" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/storage/box/lights/mixed, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron, -/area/commons/storage/tools) "lZn" = ( /obj/machinery/door/airlock{ name = "Theater Backstage"; @@ -35886,16 +36215,23 @@ /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/port/fore) -"mam" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 +"mad" = ( +/obj/structure/rack, +/obj/item/restraints/handcuffs{ + pixel_x = -3; + pixel_y = 5 }, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red/half/contrasted{ dir = 1 }, /turf/open/floor/iron, -/area/engineering/break_room) +/area/security/office) "mar" = ( /obj/item/solar_assembly, /obj/item/solar_assembly, @@ -35925,27 +36261,10 @@ /obj/item/reagent_containers/dropper, /turf/open/floor/iron/white, /area/medical/virology) -"maE" = ( -/obj/item/storage/secure/safe/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Chief Engineer's Office" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/command/heads_quarters/ce) "maG" = ( /obj/structure/cable, /turf/open/floor/wood, /area/command/corporate_showroom) -"maN" = ( -/obj/item/radio/intercom/directional/north, -/obj/machinery/computer/security, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/security/checkpoint/customs) "maO" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood, @@ -35960,14 +36279,6 @@ /obj/structure/closet/crate/freezer, /turf/open/floor/iron/white, /area/medical/abandoned) -"mbd" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/structure/sign/poster/contraband/random/directional/west, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) "mbj" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/spawner/random/structure/grille, @@ -36011,6 +36322,17 @@ }, /turf/open/floor/iron, /area/commons/lounge) +"mbI" = ( +/obj/machinery/door/airlock/research{ + name = "Robotics Lab"; + req_access_txt = "29" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple/fourcorners, +/turf/open/floor/iron/white, +/area/science/robotics/lab) "mbK" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -36024,6 +36346,16 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/hallway/primary/central) +"mbW" = ( +/obj/structure/table/glass, +/obj/item/folder/blue, +/obj/item/clothing/neck/stethoscope, +/obj/item/clothing/glasses/hud/health, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/command/heads_quarters/cmo) "mcg" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -36033,26 +36365,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/secondary/entry) -"mck" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Distro Staging to Filter" - }, -/turf/open/floor/iron, -/area/engineering/atmos/pumproom) -"mcy" = ( -/obj/structure/cable, -/obj/structure/table, -/obj/item/stack/medical/mesh, -/obj/item/stack/medical/gauze, -/obj/item/stack/medical/suture, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/medical/medbay/lobby) "mcC" = ( /obj/machinery/light/directional/south, /obj/effect/turf_decal/siding/purple{ @@ -36092,6 +36404,12 @@ }, /turf/open/floor/engine, /area/engineering/supermatter/room) +"mcY" = ( +/obj/structure/closet/secure_closet/miner, +/obj/item/clothing/suit/hooded/wintercoat/miner, +/obj/effect/turf_decal/tile/brown/half/contrasted, +/turf/open/floor/iron, +/area/cargo/miningoffice) "mdd" = ( /obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ dir = 1 @@ -36134,6 +36452,25 @@ }, /turf/open/floor/iron/dark, /area/medical/morgue) +"mdJ" = ( +/obj/structure/table/wood, +/obj/item/radio/intercom/directional/east, +/obj/item/clothing/glasses/regular/hipster{ + name = "Hipster Glasses" + }, +/obj/machinery/light/small/directional/south, +/obj/effect/landmark/start/hangover, +/obj/effect/spawner/random/entertainment/musical_instrument, +/obj/structure/sign/poster/random/directional/south, +/turf/open/floor/wood, +/area/service/theater) +"mdU" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/genetics) "mdV" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -36164,6 +36501,12 @@ }, /turf/open/floor/iron/dark/corner, /area/engineering/atmos/storage/gas) +"mew" = ( +/obj/machinery/airalarm/directional/west, +/obj/structure/closet/secure_closet/security/med, +/obj/effect/turf_decal/tile/red/fourcorners, +/turf/open/floor/iron/dark, +/area/security/checkpoint/medical) "mey" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light_switch/directional/north, @@ -36270,20 +36613,6 @@ /obj/item/reagent_containers/syringe, /turf/open/floor/plating, /area/maintenance/starboard/lesser) -"mfu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/security/office) "mfD" = ( /obj/structure/table, /obj/item/assembly/igniter{ @@ -36341,19 +36670,6 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat_interior) -"mgx" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/rglass{ - amount = 50 - }, -/obj/item/stack/sheet/iron/fifty, -/obj/item/storage/toolbox/emergency, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/effect/spawner/random/engineering/flashlight, -/turf/open/floor/iron/dark, -/area/command/teleporter) "mgz" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -36400,16 +36716,6 @@ }, /turf/open/floor/carpet/royalblue, /area/service/library) -"mhq" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/poster/official/random/directional/north, -/turf/open/floor/iron, -/area/hallway/primary/port) "mhs" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/green{ @@ -36430,18 +36736,6 @@ }, /turf/open/floor/wood, /area/service/library) -"mhC" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/mixing/launch) "mhE" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -36474,6 +36768,15 @@ }, /turf/open/floor/wood, /area/service/theater) +"miG" = ( +/obj/machinery/newscaster/directional/west, +/obj/machinery/light/directional/west, +/obj/structure/filingcabinet, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/engineering/break_room) "miH" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/delivery, @@ -36512,6 +36815,17 @@ /obj/effect/spawner/random/structure/grille, /turf/open/space, /area/space/nearstation) +"mjo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/medical/medbay/central) "mjH" = ( /obj/machinery/ai_slipper{ uses = 10 @@ -36586,6 +36900,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/security/prison) +"mkH" = ( +/obj/machinery/light/directional/west, +/obj/machinery/light_switch/directional/west, +/obj/effect/turf_decal/tile/red/half/contrasted, +/turf/open/floor/iron, +/area/security/office) "mkK" = ( /obj/machinery/computer/security{ dir = 8 @@ -36599,6 +36919,10 @@ }, /turf/open/floor/carpet, /area/commons/vacant_room/office) +"mld" = ( +/obj/machinery/air_sensor/nitrous_tank, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) "mlx" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -36608,11 +36932,6 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"mlC" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/dark, -/area/commons/fitness/recreation) "mlP" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 4 @@ -36636,19 +36955,6 @@ /obj/machinery/camera/autoname/directional/west, /turf/open/floor/plating, /area/maintenance/solars/port/fore) -"mmi" = ( -/obj/structure/table, -/obj/item/storage/fancy/donut_box{ - pixel_x = 4 - }, -/obj/structure/cable, -/obj/effect/spawner/random/food_or_drink/donkpockets{ - pixel_x = -14; - pixel_y = 6 - }, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron/dark, -/area/security/office) "mml" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/carpet, @@ -36764,6 +37070,15 @@ /obj/effect/spawner/random/bureaucracy/pen, /turf/open/floor/iron, /area/engineering/gravity_generator) +"mok" = ( +/obj/structure/table, +/obj/item/paper/fluff/holodeck/disclaimer, +/obj/item/storage/medkit/regular{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/floor/iron, +/area/commons/fitness/recreation) "mot" = ( /obj/structure/mirror/directional/west, /obj/machinery/shower{ @@ -36784,18 +37099,6 @@ }, /turf/open/floor/plating, /area/maintenance/department/engine) -"moT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/commons/locker) "mpa" = ( /obj/structure/sign/warning/securearea, /turf/closed/wall, @@ -36815,11 +37118,6 @@ }, /turf/open/floor/engine/cult, /area/service/library) -"mpt" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/service/chapel/funeral) "mpv" = ( /obj/machinery/modular_computer/console/preset/id{ dir = 4 @@ -36854,6 +37152,15 @@ }, /turf/open/floor/iron/white, /area/science/research) +"mpV" = ( +/obj/structure/cable, +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/red/half/contrasted, +/turf/open/floor/iron, +/area/security/checkpoint/customs) "mpY" = ( /obj/structure/sign/warning/electricshock, /turf/closed/wall/r_wall, @@ -36889,6 +37196,10 @@ /obj/machinery/atmospherics/components/unary/portables_connector/visible, /turf/open/floor/iron, /area/maintenance/disposal/incinerator) +"mqO" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/iron, +/area/engineering/atmos/pumproom) "mqP" = ( /obj/structure/cable, /turf/open/floor/iron/dark, @@ -36987,6 +37298,18 @@ }, /turf/open/floor/engine, /area/engineering/supermatter/room) +"mrZ" = ( +/obj/structure/table, +/obj/item/stack/medical/gauze, +/obj/item/stack/medical/mesh, +/obj/item/stack/medical/suture, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/medical/medbay/lobby) "msa" = ( /obj/structure/cable, /obj/structure/table/wood, @@ -37018,15 +37341,25 @@ /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/starboard/lesser) -"msM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ +"msQ" = ( +/obj/machinery/door/window/northleft{ + dir = 8; + name = "Disposals Chute" + }, +/obj/machinery/disposal/delivery_chute{ + dir = 8; + name = "disposals chute"; + pixel_x = 5 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ dir = 8 }, -/obj/effect/landmark/start/roboticist, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/science/robotics/lab) +/area/command/teleporter) "msS" = ( /obj/structure/table, /obj/item/book/manual/hydroponics_pod_people, @@ -37067,16 +37400,55 @@ /obj/effect/landmark/start/medical_doctor, /turf/open/floor/iron/white, /area/medical/medbay/central) +"mts" = ( +/obj/structure/closet/emcloset, +/obj/structure/sign/map/left{ + icon_state = "map-left-MS"; + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/hallway/primary/starboard) "mtt" = ( /obj/machinery/holopad, /turf/open/floor/iron, /area/cargo/storage) +"mtB" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/command/heads_quarters/cmo) "mtC" = ( /obj/effect/spawner/random/structure/chair_maintenance, /turf/open/floor/plating{ icon_state = "panelscorched" }, /area/maintenance/department/engine) +"mtF" = ( +/obj/structure/table, +/obj/item/circular_saw, +/obj/item/scalpel{ + pixel_y = 16 + }, +/obj/effect/turf_decal/tile/purple/half/contrasted, +/turf/open/floor/iron/white, +/area/science/robotics/lab) +"mtR" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/camera/directional/east{ + c_tag = "MiniSat Exterior - Port Fore"; + network = list("minisat") + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/open/floor/iron/dark, +/area/ai_monitored/aisat/exterior) "mtS" = ( /obj/structure/chair/office/light{ dir = 8 @@ -37088,6 +37460,13 @@ /obj/item/kirbyplants/random, /turf/open/floor/iron, /area/hallway/primary/port) +"mub" = ( +/obj/machinery/light/small/broken/directional/west, +/obj/structure/table, +/obj/item/clothing/suit/cyborg_suit, +/obj/item/clothing/mask/gas/cyborg, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) "muh" = ( /obj/machinery/power/terminal, /obj/machinery/light/small/directional/east, @@ -37125,6 +37504,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/port/aft) +"muK" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/iron/white, +/area/medical/treatment_center) "muL" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -37221,17 +37605,6 @@ }, /turf/open/floor/iron/white, /area/science/cytology) -"mvH" = ( -/obj/machinery/disposal/bin, -/obj/machinery/firealarm/directional/south{ - pixel_x = 26 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron/white, -/area/medical/medbay/lobby) "mvJ" = ( /obj/structure/closet/crate/coffin, /obj/structure/window/reinforced{ @@ -37266,23 +37639,18 @@ "mwP" = ( /turf/open/floor/iron/showroomfloor, /area/maintenance/starboard/lesser) -"mxu" = ( -/obj/structure/table, -/obj/item/stack/sheet/plasteel{ - amount = 10 +"mxw" = ( +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Research Division Server Room"; + req_access_txt = "30" }, -/obj/item/stack/rods/fifty, -/obj/effect/spawner/random/trash/janitor_supplies, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, -/turf/open/floor/iron, -/area/construction/mining/aux_base) -"mxN" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/service/hydroponics/garden) +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/science/server) "myi" = ( /obj/structure/table, /obj/item/plant_analyzer, @@ -37320,25 +37688,6 @@ icon_state = "platingdmg2" }, /area/maintenance/starboard/lesser) -"myG" = ( -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/structure/table, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/obj/machinery/airalarm/directional/west, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/crowbar, -/obj/item/wrench, -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ai_monitored/command/storage/eva) "myM" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -37358,18 +37707,6 @@ }, /turf/open/floor/wood, /area/commons/vacant_room/office) -"mza" = ( -/obj/structure/closet/crate, -/obj/item/stack/cable_coil, -/obj/item/crowbar, -/obj/item/screwdriver{ - pixel_y = 16 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/turf/open/floor/iron/dark, -/area/command/teleporter) "mzr" = ( /obj/item/reagent_containers/glass/bucket, /obj/item/mop, @@ -37388,28 +37725,10 @@ /obj/machinery/holopad, /turf/open/floor/iron, /area/engineering/atmos) -"mzJ" = ( -/obj/machinery/atmospherics/pipe/smart/simple/supply/visible{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/engineering/atmos/pumproom) "mzL" = ( /obj/effect/landmark/blobstart, /turf/open/floor/plating, /area/engineering/main) -"mzU" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/modular_computer/console/preset/civilian{ - dir = 8 - }, -/obj/structure/sign/poster/official/random/directional/east, -/turf/open/floor/iron/dark/corner, -/area/engineering/storage_shared) "mzW" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -37435,6 +37754,15 @@ /obj/structure/cable, /turf/open/floor/iron/white, /area/science/research) +"mAu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/sign/poster/contraband/random/directional/north, +/turf/open/floor/plating, +/area/maintenance/fore) "mAC" = ( /obj/structure/rack, /obj/effect/turf_decal/tile/neutral, @@ -37483,6 +37811,11 @@ /obj/effect/spawner/random/structure/crate, /turf/open/floor/plating, /area/maintenance/starboard/aft) +"mAY" = ( +/obj/item/clothing/suit/snowman, +/obj/item/clothing/head/snowman, +/turf/open/floor/fake_snow, +/area/maintenance/port/aft) "mBd" = ( /obj/structure/cable, /obj/effect/spawner/random/engineering/tracking_beacon, @@ -37504,6 +37837,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/secondary/command) +"mBy" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron, +/area/engineering/break_room) "mBC" = ( /obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/research/glass/incinerator/ordmix_exterior{ @@ -37532,6 +37873,14 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/maintenance/starboard/fore) +"mCi" = ( +/obj/effect/turf_decal/bot_white/left, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/ai_monitored/command/nuke_storage) "mCl" = ( /obj/structure/bed, /obj/effect/decal/cleanable/cobweb/cobweb2, @@ -37556,10 +37905,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/ai) -"mCQ" = ( -/obj/machinery/air_sensor/atmos/mix_tank, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) "mCT" = ( /obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ dir = 1 @@ -37567,6 +37912,15 @@ /obj/machinery/meter, /turf/open/floor/iron, /area/engineering/atmos) +"mCY" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/genetics) "mDa" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -37630,25 +37984,13 @@ }, /turf/open/floor/iron, /area/security/warden) -"mDT" = ( -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/structure/table/wood, -/obj/effect/turf_decal/stripes/line{ - dir = 9 +"mEl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/spawner/random/food_or_drink/booze{ - spawn_loot_count = 2; - spawn_random_offset = 1 - }, -/obj/effect/spawner/random/entertainment/musical_instrument, -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/floor/plating, -/area/maintenance/port/aft) +/obj/effect/turf_decal/tile/red/anticorner/contrasted, +/turf/open/floor/iron, +/area/security/office) "mEq" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/brown{ @@ -37712,10 +38054,39 @@ /obj/machinery/light_switch/directional/south, /turf/open/floor/wood, /area/service/theater) +"mEU" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Science Genetics"; + network = list("ss13","rd") + }, +/obj/machinery/newscaster/directional/west, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/genetics) "mEX" = ( /obj/machinery/bookbinder, /turf/open/floor/wood, /area/service/library) +"mFq" = ( +/obj/machinery/door/airlock/research{ + name = "Mech Bay"; + req_access_txt = "29" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple/fourcorners, +/turf/open/floor/iron, +/area/science/robotics/mechbay) "mFv" = ( /obj/machinery/atmospherics/pipe/smart/simple/green/visible{ dir = 4 @@ -37733,6 +38104,21 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/hallway/secondary/entry) +"mFG" = ( +/obj/machinery/firealarm/directional/north, +/obj/machinery/light/directional/north, +/obj/machinery/camera/directional/north{ + c_tag = "Chemistry North"; + network = list("ss13","medbay") + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/medical/chemistry) "mFR" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -37766,6 +38152,15 @@ /obj/machinery/duct, /turf/open/floor/iron/freezer, /area/commons/toilet/restrooms) +"mGk" = ( +/obj/machinery/light/small/directional/west, +/obj/machinery/camera/directional/west{ + c_tag = "MiniSat Exterior - Fore Starboard"; + network = list("minisat") + }, +/obj/structure/window/reinforced, +/turf/open/floor/iron/dark, +/area/ai_monitored/aisat/exterior) "mGr" = ( /obj/structure/extinguisher_cabinet/directional/north, /obj/effect/turf_decal/tile/yellow{ @@ -37774,6 +38169,20 @@ /obj/structure/cable, /turf/open/floor/iron/dark/corner, /area/engineering/atmos) +"mGw" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/landmark/start/security_officer, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/security/office) "mGx" = ( /obj/structure/sign/warning/vacuum/external{ pixel_x = 32 @@ -37814,18 +38223,6 @@ icon_state = "platingdmg2" }, /area/maintenance/port/aft) -"mGP" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/storage) "mGT" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 @@ -37853,6 +38250,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/port/fore) +"mHs" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) "mHw" = ( /obj/structure/chair/comfy/black{ dir = 8 @@ -37864,12 +38265,6 @@ dir = 4 }, /area/service/chapel) -"mHG" = ( -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/command/heads_quarters/cmo) "mHI" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" @@ -37878,6 +38273,15 @@ /obj/machinery/duct, /turf/open/floor/plating, /area/maintenance/fore) +"mIb" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/rack, +/obj/item/roller, +/obj/item/roller, +/obj/item/toy/figure/md, +/obj/structure/sign/poster/contraband/random/directional/north, +/turf/open/floor/iron/white, +/area/medical/abandoned) "mIe" = ( /obj/structure/extinguisher_cabinet/directional/east, /obj/machinery/light/directional/east, @@ -37890,6 +38294,16 @@ /obj/structure/cable, /turf/open/floor/plating/airless, /area/solars/starboard/aft) +"mIq" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/camera/directional/west{ + c_tag = "Auxilary Restrooms" + }, +/obj/structure/sign/poster/official/random/directional/west, +/turf/open/floor/iron, +/area/commons/toilet/auxiliary) "mIB" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -38018,28 +38432,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/cargo/sorting) -"mLk" = ( -/obj/machinery/door/window{ - atom_integrity = 300; - base_state = "rightsecure"; - dir = 4; - icon_state = "rightsecure"; - name = "Primary AI Core Access"; - req_access_txt = "16" - }, -/obj/machinery/camera/directional/north{ - c_tag = "AI Chamber - Core"; - network = list("aicore") - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/requests_console/directional/north{ - department = "AI"; - departmentType = 5; - name = "AI Requests Console" - }, -/turf/open/floor/iron/dark, -/area/ai_monitored/turret_protected/ai) "mLm" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -38122,6 +38514,19 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/cargo/sorting) +"mLF" = ( +/obj/item/radio/intercom/directional/west{ + pixel_y = -10 + }, +/obj/item/kirbyplants/random, +/obj/machinery/light_switch/directional/west{ + pixel_y = 6 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/engineering/break_room) "mLT" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall, @@ -38133,43 +38538,25 @@ /obj/machinery/meter, /turf/open/floor/iron, /area/engineering/atmos) -"mLY" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 9 +"mMg" = ( +/obj/machinery/light/directional/east, +/obj/structure/table/reinforced, +/obj/item/storage/box/lights/mixed, +/obj/item/stack/sheet/iron{ + amount = 30 }, +/obj/item/radio{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/stack/cable_coil, +/obj/structure/sign/poster/random/directional/east, /turf/open/floor/iron, -/area/engineering/atmos/pumproom) -"mMw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Starboard Primary Hallway" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/starboard) -"mMO" = ( -/obj/structure/rack, -/obj/item/gun/energy/e_gun/dragnet, -/obj/item/gun/energy/e_gun/dragnet, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4 - }, +/area/commons/storage/primary) +"mML" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted, /turf/open/floor/iron/dark, -/area/ai_monitored/security/armory) -"mMU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron, -/area/security/office) +/area/command/bridge) "mMX" = ( /obj/structure/chair{ dir = 1 @@ -38196,11 +38583,41 @@ /obj/structure/cable, /turf/open/space/basic, /area/solars/port/fore) +"mNc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/medical/surgery/aft) "mNk" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/structure/cable, /turf/open/floor/iron/white/smooth_large, /area/medical/office) +"mNm" = ( +/obj/structure/table/wood, +/obj/item/food/grown/poppy{ + pixel_y = 2 + }, +/obj/item/food/grown/poppy{ + pixel_y = 2 + }, +/obj/item/food/grown/poppy{ + pixel_y = 2 + }, +/obj/item/food/grown/poppy{ + pixel_y = 2 + }, +/obj/item/food/grown/poppy{ + pixel_y = 2 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/service/chapel) "mNp" = ( /obj/machinery/computer/cargo{ dir = 1 @@ -38219,14 +38636,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/primary/starboard) -"mNs" = ( -/obj/machinery/airalarm/directional/east, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/medical/virology) "mNC" = ( /obj/structure/disposalpipe/segment{ dir = 9 @@ -38258,19 +38667,6 @@ }, /turf/open/floor/iron/dark, /area/medical/morgue) -"mOn" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Tech Storage"; - req_one_access_txt = "23;30" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/navbeacon/wayfinding, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/engineering/storage/tech) "mOs" = ( /obj/effect/turf_decal/trimline/red/filled/corner, /obj/item/kirbyplants/random, @@ -38292,17 +38688,51 @@ }, /turf/open/floor/iron/white, /area/science/research) -"mOt" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/command/gateway) "mOA" = ( /obj/structure/window/reinforced{ dir = 4 }, /turf/open/floor/plating/airless, /area/space/nearstation) +"mON" = ( +/obj/machinery/light/directional/north, +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/item/book/manual/wiki/engineering_construction{ + pixel_y = 3 + }, +/obj/item/folder/yellow, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/engineering/break_room) +"mOX" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/newscaster/security_unit/directional/north, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/security/checkpoint/customs) +"mPb" = ( +/obj/item/dice/d20, +/obj/item/dice, +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/storage/dice, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/light_construct/small/directional/south, +/obj/structure/sign/poster/contraband/random/directional/south, +/turf/open/floor/plating, +/area/maintenance/port/aft) "mPo" = ( /obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, @@ -38333,12 +38763,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/service/cafeteria) -"mPu" = ( -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/aft) "mPy" = ( /obj/machinery/light/small/directional/south, /obj/effect/decal/cleanable/dirt, @@ -38347,6 +38771,27 @@ /obj/structure/closet/secure_closet/atmospherics, /turf/open/floor/iron, /area/maintenance/disposal/incinerator) +"mPB" = ( +/obj/machinery/status_display/ai/directional/north, +/obj/machinery/computer/station_alert, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/command/heads_quarters/ce) +"mPJ" = ( +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Plasma to Pure" + }, +/turf/open/floor/iron, +/area/engineering/atmos) "mPK" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -38363,6 +38808,10 @@ }, /turf/open/floor/engine/cult, /area/service/library) +"mPX" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, +/turf/open/floor/iron, +/area/engineering/atmos/pumproom) "mPY" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 4 @@ -38410,6 +38859,27 @@ dir = 1 }, /area/engineering/atmos) +"mQR" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, +/obj/structure/sign/poster/official/random/directional/north, +/turf/open/floor/iron, +/area/commons/locker) +"mQS" = ( +/obj/machinery/light/directional/west, +/obj/machinery/camera/directional/west{ + c_tag = "Departure Lounge - Port Fore" + }, +/obj/item/kirbyplants{ + icon_state = "plant-24" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/sign/poster/official/random/directional/west, +/turf/open/floor/iron, +/area/hallway/secondary/exit/departure_lounge) "mQU" = ( /obj/structure/plasticflaps, /obj/structure/window/reinforced{ @@ -38427,6 +38897,13 @@ }, /turf/open/floor/plating, /area/cargo/sorting) +"mRj" = ( +/obj/structure/rack, +/obj/item/tank/internals/anesthetic, +/obj/item/clothing/mask/gas, +/obj/effect/turf_decal/tile/green/fourcorners, +/turf/open/floor/iron/showroomfloor, +/area/maintenance/starboard/lesser) "mRp" = ( /obj/structure/table/wood, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -38436,12 +38913,28 @@ "mRw" = ( /turf/closed/wall, /area/medical/treatment_center) +"mRz" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/iron/dark, +/area/commons/locker) "mRC" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/starboard/fore) +"mRS" = ( +/obj/structure/table/reinforced, +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/medical/surgery/aft) "mRT" = ( /obj/effect/turf_decal/tile/yellow, /turf/open/floor/iron/white, @@ -38460,18 +38953,12 @@ /obj/item/radio/intercom/directional/west, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) -"mSr" = ( -/obj/effect/landmark/start/chief_medical_officer, -/obj/effect/turf_decal/tile/blue/half/contrasted{ +"mSt" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 4 }, -/turf/open/floor/iron/white, -/area/command/heads_quarters/cmo) -"mSs" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/robotics/lab) +/turf/open/floor/iron, +/area/service/hydroponics/garden) "mSz" = ( /obj/machinery/door/airlock/external, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ @@ -38479,13 +38966,6 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"mSO" = ( -/obj/structure/closet/toolcloset, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/construction/mining/aux_base) "mTb" = ( /obj/structure/table, /obj/machinery/microwave, @@ -38532,6 +39012,12 @@ }, /turf/open/floor/plating, /area/engineering/supermatter/room) +"mTA" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/aft) "mTC" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -38641,6 +39127,26 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/science/research) +"mVg" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/engineering_hacking{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/book/manual/wiki/engineering_guide{ + pixel_x = -2 + }, +/obj/item/trash/can{ + pixel_x = -8 + }, +/obj/machinery/firealarm/directional/south, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, +/turf/open/floor/iron, +/area/engineering/break_room) "mVi" = ( /obj/effect/turf_decal/tile/purple, /obj/machinery/camera/directional/south{ @@ -38651,6 +39157,16 @@ "mVk" = ( /turf/closed/wall, /area/cargo/warehouse) +"mVm" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/medical/chemistry) "mVs" = ( /obj/machinery/light_switch/directional/west, /obj/effect/turf_decal/tile/yellow{ @@ -38699,19 +39215,20 @@ }, /turf/open/floor/iron/white, /area/medical/storage) +"mVL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/engineering/break_room) "mVM" = ( /obj/effect/spawner/random/maintenance, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/starboard/lesser) -"mVP" = ( -/obj/structure/rack, -/obj/item/tank/internals/anesthetic, -/obj/item/clothing/mask/gas, -/obj/effect/turf_decal/tile/green/fourcorners, -/turf/open/floor/iron/showroomfloor, -/area/maintenance/starboard/lesser) "mVT" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -38805,11 +39322,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/ai_monitored/command/storage/eva) -"mXh" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, -/obj/machinery/meter/atmos/atmos_waste_loop, -/turf/open/floor/iron, -/area/engineering/atmos) "mXp" = ( /obj/structure/table, /obj/machinery/reagentgrinder{ @@ -38828,13 +39340,6 @@ dir = 5 }, /area/service/kitchen) -"mXs" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/ai_monitored/turret_protected/ai_upload_foyer) "mXD" = ( /obj/machinery/light/small/directional/north, /obj/machinery/firealarm/directional/north, @@ -38848,6 +39353,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/primary/port) +"mXI" = ( +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/security/prison) "mXJ" = ( /obj/structure/chair{ dir = 4 @@ -38917,19 +39427,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/fore) -"mZe" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/clothing/under/misc/assistantformal, -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/shoes/winterboots, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/commons/locker) "mZh" = ( /obj/structure/rack, /obj/item/cane, @@ -38978,13 +39475,16 @@ /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"naC" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/storage) +"naA" = ( +/obj/machinery/holopad, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted, +/turf/open/floor/iron/white/corner{ + dir = 1 + }, +/area/medical/medbay/lobby) "naF" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment, @@ -38992,20 +39492,25 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/medical/virology) -"naJ" = ( -/obj/machinery/disposal/bin, -/obj/machinery/camera/directional/east{ - c_tag = "Garden" +"nbh" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" }, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge Access"; + req_access_txt = "19" }, -/obj/machinery/light/directional/east, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, /obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/service/hydroponics/garden) +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "bridge-right" + }, +/turf/open/floor/iron/dark, +/area/command/bridge) "nbj" = ( /obj/machinery/camera/directional/south{ c_tag = "Central Primary Hallway - Aft-Port Corner" @@ -39043,21 +39548,15 @@ /obj/machinery/portable_atmospherics/canister, /turf/open/floor/iron/dark, /area/engineering/atmospherics_engine) -"nbC" = ( -/obj/machinery/light/directional/east, -/obj/structure/table/reinforced, -/obj/item/storage/box/lights/mixed, -/obj/item/stack/sheet/iron{ - amount = 30 +"nbE" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 }, -/obj/item/radio{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/stack/cable_coil, -/obj/structure/sign/poster/random/directional/east, -/turf/open/floor/iron, -/area/commons/storage/primary) +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/white, +/area/science/mixing/launch) "nbL" = ( /obj/structure/table/glass, /obj/structure/cable, @@ -39082,6 +39581,18 @@ /obj/effect/spawner/random/structure/crate, /turf/open/floor/plating, /area/maintenance/starboard/lesser) +"nbX" = ( +/obj/machinery/disposal/bin{ + desc = "A pneumatic waste disposal unit. This one leads to the morgue."; + name = "corpse disposal" + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/iron/white, +/area/medical/surgery/theatre) "ncc" = ( /obj/effect/turf_decal/trimline/blue/filled/line, /obj/machinery/shower{ @@ -39100,6 +39611,17 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/engine, /area/engineering/supermatter/room) +"ncw" = ( +/obj/item/storage/medkit/regular{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/command/bridge) "ncD" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -39111,13 +39633,6 @@ /obj/machinery/newscaster/directional/east, /turf/open/floor/iron/white/corner, /area/hallway/secondary/entry) -"ncJ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/green/fourcorners, -/turf/open/floor/iron, -/area/hallway/primary/central) "ncN" = ( /obj/machinery/light/small/directional/west, /obj/machinery/sparker/directional/west{ @@ -39133,22 +39648,20 @@ /obj/machinery/duct, /turf/open/floor/iron/freezer, /area/commons/toilet/restrooms) -"ncV" = ( -/obj/machinery/button/door/directional/west{ - id = "transitlockdown"; - name = "Transit Tube Lockdown"; - pixel_y = -6; - req_access_txt = "19" +"ndb" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/door/window{ + name = "MiniSat Walkway Access" }, -/obj/machinery/button/door/directional/west{ - id = "Secure Storage"; - name = "Engineering Secure Storage"; - pixel_y = 6; - req_access_txt = "11" +/obj/machinery/camera/directional/east{ + c_tag = "MiniSat Exterior - Aft Port"; + network = list("minisat") + }, +/obj/structure/window/reinforced{ + dir = 8 }, -/obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/command/heads_quarters/ce) +/area/ai_monitored/aisat/exterior) "ndd" = ( /obj/item/clothing/head/fedora, /obj/structure/table/wood, @@ -39178,12 +39691,6 @@ /obj/structure/chair/stool/directional/west, /turf/open/floor/wood, /area/maintenance/port/aft) -"ndy" = ( -/obj/machinery/chem_master, -/obj/structure/noticeboard/directional/south, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, -/turf/open/floor/iron/white, -/area/medical/pharmacy) "ndG" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -39212,19 +39719,11 @@ }, /turf/open/floor/iron, /area/hallway/primary/central) -"nea" = ( -/obj/structure/table, -/obj/effect/turf_decal/bot, -/obj/item/storage/medkit/toxin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/book/manual/wiki/ordnance{ - pixel_x = 4; - pixel_y = 1 - }, -/turf/open/floor/iron/white, -/area/science/mixing) +"ndW" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/turf_decal/tile/brown/half/contrasted, +/turf/open/floor/iron, +/area/cargo/miningoffice) "nei" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -39248,21 +39747,6 @@ /obj/structure/cable/layer3, /turf/open/floor/iron/dark, /area/ai_monitored/aisat/exterior) -"neY" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/machinery/light/small/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "MiniSat Exterior - Port Aft"; - network = list("minisat") - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/ai_monitored/aisat/exterior) "neZ" = ( /obj/machinery/light/directional/north, /obj/machinery/restaurant_portal/restaurant, @@ -39277,12 +39761,19 @@ /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/port) -"nfw" = ( -/obj/structure/closet/wardrobe/pjs, +"nfq" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/effect/landmark/start/chemist, +/turf/open/floor/iron/white, +/area/medical/pharmacy) +"nfU" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover/closet, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/commons/dorms) +/area/engineering/storage/tech) "nfZ" = ( /obj/structure/sign/poster/contraband/missing_gloves, /turf/closed/wall, @@ -39310,12 +39801,6 @@ }, /turf/open/floor/iron/dark, /area/medical/break_room) -"ngg" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/storage) "ngk" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line, @@ -39333,12 +39818,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/central) -"ngq" = ( -/obj/structure/closet/wardrobe/grey, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron/dark, -/area/commons/locker) "ngt" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/firealarm/directional/south, @@ -39346,13 +39825,15 @@ /turf/open/floor/engine, /area/engineering/supermatter/room) "ngu" = ( -/obj/structure/closet{ - name = "Evidence Closet 1" +/obj/structure/chair{ + dir = 4; + name = "Prosecution" }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron/dark, -/area/security/brig) +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/security/courtroom) "ngE" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -39403,6 +39884,21 @@ /obj/machinery/duct, /turf/open/floor/iron/cafeteria, /area/service/kitchen) +"nhe" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/storage) "nht" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -39437,6 +39933,13 @@ }, /turf/open/floor/wood, /area/command/heads_quarters/hop) +"nih" = ( +/obj/structure/toilet/greyscale{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red/fourcorners, +/turf/open/floor/iron/white, +/area/security/prison) "nik" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -39459,13 +39962,14 @@ }, /turf/open/floor/iron, /area/hallway/primary/central) -"niy" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/effect/turf_decal/tile/green/fourcorners, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/iron/showroomfloor, -/area/maintenance/starboard/lesser) +"niE" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/smartfridge/organ, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "main_surgery" + }, +/turf/open/floor/iron/dark, +/area/medical/treatment_center) "niJ" = ( /obj/machinery/holopad/secure, /obj/structure/chair/wood{ @@ -39516,6 +40020,15 @@ }, /turf/open/floor/carpet, /area/command/bridge) +"njn" = ( +/obj/structure/chair{ + name = "Judge" + }, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/security/courtroom) "njp" = ( /obj/machinery/portable_atmospherics/canister/nitrous_oxide, /obj/effect/turf_decal/bot, @@ -39532,15 +40045,11 @@ /turf/open/floor/iron, /area/science/mixing) "njy" = ( -/obj/machinery/holopad, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted, -/turf/open/floor/iron/white/corner{ - dir = 1 - }, -/area/medical/medbay/lobby) +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/iron, +/area/science/mixing) "njH" = ( /obj/structure/chair/office{ dir = 4 @@ -39548,14 +40057,17 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/command/bridge) -"njP" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Chemistry South"; - network = list("ss13","medbay") +"njM" = ( +/obj/structure/closet{ + name = "Evidence Closet 5" }, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron/white, -/area/medical/chemistry) +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/security/brig) "njR" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -39591,6 +40103,18 @@ /obj/structure/cable, /turf/open/floor/iron, /area/commons/storage/primary) +"nkQ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/engineering/break_room) "nkS" = ( /obj/effect/turf_decal/delivery, /obj/machinery/door/firedoor, @@ -39606,12 +40130,6 @@ }, /turf/open/floor/iron, /area/science/xenobiology) -"nkU" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron/dark, -/area/commons/fitness/recreation) "nkV" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/white/line{ @@ -39619,6 +40137,11 @@ }, /turf/open/floor/iron, /area/security/prison) +"nkW" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/hallway/primary/central) "nld" = ( /obj/machinery/washing_machine, /obj/effect/turf_decal/tile/blue{ @@ -39651,6 +40174,31 @@ }, /turf/open/floor/carpet, /area/command/heads_quarters/captain/private) +"nmk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Evidence Storage"; + req_one_access_txt = "1;4" + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/security/brig) +"nmo" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/button/door/directional/east{ + id = "Prison Gate"; + name = "Prison Wing Lockdown"; + req_access_txt = "2" + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/security/brig) "nmE" = ( /obj/structure/rack, /obj/item/extinguisher, @@ -39683,27 +40231,6 @@ }, /turf/open/floor/iron/dark, /area/service/cafeteria) -"nnx" = ( -/obj/structure/cable, -/obj/machinery/duct, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster/random/directional/south, -/turf/open/floor/plating, -/area/hallway/secondary/service) -"nnI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Medbay Security Post"; - req_access_txt = "63" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron/dark, -/area/security/checkpoint/medical) "nnN" = ( /obj/structure/table, /obj/item/paper_bin{ @@ -39715,6 +40242,20 @@ /obj/machinery/bluespace_vendor/directional/east, /turf/open/floor/iron, /area/hallway/secondary/command) +"nnO" = ( +/obj/structure/table, +/obj/item/clothing/glasses/sunglasses{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/ears/earmuffs{ + pixel_y = 7 + }, +/obj/machinery/light/small/directional/south, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted, +/turf/open/floor/iron/dark, +/area/security/range) "nnS" = ( /obj/item/storage/box/deputy, /obj/structure/table, @@ -39724,18 +40265,6 @@ "nnT" = ( /turf/open/floor/plating/airless, /area/solars/starboard/fore) -"nnW" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/iv_drip, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/white, -/area/medical/treatment_center) -"nnX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrogen_output{ - dir = 1 - }, -/turf/open/floor/engine/n2, -/area/engineering/atmos) "nof" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -39759,22 +40288,68 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/wood, /area/commons/lounge) +"noY" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/eastright{ + name = "Pharmacy Desk"; + req_access_txt = "5; 69" + }, +/obj/machinery/door/window/eastright{ + dir = 8; + name = "Pharmacy Desk"; + req_access_txt = "5" + }, +/obj/item/reagent_containers/glass/bottle/morphine, +/obj/item/reagent_containers/glass/bottle/toxin{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = 8 + }, +/obj/item/reagent_containers/glass/bottle/multiver{ + pixel_x = -5 + }, +/obj/item/reagent_containers/syringe/epinephrine, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/turf/open/floor/iron/white, +/area/medical/pharmacy) +"npa" = ( +/obj/structure/table, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/machinery/requests_console/directional/west{ + department = "Ordnance Test Range"; + departmentType = 5; + name = "Test Range Requests Console" + }, +/obj/item/assembly/signaler{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/assembly/signaler{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/assembly/signaler{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/assembly/signaler{ + pixel_y = 8 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/mixing/launch) "npj" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 9 }, /turf/open/floor/iron, /area/security/office) -"npl" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Port to Filter" - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/engineering/atmos) "npp" = ( /obj/structure/table, /obj/item/stock_parts/subspace/analyzer, @@ -39785,6 +40360,23 @@ }, /turf/open/floor/iron/dark, /area/engineering/storage/tcomms) +"npv" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 12 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/medical/medbay/central) "npM" = ( /obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ dir = 4 @@ -39820,18 +40412,6 @@ /obj/machinery/atmospherics/pipe/smart/simple/purple/visible, /turf/open/floor/plating, /area/engineering/atmos) -"nqx" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/engineering/break_room) "nrc" = ( /obj/structure/flora/ausbushes/sunnybush, /obj/machinery/camera/directional/north{ @@ -39881,6 +40461,13 @@ "nrI" = ( /turf/open/floor/iron, /area/science/mixing) +"nrQ" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/storage) "nsj" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/manifold, /obj/structure/lattice, @@ -39943,14 +40530,6 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"nta" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/obj/effect/landmark/start/chemist, -/turf/open/floor/iron/white, -/area/medical/pharmacy) "ntb" = ( /obj/machinery/atmospherics/pipe/smart/simple/green/visible, /turf/open/floor/iron/dark, @@ -40046,12 +40625,6 @@ /obj/machinery/light_switch/directional/east, /turf/open/floor/iron/dark, /area/engineering/storage/tcomms) -"nuE" = ( -/obj/machinery/computer/security/telescreen/entertainment/directional/south, -/obj/machinery/suit_storage_unit/ce, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/command/heads_quarters/ce) "nuH" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/bot, @@ -40090,6 +40663,18 @@ "nuV" = ( /turf/closed/wall, /area/commons/storage/art) +"nuZ" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/door/airlock/medical/glass{ + name = "Paramedic Dispatch Room"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/medical/office) "nvi" = ( /obj/machinery/door/airlock/maintenance{ name = "Storage Room"; @@ -40150,14 +40735,6 @@ /obj/structure/cable, /turf/open/floor/carpet, /area/command/heads_quarters/hop) -"nwp" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/dark, -/area/command/heads_quarters/ce) "nwr" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -40165,6 +40742,19 @@ /obj/machinery/duct, /turf/open/floor/iron/cafeteria, /area/service/kitchen) +"nwN" = ( +/obj/structure/sign/poster/contraband/random/directional/east, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"nxd" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/engineering/break_room) "nxf" = ( /obj/effect/spawner/random/structure/grille, /turf/open/floor/plating, @@ -40187,21 +40777,9 @@ }, /turf/open/floor/engine, /area/science/xenobiology) -"nxG" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/service/chapel/funeral) "nxX" = ( /turf/closed/wall/r_wall, /area/command/heads_quarters/hop) -"nyc" = ( -/obj/structure/table, -/obj/effect/turf_decal/bot, -/obj/item/storage/toolbox/mechanical, -/obj/item/pipe_dispenser, -/turf/open/floor/iron/white, -/area/science/mixing) "nyf" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -40210,16 +40788,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"nyl" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Aft Primary Hallway - Fore" - }, -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/aft) "nyo" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -40229,6 +40797,11 @@ }, /turf/open/floor/iron, /area/maintenance/starboard/greater) +"nyC" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted, +/turf/open/floor/iron/white, +/area/medical/surgery/aft) "nyG" = ( /obj/structure/reagent_dispensers/wall/peppertank/directional/east, /obj/machinery/recharger{ @@ -40260,16 +40833,34 @@ }, /turf/open/floor/iron, /area/hallway/primary/central) -"nzA" = ( -/obj/structure/chair/office/light{ - dir = 8 +"nzi" = ( +/obj/structure/table, +/obj/item/stack/package_wrap{ + pixel_x = -8; + pixel_y = -3 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ +/obj/item/paperslip{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/tile/brown/half/contrasted, +/turf/open/floor/iron, +/area/cargo/sorting) +"nzJ" = ( +/obj/structure/sign/poster/official/anniversary_vintage_reprint{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ dir = 1 }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/mixing/launch) +/turf/open/floor/iron/white, +/area/medical/chemistry) "nzL" = ( /obj/structure/sink/kitchen{ desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; @@ -40280,20 +40871,6 @@ /obj/structure/mirror/directional/west, /turf/open/floor/wood, /area/maintenance/port/aft) -"nzX" = ( -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/vault{ - name = "Vault"; - req_access_txt = "53" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/navbeacon/wayfinding, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/ai_monitored/command/nuke_storage) "nAm" = ( /obj/machinery/door/airlock/command{ name = "Captain's Quarters"; @@ -40304,23 +40881,22 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/carpet, /area/command/heads_quarters/captain/private) -"nAs" = ( -/obj/machinery/modular_computer/console/preset/id, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/requests_console/directional/north{ - announcementConsole = 1; - department = "Chief Engineer's Desk"; - departmentType = 4; - name = "Chief Engineer's Requests Console" - }, -/turf/open/floor/iron/dark, -/area/command/heads_quarters/ce) "nAu" = ( /obj/effect/spawner/random/structure/grille, /turf/open/floor/plating/airless{ icon_state = "panelscorched" }, /area/space/nearstation) +"nAJ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 10 + }, +/turf/open/floor/iron/dark/corner, +/area/engineering/atmos/pumproom) "nAK" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -40340,6 +40916,12 @@ /obj/machinery/firealarm/directional/east, /turf/open/floor/iron/grimy, /area/security/interrogation) +"nAO" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/iron, +/area/service/hydroponics/garden) "nBr" = ( /obj/structure/window/reinforced{ dir = 1 @@ -40349,16 +40931,6 @@ }, /turf/open/floor/iron/dark, /area/commons/fitness/recreation) -"nBv" = ( -/obj/machinery/duct, -/obj/machinery/door/airlock/medical{ - name = "Primary Surgical Theatre"; - req_access_txt = "45" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/medical/treatment_center) "nBA" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating{ @@ -40394,18 +40966,6 @@ }, /turf/open/floor/plating, /area/medical/chemistry) -"nCl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/starboard) "nCo" = ( /obj/structure/bed, /obj/item/bedsheet/red, @@ -40449,21 +41009,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/primary/aft) -"nDy" = ( -/obj/item/cigbutt, -/obj/structure/table/reinforced, -/obj/item/storage/medkit/fire{ - pixel_y = -4 - }, -/obj/item/paper{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/engineering/break_room) "nDM" = ( /obj/structure/fireaxecabinet/directional/south, /obj/item/paper_bin{ @@ -40497,13 +41042,6 @@ /obj/effect/spawner/random/clothing/costume, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"nEt" = ( -/obj/machinery/computer/secure_data, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/security/checkpoint/engineering) "nED" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" @@ -40515,16 +41053,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"nEF" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/medical/virology) "nER" = ( /obj/structure/chair/wood/wings{ dir = 8 @@ -40569,6 +41097,17 @@ }, /turf/open/floor/iron, /area/engineering/atmos/storage/gas) +"nFL" = ( +/obj/machinery/camera/directional/north, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/dark, +/area/ai_monitored/aisat/exterior) +"nFN" = ( +/obj/structure/closet/lasertag/blue, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/iron/dark, +/area/commons/fitness/recreation) "nFR" = ( /obj/machinery/vending/boozeomat, /obj/structure/sign/picture_frame/portrait/bar{ @@ -40581,6 +41120,22 @@ /obj/item/radio/intercom/directional/west, /turf/open/floor/iron, /area/service/bar) +"nFW" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/command/heads_quarters/ce) +"nGm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/genetics) "nGv" = ( /obj/machinery/power/terminal{ dir = 1 @@ -40592,6 +41147,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/ai) +"nGw" = ( +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/machinery/door/airlock/command{ + name = "Research Director's Office"; + req_access_txt = "30" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/iron, +/area/command/heads_quarters/rd) "nGx" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/red{ @@ -40621,14 +41186,6 @@ /obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/iron, /area/service/hydroponics) -"nGH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/robotics/lab) "nGN" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -40639,6 +41196,17 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/department/science/central) +"nGQ" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/iron/dark, +/area/command/heads_quarters/ce) "nGU" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -40680,6 +41248,16 @@ /obj/machinery/light/directional/east, /turf/open/floor/grass, /area/medical/virology) +"nHN" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/depsec/engineering, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/security/checkpoint/engineering) "nHP" = ( /obj/structure/cable, /turf/open/floor/plating{ @@ -40711,17 +41289,70 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/grimy, /area/service/chapel/office) -"nIH" = ( -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/security/prison) +"nIF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Prison Wing"; + req_access_txt = "1" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "perma-entrance" + }, +/obj/effect/turf_decal/tile/red/half/contrasted, +/turf/open/floor/iron, +/area/security/brig) +"nIJ" = ( +/obj/structure/closet/crate, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/machinery/light_switch/directional/north, +/obj/effect/spawner/random/engineering/flashlight, +/obj/effect/spawner/random/engineering/flashlight, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/cargo/miningoffice) +"nIK" = ( +/obj/machinery/computer/med_data, +/obj/structure/cable, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/command/bridge) "nIN" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 9 }, /turf/open/floor/iron/white, /area/medical/treatment_center) +"nIP" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/robotics/lab) +"nIQ" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/iron/dark, +/area/command/teleporter) "nJi" = ( /obj/effect/turf_decal/tile/red{ dir = 8 @@ -40750,6 +41381,22 @@ }, /turf/open/floor/iron, /area/medical/medbay/lobby) +"nJo" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/item/radio/intercom/directional/south, +/obj/item/stack/sheet/glass, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/signaler, +/obj/item/assembly/timer{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/purple/half/contrasted, +/turf/open/floor/iron/white, +/area/science/lobby) "nJu" = ( /obj/structure/disposalpipe/segment{ dir = 6 @@ -40759,30 +41406,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/maintenance/port) -"nJM" = ( -/obj/item/reagent_containers/spray/plantbgone{ - pixel_y = 3 - }, -/obj/item/reagent_containers/spray/plantbgone{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/reagent_containers/spray/plantbgone{ - pixel_x = 13; - pixel_y = 5 - }, -/obj/item/watertank, -/obj/item/grenade/chem_grenade/antiweed, -/obj/structure/table/glass, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/iron, -/area/service/hydroponics) "nJN" = ( /obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, @@ -40810,18 +41433,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/starboard) -"nKj" = ( -/obj/structure/table/wood, -/obj/item/radio/intercom/directional/east, -/obj/item/clothing/glasses/regular/hipster{ - name = "Hipster Glasses" - }, -/obj/machinery/light/small/directional/south, -/obj/effect/landmark/start/hangover, -/obj/effect/spawner/random/entertainment/musical_instrument, -/obj/structure/sign/poster/random/directional/south, -/turf/open/floor/wood, -/area/service/theater) "nKl" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -40837,6 +41448,21 @@ /obj/structure/cable, /turf/open/floor/iron, /area/hallway/secondary/service) +"nKu" = ( +/obj/item/cigbutt, +/obj/structure/table/reinforced, +/obj/item/storage/medkit/fire{ + pixel_y = -4 + }, +/obj/item/paper{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/engineering/break_room) "nKY" = ( /obj/effect/turf_decal/tile/neutral, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -40868,68 +41494,6 @@ /obj/effect/landmark/start/cargo_technician, /turf/open/floor/iron, /area/cargo/sorting) -"nLh" = ( -/obj/structure/table, -/obj/item/reagent_containers/glass/bottle/morphine{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/item/reagent_containers/glass/bottle/chloralhydrate, -/obj/item/reagent_containers/glass/bottle/toxin{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/reagent_containers/glass/bottle/morphine{ - pixel_x = 5; - pixel_y = 1 - }, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/glass/bottle/facid{ - name = "fluorosulfuric acid bottle"; - pixel_x = -3; - pixel_y = 6 - }, -/obj/item/reagent_containers/syringe{ - pixel_y = 5 - }, -/obj/item/reagent_containers/dropper, -/obj/machinery/airalarm/directional/west, -/obj/machinery/button/ignition{ - id = "executionburn"; - name = "Justice Ignition Switch"; - pixel_x = -25; - pixel_y = 36 - }, -/obj/item/assembly/signaler{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/machinery/button/flasher{ - id = "justiceflash"; - name = "Justice Flash Control"; - pixel_x = -36; - pixel_y = 36; - req_access_txt = "1" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/button/door/directional/west{ - id = "executionfireblast"; - name = "Justice Area Lockdown"; - pixel_y = 24; - req_access_txt = "2" - }, -/obj/machinery/button/door/directional/west{ - id = "SecJusticeChamber"; - name = "Justice Vent Control"; - pixel_x = -36; - pixel_y = 24; - req_access_txt = "3" - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/security/execution/education) "nLu" = ( /obj/structure/closet/secure_closet/chief_medical, /obj/effect/turf_decal/trimline/blue/filled/line{ @@ -40956,11 +41520,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/primary/central) -"nMd" = ( -/obj/machinery/medical_kiosk, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/white, -/area/medical/medbay/central) +"nMs" = ( +/obj/effect/spawner/random/maintenance, +/obj/structure/closet, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) "nMw" = ( /obj/machinery/light/no_nightlight/directional/south, /turf/open/floor/iron/dark, @@ -41008,16 +41575,19 @@ /obj/structure/plaque/static_plaque/golden/commission/meta, /turf/open/floor/iron, /area/hallway/secondary/command) -"nMY" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ +"nNc" = ( +/obj/structure/table/glass, +/obj/machinery/cell_charger, +/obj/item/stack/cable_coil, +/obj/item/assembly/igniter, +/obj/item/stock_parts/cell, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/genetics) +/turf/open/floor/iron/white, +/area/science/lobby) "nNh" = ( /obj/structure/extinguisher_cabinet/directional/south, /obj/effect/turf_decal/tile/yellow{ @@ -41033,22 +41603,6 @@ /obj/effect/turf_decal/tile/blue, /turf/open/floor/iron/white, /area/command/heads_quarters/cmo) -"nNk" = ( -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/machinery/door/airlock/research{ - name = "Ordnance Lab"; - req_access_txt = "8" - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rdordnance"; - name = "Ordnance Lab Shutters" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "sci-toxins-passthrough" - }, -/turf/open/floor/iron/white, -/area/science/mixing) "nNu" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 1 @@ -41091,36 +41645,6 @@ "nOc" = ( /turf/closed/wall/r_wall, /area/maintenance/starboard/aft) -"nOs" = ( -/obj/machinery/computer/monitor{ - name = "Bridge Power Monitoring Console" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/command/bridge) -"nPe" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "N2O to Pure" - }, -/turf/open/floor/iron/white/corner, -/area/engineering/atmos) "nPg" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -41137,29 +41661,6 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/wood, /area/commons/dorms) -"nPI" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/closet/crate/secure{ - desc = "A secure crate containing various materials for building a customised test-site."; - name = "Test Site Materials Crate"; - req_access_txt = "8" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/mixing/launch) -"nPM" = ( -/obj/machinery/newscaster/directional/north, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/hallway/primary/central) "nPQ" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -41248,6 +41749,18 @@ /obj/structure/cable, /turf/open/floor/iron, /area/hallway/secondary/entry) +"nRN" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/starboard) "nRQ" = ( /obj/structure/window/reinforced{ dir = 1 @@ -41300,28 +41813,6 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/lesser) -"nSW" = ( -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/machinery/light/directional/west, -/obj/structure/table/glass, -/obj/item/storage/secure/safe/caps_spare/directional/west, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/command/bridge) -"nTf" = ( -/obj/machinery/light/small/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "MiniSat Exterior - Fore Port"; - network = list("minisat") - }, -/obj/structure/window/reinforced, -/turf/open/floor/iron/dark, -/area/ai_monitored/aisat/exterior) "nTI" = ( /turf/open/floor/wood, /area/service/theater) @@ -41344,13 +41835,15 @@ /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/solars/port/fore) -"nTS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"nUa" = ( +/obj/machinery/modular_computer/console/preset/cargochat/cargo{ + dir = 8 }, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron/white, -/area/medical/medbay/lobby) +/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/cargo/sorting) "nUy" = ( /obj/structure/sign/warning/electricshock{ pixel_y = 32 @@ -41377,12 +41870,6 @@ /obj/machinery/duct, /turf/open/floor/iron/white, /area/medical/treatment_center) -"nUP" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/iron, -/area/science/mixing) "nUU" = ( /obj/machinery/light/small/directional/south, /turf/open/floor/engine/n2, @@ -41417,6 +41904,12 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/maintenance/port/aft) +"nWg" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/medical/pharmacy) "nWn" = ( /obj/structure/cable, /obj/effect/landmark/start/hangover, @@ -41439,6 +41932,18 @@ }, /turf/open/space/basic, /area/space) +"nWY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/starboard) "nXg" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -41455,6 +41960,12 @@ }, /turf/open/floor/wood, /area/commons/vacant_room/office) +"nXC" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted, +/turf/open/floor/iron/white, +/area/medical/medbay/central) "nXE" = ( /obj/machinery/button/door/incinerator_vent_ordmix{ pixel_x = 8; @@ -41521,6 +42032,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/engine, /area/engineering/supermatter/room) +"nYl" = ( +/obj/effect/turf_decal/bot_white/right, +/obj/machinery/ore_silo, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ai_monitored/command/nuke_storage) "nYo" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 @@ -41532,14 +42049,6 @@ }, /turf/open/floor/iron/white, /area/security/prison) -"nYq" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/command/bridge) "nYA" = ( /obj/machinery/door/airlock/maintenance{ req_one_access_txt = "12;47" @@ -41556,10 +42065,6 @@ /obj/structure/grille/broken, /turf/open/space/basic, /area/space/nearstation) -"nYU" = ( -/obj/item/food/snowcones/clown, -/turf/open/floor/fake_snow, -/area/maintenance/port/aft) "nYV" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 8 @@ -41592,6 +42097,16 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/white, /area/medical/medbay/central) +"nZl" = ( +/obj/machinery/light/directional/west, +/obj/machinery/chem_dispenser{ + layer = 2.7 + }, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/medical/chemistry) "nZp" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -41615,6 +42130,21 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/greater) +"nZO" = ( +/obj/structure/table, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/machinery/computer/med_data/laptop{ + dir = 8; + pixel_y = 1; + req_one_access = null; + req_one_access_txt = "4;5;9" + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/genetics) "nZT" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -41625,30 +42155,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/security/brig) -"oag" = ( -/obj/machinery/door/airlock/hatch{ - name = "Telecomms Control Room"; - req_one_access_txt = "19; 61" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/navbeacon/wayfinding, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark, -/area/tcommsat/computer) -"oai" = ( -/obj/structure/closet/toolcloset, -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/commons/storage/tools) "oap" = ( /obj/structure/table, /obj/item/storage/crayons, @@ -41678,11 +42184,29 @@ /obj/effect/spawner/random/trash/janitor_supplies, /turf/open/floor/plating, /area/maintenance/port/fore) +"oaL" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/visible{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos/pumproom) "oaS" = ( /obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/port/fore) +"oaZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/security/office) "obi" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -41703,10 +42227,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/maintenance/department/science/xenobiology) -"obt" = ( -/obj/effect/landmark/start/scientist, -/turf/open/floor/iron/white, -/area/science/mixing/launch) "obA" = ( /obj/structure/table/optable{ desc = "A cold, hard place for your final rest."; @@ -41767,20 +42287,6 @@ }, /turf/open/floor/plating, /area/construction/mining/aux_base) -"obY" = ( -/obj/machinery/light/small/directional/east, -/obj/machinery/door/window{ - name = "MiniSat Walkway Access" - }, -/obj/machinery/camera/directional/east{ - c_tag = "MiniSat Exterior - Aft Port"; - network = list("minisat") - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/ai_monitored/aisat/exterior) "oci" = ( /obj/structure/bed, /obj/item/clothing/suit/straight_jacket, @@ -41843,12 +42349,16 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron, /area/engineering/main) -"odB" = ( -/obj/structure/closet/emcloset, +"odE" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover/closet, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark, /area/commons/fitness/recreation) +"odF" = ( +/obj/machinery/air_sensor/carbon_tank, +/turf/open/floor/engine/co2, +/area/engineering/atmos) "odI" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ @@ -41932,13 +42442,6 @@ /obj/item/flashlight/lamp, /turf/open/floor/iron/grimy, /area/tcommsat/computer) -"oei" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/medical/medbay/central) "oeo" = ( /obj/machinery/light/directional/north, /obj/effect/turf_decal/tile/neutral{ @@ -41950,26 +42453,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/hallway/primary/port) -"oep" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Air to Pure" - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/iron/cafeteria, -/area/engineering/atmos) "oet" = ( /obj/effect/turf_decal/siding/wood, /obj/effect/decal/cleanable/dirt, @@ -42006,18 +42489,19 @@ }, /turf/open/floor/iron/freezer, /area/security/prison) -"oeQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/robotics/lab) "ofl" = ( /obj/structure/table/wood, /obj/item/storage/photo_album/library, /turf/open/floor/engine/cult, /area/service/library) -"ofr" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, +"ofp" = ( +/obj/item/radio/intercom/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, /turf/open/floor/iron/white, /area/medical/chemistry) "ofy" = ( @@ -42069,63 +42553,11 @@ }, /turf/open/floor/iron, /area/engineering/atmospherics_engine) -"ogg" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/commons/storage/tools) -"ogF" = ( -/obj/machinery/computer/crew{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen/cmo{ - dir = 4; - pixel_x = -30 - }, -/obj/machinery/keycard_auth/directional/south{ - pixel_x = 6 - }, -/obj/machinery/button/door/directional/south{ - id = "cmoprivacy"; - name = "CMO Privacy Shutters"; - pixel_x = -8; - req_access_txt = "40" - }, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/command/heads_quarters/cmo) -"ogM" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/engineering/atmos/pumproom) "ogQ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/secondary/entry) -"ogW" = ( -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Air to Distro" - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/engineering/atmos/pumproom) "ogX" = ( /obj/machinery/light_switch/directional/west, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -42219,6 +42651,13 @@ }, /turf/open/floor/iron, /area/commons/locker) +"ojc" = ( +/obj/structure/filingcabinet, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/security/checkpoint/supply) "ojh" = ( /obj/effect/spawner/random/vending/snackvend, /obj/machinery/newscaster/directional/west, @@ -42229,10 +42668,6 @@ /obj/effect/spawner/random/medical/patient_stretcher, /turf/open/floor/plating, /area/maintenance/starboard/lesser) -"ojI" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/command/heads_quarters/ce) "ojK" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment{ @@ -42266,13 +42701,6 @@ }, /turf/open/floor/iron/white, /area/science/research) -"okx" = ( -/obj/machinery/atmospherics/components/binary/thermomachine/freezer{ - dir = 8; - initialize_directions = 8 - }, -/turf/open/floor/iron, -/area/engineering/atmos/pumproom) "okA" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -42288,6 +42716,20 @@ dir = 1 }, /area/engineering/atmos/storage/gas) +"okO" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Garden" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron, +/area/service/hydroponics/garden) "okX" = ( /obj/machinery/door/airlock/external, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ @@ -42307,12 +42749,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/ai_monitored/aisat/exterior) -"ols" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/tier_1, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/storage) "olN" = ( /obj/item/radio/intercom/directional/west, /obj/effect/turf_decal/tile/yellow{ @@ -42352,19 +42788,6 @@ }, /turf/open/floor/iron/dark, /area/security/prison/safe) -"omk" = ( -/obj/machinery/airalarm/directional/north, -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/computer/cargo{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/cargo/sorting) "omo" = ( /obj/machinery/newscaster/directional/west, /turf/open/floor/wood, @@ -42380,45 +42803,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/engineering/supermatter/room) -"omw" = ( -/obj/structure/rack, -/obj/item/aicard, -/obj/item/radio/off, -/obj/machinery/computer/security/telescreen/minisat{ - dir = 1; - pixel_y = -29 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, +"omF" = ( +/obj/machinery/teleport/station, +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/command/bridge) -"omB" = ( -/obj/machinery/modular_computer/console/preset/id, -/obj/machinery/light/directional/north, -/obj/machinery/requests_console/directional/north{ - department = "Security"; - departmentType = 3; - name = "Security Requests Console" - }, -/obj/machinery/camera/directional/north{ - c_tag = "Customs Checkpoint" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/security/checkpoint/customs) -"omN" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/turf_decal/box, -/turf/open/floor/iron/white, -/area/science/mixing/launch) +/area/ai_monitored/turret_protected/aisat/foyer) "omY" = ( /obj/machinery/light_switch/directional/south, /obj/structure/table/wood, @@ -42430,6 +42820,16 @@ /obj/item/reagent_containers/food/drinks/flask/gold, /turf/open/floor/carpet, /area/command/heads_quarters/captain/private) +"onc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Ordnance Gas Storage Maintenance"; + req_access_txt = "8" + }, +/turf/open/floor/iron/dark, +/area/maintenance/starboard/aft) "ong" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -42449,34 +42849,11 @@ "onz" = ( /turf/open/floor/plating, /area/science/mixing/launch) -"onA" = ( -/obj/machinery/status_display/evac/directional/north, -/obj/item/folder/yellow{ - pixel_y = 4 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Bridge - Central" - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/command/bridge) "onC" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/spawner/random/structure/grille, /turf/open/floor/plating, /area/maintenance/port) -"onL" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/medical/pharmacy) "onZ" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -42513,15 +42890,17 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/starboard/fore) +"ooE" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/effect/turf_decal/tile/green/fourcorners, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/iron/showroomfloor, +/area/maintenance/starboard/lesser) "ooO" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, /turf/closed/wall/r_wall, /area/science/mixing/chamber) -"ooR" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/keycard_auth/directional/west, -/turf/open/floor/iron/dark, -/area/command/heads_quarters/ce) "ooS" = ( /obj/machinery/light/directional/north, /obj/structure/chair/sofa/corp/right, @@ -42541,14 +42920,6 @@ dir = 4 }, /area/service/chapel/funeral) -"opb" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/holopad, -/turf/open/floor/iron, -/area/science/mixing) "opc" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -42558,6 +42929,37 @@ }, /turf/open/floor/iron, /area/security/range) +"opi" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = 8; + pixel_y = 1 + }, +/obj/item/paper_bin{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/paper_bin{ + pixel_x = 8; + pixel_y = 11 + }, +/obj/item/folder/yellow{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/folder/yellow{ + pixel_x = -9; + pixel_y = 1 + }, +/obj/item/paper{ + pixel_x = -5 + }, +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/cargo/storage) "opp" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -42572,6 +42974,14 @@ }, /turf/open/floor/plating/airless, /area/space/nearstation) +"opx" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/shower{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/iron/white, +/area/medical/surgery/theatre) "opy" = ( /obj/effect/turf_decal/delivery, /obj/machinery/door/window/southleft{ @@ -42610,16 +43020,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, /area/service/library) -"opV" = ( -/obj/machinery/firealarm/directional/west, -/obj/structure/table, -/obj/item/folder, -/obj/item/storage/medkit/regular, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/commons/locker) "oqa" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -42648,45 +43048,33 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) -"oqT" = ( -/obj/structure/table, -/obj/item/storage/box/evidence{ - pixel_x = 9; - pixel_y = 8 - }, -/obj/item/hand_labeler{ - pixel_x = -8; - pixel_y = 10 - }, -/obj/item/storage/box/evidence{ - pixel_x = 9; - pixel_y = 8 - }, -/obj/item/storage/box/evidence{ - pixel_x = 9; - pixel_y = 8 - }, -/obj/item/storage/box/prisoner{ - pixel_x = 9 - }, -/obj/machinery/recharger{ - pixel_x = -5; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ +"oqY" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, /turf/open/floor/iron/dark, -/area/security/brig) +/area/engineering/storage/tech) "oro" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/effect/turf_decal/tile/purple/fourcorners, /turf/open/floor/iron, -/area/construction/mining/aux_base) +/area/hallway/primary/aft) +"orI" = ( +/obj/machinery/computer/monitor{ + name = "Bridge Power Monitoring Console" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/command/bridge) "orL" = ( /obj/machinery/biogenerator, /obj/effect/decal/cleanable/dirt, @@ -42695,6 +43083,12 @@ }, /turf/open/floor/iron, /area/security/prison) +"orM" = ( +/obj/structure/closet/lasertag/red, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/iron/dark, +/area/commons/fitness/recreation) "orT" = ( /obj/structure/lattice, /obj/structure/disposalpipe/segment, @@ -42709,6 +43103,14 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/aisat/exterior) +"orW" = ( +/obj/structure/closet/secure_closet/evidence, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/security/brig) "orX" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/delivery, @@ -42755,6 +43157,12 @@ /obj/effect/spawner/random/maintenance/two, /turf/open/floor/plating, /area/maintenance/starboard/fore) +"otk" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/engineering/break_room) "otq" = ( /obj/structure/closet/emcloset, /obj/structure/sign/warning/vacuum/external{ @@ -42762,6 +43170,10 @@ }, /turf/open/floor/plating, /area/maintenance/port) +"ots" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/turf/closed/wall, +/area/engineering/atmos/pumproom) "otK" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/brigdoor{ @@ -42780,11 +43192,29 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/ai_monitored/security/armory) +"oug" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Storage"; + req_access_txt = "5" + }, +/obj/machinery/duct, +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/iron/white, +/area/medical/storage) "out" = ( /obj/structure/lattice, /obj/item/reagent_containers/food/drinks/bottle/goldschlager, /turf/open/space/basic, /area/space/nearstation) +"oux" = ( +/obj/structure/table/wood, +/obj/item/gavelblock, +/obj/item/gavelhammer, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/security/courtroom) "ouJ" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -42885,6 +43315,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/primary/port) +"owV" = ( +/obj/machinery/power/shieldwallgen, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/command/teleporter) "oxa" = ( /obj/effect/decal/cleanable/oil, /turf/open/floor/engine, @@ -42930,6 +43370,16 @@ /obj/item/storage/belt/utility, /turf/open/floor/iron, /area/engineering/main) +"oxB" = ( +/obj/machinery/gulag_teleporter, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/security/brig) "oxO" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -42956,19 +43406,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/science/research) -"oyJ" = ( -/obj/item/radio/intercom/directional/west{ - pixel_y = -10 - }, -/obj/item/kirbyplants/random, -/obj/machinery/light_switch/directional/west{ - pixel_y = 6 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/engineering/break_room) "oyK" = ( /obj/effect/landmark/blobstart, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -43023,18 +43460,17 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood, /area/commons/lounge) -"ozc" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/medical/medbay/lobby) +"ozk" = ( +/obj/structure/window/reinforced, +/obj/structure/table, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/command/teleporter) "ozo" = ( /turf/closed/wall, /area/cargo/qm) @@ -43046,37 +43482,25 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/cargo/storage) -"ozy" = ( -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/obj/effect/spawner/random/maintenance, -/obj/item/storage/belt/utility, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, +"ozv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/yellow/half/contrasted, /turf/open/floor/iron, /area/engineering/break_room) -"ozG" = ( -/obj/structure/table, -/obj/item/hand_labeler{ - pixel_y = 11 +"ozI" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 }, -/obj/item/stack/package_wrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/stack/package_wrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/hand_labeler_refill{ - pixel_x = -8; - pixel_y = 3 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 1 +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Mix Outlet Pump" }, +/obj/effect/turf_decal/tile/brown/fourcorners, /turf/open/floor/iron, -/area/cargo/sorting) +/area/engineering/atmos) "ozJ" = ( /obj/machinery/door/airlock/hatch{ name = "Telecomms Server Room" @@ -43088,6 +43512,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/tcommsat/server) +"ozN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/hallway/secondary/entry) "ozV" = ( /obj/structure/sign/directions/medical{ dir = 8; @@ -43106,16 +43539,6 @@ }, /turf/open/floor/iron, /area/engineering/main) -"oAc" = ( -/obj/item/kirbyplants/random, -/obj/machinery/firealarm/directional/west{ - pixel_y = -9 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/science/cytology) "oAe" = ( /obj/structure/fluff/broken_flooring{ dir = 4; @@ -43123,21 +43546,6 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"oAu" = ( -/obj/structure/table, -/obj/effect/turf_decal/bot, -/obj/item/raw_anomaly_core/random{ - pixel_x = -5; - pixel_y = 7 - }, -/obj/item/raw_anomaly_core/random{ - pixel_x = 7; - pixel_y = 9 - }, -/obj/item/raw_anomaly_core/random, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/mixing/launch) "oAy" = ( /obj/structure/table, /obj/item/analyzer, @@ -43145,10 +43553,6 @@ /obj/machinery/camera/autoname/directional/south, /turf/open/floor/iron/dark, /area/engineering/storage/tech) -"oAA" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) "oAB" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -43156,6 +43560,16 @@ }, /turf/open/floor/plating, /area/medical/treatment_center) +"oAC" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "executionfireblast" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/security/execution/education) "oAL" = ( /obj/machinery/hydroponics/soil, /obj/item/shovel/spade, @@ -43183,19 +43597,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/security/brig) -"oBN" = ( -/obj/machinery/door/window{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Theater Stage" - }, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/wood, -/area/service/theater) "oBR" = ( /obj/machinery/power/emitter/welded{ dir = 1 @@ -43270,12 +43671,6 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, /area/command/heads_quarters/ce) -"oDz" = ( -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/command/bridge) "oDE" = ( /obj/machinery/power/terminal, /obj/structure/cable, @@ -43354,6 +43749,13 @@ /obj/structure/closet/crate, /turf/open/floor/plating/airless, /area/space/nearstation) +"oES" = ( +/obj/machinery/iv_drip, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/medical/virology) "oEW" = ( /obj/machinery/door/airlock/mining{ name = "Mining Office"; @@ -43383,19 +43785,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/security/office) -"oFn" = ( +"oFk" = ( /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/chair{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red/half/contrasted{ +/obj/effect/turf_decal/tile/yellow/half/contrasted{ dir = 8 }, /turf/open/floor/iron, -/area/security/office) +/area/engineering/break_room) "oFo" = ( /obj/effect/landmark/start/hangover, /turf/open/floor/wood, @@ -43431,13 +43830,6 @@ /obj/machinery/light/directional/west, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai) -"oFF" = ( -/obj/machinery/light/small/broken/directional/west, -/obj/structure/table, -/obj/item/clothing/suit/cyborg_suit, -/obj/item/clothing/mask/gas/cyborg, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) "oFG" = ( /obj/machinery/camera/directional/north, /obj/item/solar_assembly, @@ -43497,16 +43889,40 @@ icon_state = "platingdmg1" }, /area/maintenance/fore/lesser) -"oGD" = ( -/obj/effect/spawner/random/entertainment/arcade, +"oGM" = ( +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/storage/box/lights/mixed, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron, +/area/commons/storage/tools) +"oGN" = ( +/obj/effect/landmark/start/cyborg, +/obj/machinery/light/small/directional/east, +/obj/machinery/camera/directional/north{ + c_tag = "AI Upload Foyer"; + network = list("aiupload") + }, +/obj/machinery/airalarm/directional/north, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, /turf/open/floor/iron/dark, -/area/commons/fitness/recreation) +/area/ai_monitored/turret_protected/ai_upload_foyer) "oGS" = ( /obj/machinery/plate_press, /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/security/prison) +"oHd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/security/execution/education) "oHe" = ( /obj/machinery/door/airlock/external{ name = "Mining Dock Airlock" @@ -43550,13 +43966,6 @@ /obj/item/radio/intercom/directional/east, /turf/open/floor/iron/white, /area/medical/medbay/central) -"oHH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/medical/pharmacy) "oId" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, @@ -43568,6 +43977,13 @@ dir = 8 }, /area/engineering/atmospherics_engine) +"oIu" = ( +/obj/structure/table, +/obj/effect/turf_decal/bot, +/obj/item/storage/toolbox/mechanical, +/obj/item/pipe_dispenser, +/turf/open/floor/iron/white, +/area/science/mixing) "oII" = ( /obj/effect/turf_decal/siding/white{ dir = 4 @@ -43631,29 +44047,11 @@ }, /turf/open/floor/iron/dark, /area/maintenance/fore/lesser) -"oJZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/duct, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/iron, -/area/hallway/secondary/service) "oKe" = ( /turf/open/floor/plating/airless{ icon_state = "platingdmg2" }, /area/solars/port/fore) -"oKn" = ( -/obj/structure/window/reinforced, -/obj/machinery/computer/atmos_control/tank/mix_tank{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green/half/contrasted, -/turf/open/floor/iron, -/area/engineering/atmos) "oKF" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible, /obj/effect/spawner/random/trash/janitor_supplies, @@ -43664,6 +44062,13 @@ dir = 1 }, /area/engineering/atmos) +"oKM" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/security/lockers) "oLe" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -43709,6 +44114,15 @@ }, /turf/open/floor/iron, /area/hallway/primary/port) +"oMw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/engineering/break_room) "oMC" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -43750,6 +44164,14 @@ }, /turf/open/floor/iron/dark, /area/medical/break_room) +"oMX" = ( +/obj/structure/table/glass, +/obj/item/clothing/gloves/color/latex, +/obj/item/surgical_drapes, +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/iron/white, +/area/medical/surgery/theatre) "oNc" = ( /obj/structure/table/wood, /obj/item/storage/secure/safe/directional/east, @@ -43859,11 +44281,6 @@ dir = 1 }, /area/engineering/atmos) -"oOZ" = ( -/obj/machinery/nuclearbomb/selfdestruct, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ai_monitored/command/nuke_storage) "oPi" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -43879,6 +44296,21 @@ }, /turf/open/floor/grass, /area/service/hydroponics/garden) +"oQc" = ( +/obj/machinery/computer/security/telescreen{ + desc = "Used for the Auxiliary Mining Base."; + dir = 1; + name = "Auxiliary Base Monitor"; + network = list("auxbase"); + pixel_y = -28 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron, +/area/construction/mining/aux_base) "oQi" = ( /obj/item/radio/intercom/directional/west, /obj/effect/turf_decal/tile/neutral{ @@ -43889,12 +44321,33 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/hallway/primary/aft) +"oQl" = ( +/obj/machinery/door/window/brigdoor{ + name = "Command Desk"; + req_access_txt = "19" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue/half/contrasted, +/turf/open/floor/iron/dark, +/area/command/bridge) "oQr" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 }, /turf/open/floor/iron, /area/commons/locker) +"oQU" = ( +/obj/structure/table, +/obj/item/storage/medkit/regular, +/obj/item/reagent_containers/glass/bottle/epinephrine, +/obj/item/reagent_containers/glass/bottle/multiver, +/obj/item/reagent_containers/syringe, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/security/medical) "oQY" = ( /obj/structure/kitchenspike, /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ @@ -43905,6 +44358,12 @@ }, /turf/open/floor/iron/kitchen_coldroom/freezerfloor, /area/service/kitchen/coldroom) +"oRg" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/storage) "oRn" = ( /obj/structure/window/reinforced/tinted{ dir = 4 @@ -43956,6 +44415,16 @@ /obj/machinery/vending/coffee, /turf/open/floor/iron/white, /area/science/research) +"oRH" = ( +/obj/structure/rack, +/obj/item/crowbar/red, +/obj/item/restraints/handcuffs, +/obj/item/wrench, +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/medical/virology) "oRL" = ( /obj/docking_port/stationary{ dir = 2; @@ -43974,6 +44443,14 @@ }, /turf/open/floor/iron, /area/commons/fitness/recreation) +"oSa" = ( +/obj/machinery/camera/directional/south{ + c_tag = "Chemistry South"; + network = list("ss13","medbay") + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron/white, +/area/medical/chemistry) "oSb" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=8"; @@ -43985,25 +44462,18 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/maintenance/fore) +"oSc" = ( +/obj/structure/closet/toolcloset, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/construction/mining/aux_base) "oSg" = ( /turf/open/floor/plating/airless{ icon_state = "platingdmg2" }, /area/solars/port/aft) -"oSi" = ( -/obj/machinery/light/small/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/button/door/directional/east{ - id = "Prison Gate"; - name = "Prison Wing Lockdown"; - req_access_txt = "2" - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/security/brig) "oSm" = ( /obj/structure/extinguisher_cabinet/directional/south, /obj/machinery/deepfryer, @@ -44047,15 +44517,16 @@ }, /turf/open/floor/iron, /area/science/cytology) -"oTj" = ( -/obj/machinery/light/small/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "MiniSat Exterior - Fore Starboard"; - network = list("minisat") +"oTd" = ( +/obj/machinery/computer/station_alert{ + dir = 4 }, -/obj/structure/window/reinforced, -/turf/open/floor/iron/dark, -/area/ai_monitored/aisat/exterior) +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/engineering/break_room) "oTw" = ( /obj/machinery/status_display/evac/directional/north, /obj/effect/turf_decal/bot, @@ -44097,19 +44568,6 @@ }, /turf/open/floor/iron, /area/security/warden) -"oUq" = ( -/obj/machinery/firealarm/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/starboard) "oUt" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -44119,15 +44577,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/commons/dorms) -"oUw" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/engineering/atmos) "oUA" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -44224,24 +44673,15 @@ /turf/open/floor/plating, /area/maintenance/central) "oWr" = ( -/obj/machinery/chem_dispenser{ - layer = 2.7 +/obj/structure/sign/map/right{ + desc = "A framed picture of the station. Clockwise from security in red at the top, you see engineering in yellow, science in purple, escape in checkered red-and-white, medbay in green, arrivals in checkered red-and-blue, and then cargo in brown."; + icon_state = "map-right-MS"; + pixel_y = 32 }, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/obj/machinery/button/door/directional/north{ - id = "pharmacy_shutters"; - name = "pharmacy shutters control"; - pixel_x = 24; - req_access_txt = "5;69" - }, -/turf/open/floor/iron/white, -/area/medical/pharmacy) -"oWA" = ( +/obj/structure/closet/firecloset, /obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, -/area/engineering/storage/tech) +/area/hallway/primary/starboard) "oWC" = ( /obj/effect/landmark/start/cargo_technician, /turf/open/floor/iron, @@ -44252,6 +44692,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/port/aft) +"oWQ" = ( +/obj/structure/closet/wardrobe/green, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/iron/dark, +/area/commons/locker) "oXm" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/manifold{ dir = 1 @@ -44277,12 +44723,6 @@ /obj/machinery/light/small/directional/west, /turf/open/floor/iron/dark/telecomms, /area/tcommsat/server) -"oXw" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrogen_input{ - dir = 1 - }, -/turf/open/floor/engine/n2, -/area/engineering/atmos) "oXy" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -44342,6 +44782,13 @@ }, /turf/open/floor/plating, /area/maintenance/space_hut) +"oYM" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/construction/mining/aux_base) "oYX" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -44358,6 +44805,16 @@ icon_state = "platingdmg2" }, /area/maintenance/fore) +"oZh" = ( +/obj/machinery/firealarm/directional/west, +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = 2 + }, +/obj/effect/turf_decal/tile/green/fourcorners, +/turf/open/floor/iron, +/area/hallway/primary/central) "oZv" = ( /obj/machinery/shower{ dir = 4 @@ -44383,6 +44840,14 @@ icon_state = "panelscorched" }, /area/maintenance/aft/greater) +"oZA" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/security/courtroom) "oZB" = ( /obj/effect/landmark/start/atmospheric_technician, /turf/open/floor/iron/dark, @@ -44408,6 +44873,12 @@ "oZV" = ( /turf/closed/wall, /area/engineering/break_room) +"paf" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron, +/area/construction/mining/aux_base) "paj" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -44420,6 +44891,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/closed/wall/r_wall, /area/ai_monitored/aisat/exterior) +"pao" = ( +/obj/machinery/computer/operating, +/obj/machinery/camera/directional/west{ + c_tag = "Medbay Primary Surgery"; + name = "medical camera"; + network = list("ss13","medical") + }, +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/iron/white, +/area/medical/surgery/theatre) "paD" = ( /obj/machinery/door/airlock/maintenance{ req_one_access_txt = "12;5;39;25;28" @@ -44521,16 +45002,26 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white/corner, /area/hallway/secondary/entry) -"pcS" = ( -/obj/item/retractor, -/obj/item/hemostat{ - pixel_x = -10 - }, -/obj/machinery/light/small/directional/south, +"pcU" = ( /obj/structure/table, -/obj/effect/turf_decal/tile/purple/anticorner/contrasted, -/turf/open/floor/iron/white, -/area/science/robotics/lab) +/obj/item/folder/yellow{ + pixel_x = 3; + pixel_y = 1 + }, +/obj/item/folder/yellow{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/folder/yellow{ + pixel_x = 3; + pixel_y = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/cargo/sorting) "pdh" = ( /obj/structure/chair{ dir = 1 @@ -44556,12 +45047,37 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/aft/lesser) +"pdr" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "N2O to Pure" + }, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/turf/open/floor/iron, +/area/engineering/atmos) "pdw" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, /turf/open/floor/iron, /area/service/hydroponics) +"pdM" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/mixing/launch) "pdS" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" @@ -44577,6 +45093,16 @@ }, /turf/open/floor/circuit/telecomms/server, /area/science/server) +"peh" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/mixing/launch) "pev" = ( /obj/machinery/door/poddoor/preopen{ id = "medsecprivacy"; @@ -44612,6 +45138,12 @@ }, /turf/open/floor/iron, /area/hallway/secondary/service) +"pfd" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/nitrogen_input{ + dir = 1 + }, +/turf/open/floor/engine/n2, +/area/engineering/atmos) "pfe" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -44625,13 +45157,6 @@ }, /turf/open/floor/iron, /area/engineering/main) -"pfm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/white, -/area/medical/medbay/lobby) "pfr" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -44702,6 +45227,13 @@ /obj/machinery/holopad, /turf/open/floor/iron, /area/security/prison) +"phv" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/paper/monitorkey, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/iron, +/area/command/heads_quarters/ce) "phF" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/chair/stool/directional/west, @@ -44722,6 +45254,19 @@ }, /turf/open/floor/carpet, /area/commons/vacant_room/office) +"phN" = ( +/obj/machinery/camera/directional/west{ + c_tag = "AI Chamber - Port"; + network = list("aicore") + }, +/obj/structure/showcase/cyborg/old{ + dir = 4; + pixel_x = -9; + pixel_y = 2 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ai_monitored/turret_protected/ai) "phT" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 8 @@ -44744,6 +45289,14 @@ }, /turf/open/floor/iron, /area/engineering/atmos) +"pir" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron, +/area/engineering/break_room) "piw" = ( /obj/effect/landmark/start/cyborg, /obj/machinery/holopad/secure, @@ -44754,11 +45307,13 @@ "pix" = ( /turf/open/floor/plating, /area/engineering/main) -"piS" = ( -/obj/item/radio/intercom/directional/east, +"piR" = ( /obj/effect/turf_decal/tile/yellow/half/contrasted{ dir = 4 }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, /turf/open/floor/iron/white, /area/medical/chemistry) "piV" = ( @@ -44774,22 +45329,20 @@ "pjc" = ( /turf/open/floor/iron/white, /area/medical/office) -"pjE" = ( -/obj/structure/rack, -/obj/item/gun/energy/disabler{ - pixel_x = -3; - pixel_y = 3 +"pjG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/camera/directional/north{ + c_tag = "Science Lobby"; + network = list("ss13","rd") }, -/obj/item/gun/energy/disabler, -/obj/item/gun/energy/disabler{ - pixel_x = 3; - pixel_y = -3 +/obj/machinery/vending/modularpc, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/ai_monitored/security/armory) +/turf/open/floor/iron/white, +/area/science/lobby) "pjU" = ( /obj/effect/turf_decal/trimline/blue/filled/line, /obj/structure/cable, @@ -44873,11 +45426,6 @@ }, /turf/open/floor/iron, /area/service/hydroponics) -"plz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/turf/open/floor/iron, -/area/engineering/atmos/pumproom) "plC" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -44908,6 +45456,20 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, /turf/open/floor/iron/dark, /area/engineering/supermatter/room) +"pmh" = ( +/obj/structure/cable, +/obj/machinery/computer/security{ + dir = 1 + }, +/obj/item/paper/crumpled{ + info = "Hey, assholes. We don't need a couch in the meeting room, I threw it out the airlock. I don't care if it's real leather, go patrol like you're paid to do instead of cycling through cameras all shift!"; + name = "old, crumpled note" + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/security/office) "pmu" = ( /obj/structure/closet/secure_closet/bar{ pixel_x = -3; @@ -44929,18 +45491,6 @@ }, /turf/open/floor/iron, /area/cargo/sorting) -"pmS" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Mix Outlet Pump" - }, -/obj/effect/turf_decal/tile/green/anticorner/contrasted, -/turf/open/floor/iron, -/area/engineering/atmos) "pna" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 @@ -44980,14 +45530,15 @@ }, /turf/open/floor/iron, /area/science/xenobiology) -"pnq" = ( -/obj/structure/table/glass, -/obj/machinery/computer/med_data/laptop, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 +"pni" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Cryogenics Bay"; + req_access_txt = "5" }, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, -/area/command/heads_quarters/cmo) +/area/medical/office) "pnQ" = ( /obj/structure/lattice, /obj/structure/sign/warning/electricshock{ @@ -44995,6 +45546,17 @@ }, /turf/open/space/basic, /area/space/nearstation) +"pnR" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/mixing/launch) "pnY" = ( /obj/effect/turf_decal/tile/bar, /obj/effect/turf_decal/tile/bar{ @@ -45042,6 +45604,18 @@ }, /turf/open/floor/iron/dark, /area/medical/morgue) +"pot" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/structure/cable, +/obj/item/kirbyplants/random, +/obj/machinery/camera/directional/east{ + c_tag = "Science - Server Room"; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/server) "pox" = ( /obj/effect/turf_decal/delivery, /obj/machinery/door/window/northleft{ @@ -45070,6 +45644,25 @@ /obj/effect/spawner/random/food_or_drink/donkpockets, /turf/open/floor/iron/dark, /area/medical/break_room) +"poC" = ( +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/medical/chemistry) +"poD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/robotics/lab) "poI" = ( /obj/item/hand_labeler, /obj/item/stack/package_wrap, @@ -45087,47 +45680,12 @@ /obj/machinery/newscaster/directional/east, /turf/open/floor/iron/white/corner, /area/hallway/secondary/entry) -"poL" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/landmark/blobstart, -/obj/machinery/camera/directional/north{ - c_tag = "Evidence Storage" - }, -/obj/item/storage/secure/safe/directional/north{ - name = "evidence safe" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/security/brig) "poO" = ( /obj/structure/chair/wood{ dir = 1 }, /turf/open/floor/wood, /area/commons/dorms) -"poS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/service/hydroponics/garden) -"ppw" = ( -/obj/machinery/disposal/bin{ - desc = "A pneumatic waste disposal unit. This one leads to the morgue."; - name = "corpse disposal" - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/medical/surgery/theatre) "ppz" = ( /obj/machinery/vending/boozeomat/all_access, /obj/effect/decal/cleanable/cobweb, @@ -45185,15 +45743,6 @@ /obj/structure/window/reinforced, /turf/open/floor/iron/dark, /area/commons/fitness/recreation) -"pqF" = ( -/obj/structure/table, -/obj/item/circular_saw, -/obj/item/scalpel{ - pixel_y = 16 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted, -/turf/open/floor/iron/white, -/area/science/robotics/lab) "pqI" = ( /obj/structure/lattice/catwalk, /obj/item/fish_feed, @@ -45212,26 +45761,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/port/aft) -"pqY" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/effect/turf_decal/siding/white{ - dir = 8 - }, -/obj/item/storage/belt/medical{ - pixel_y = 6 - }, -/obj/item/storage/belt/medical{ - pixel_y = 4 - }, -/obj/item/storage/belt/medical{ - pixel_y = 2 - }, -/obj/item/storage/belt/medical, -/turf/open/floor/iron/white/side{ - dir = 4 - }, -/area/medical/treatment_center) "prh" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -45256,10 +45785,6 @@ }, /turf/open/floor/iron/white, /area/science/research) -"prp" = ( -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, -/turf/open/floor/iron/white, -/area/medical/chemistry) "prw" = ( /obj/machinery/porta_turret/ai, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -45331,33 +45856,29 @@ }, /turf/open/floor/iron, /area/hallway/primary/central) -"psB" = ( -/obj/effect/spawner/random/maintenance, +"psv" = ( +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/item/stack/rods/fifty, +/obj/item/stack/rods/fifty, +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/poster/contraband/random/directional/west, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"ptt" = ( -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/engineering_hacking{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/book/manual/wiki/engineering_guide{ - pixel_x = -2 - }, -/obj/item/trash/can{ - pixel_x = -8 - }, -/obj/machinery/firealarm/directional/south, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, -/turf/open/floor/iron, -/area/engineering/break_room) +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/iron/dark, +/area/ai_monitored/command/storage/eva) "ptE" = ( /obj/effect/turf_decal/trimline/purple/corner{ dir = 8 @@ -45466,14 +45987,11 @@ }, /turf/open/floor/plating, /area/maintenance/department/science/xenobiology) -"puD" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/shower{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/iron/white, -/area/medical/surgery/theatre) +"puA" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/hallway/primary/central) "puO" = ( /obj/machinery/conveyor{ dir = 1; @@ -45494,20 +46012,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/science/lobby) -"puW" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/turf/open/floor/iron/cafeteria, -/area/engineering/atmos) "pvn" = ( /obj/effect/decal/cleanable/dirt, /obj/vehicle/sealed/mecha/working/ripley/cargo, @@ -45537,15 +46041,6 @@ /obj/effect/turf_decal/trimline/red/filled/line, /turf/open/floor/iron, /area/security/warden) -"pvQ" = ( -/obj/machinery/computer/rdservercontrol{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/server) "pvR" = ( /obj/structure/closet/crate/coffin, /obj/machinery/light/small/directional/north, @@ -45565,6 +46060,17 @@ name = "Holodeck Projector Floor" }, /area/holodeck/rec_center) +"pwd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Hydroponics Storage" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/green/fourcorners, +/turf/open/floor/iron, +/area/hallway/primary/central) "pwf" = ( /obj/machinery/computer/med_data{ dir = 4 @@ -45592,10 +46098,6 @@ }, /turf/open/floor/plating, /area/maintenance/department/science/xenobiology) -"pxd" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron, -/area/hallway/primary/central) "pxg" = ( /obj/effect/landmark/start/cook, /obj/machinery/duct, @@ -45625,37 +46127,6 @@ "pxv" = ( /turf/closed/wall, /area/maintenance/department/science/central) -"pxC" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -1; - pixel_y = 5 - }, -/obj/item/pen, -/obj/machinery/computer/security/telescreen{ - desc = "Used for monitoring the engine."; - dir = 8; - name = "Engine Monitor"; - network = list("engine"); - pixel_x = 26 - }, -/obj/machinery/button/door/directional/east{ - id = "Engineering"; - name = "Engineering Lockdown"; - pixel_y = 16; - req_one_access_txt = "1;10" - }, -/obj/machinery/button/door/directional/east{ - id = "atmos"; - name = "Atmospherics Lockdown"; - pixel_y = 24; - req_one_access_txt = "1;24" - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/security/checkpoint/engineering) "pxR" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/binary/thermomachine/heater{ @@ -45663,17 +46134,17 @@ }, /turf/open/floor/iron, /area/maintenance/disposal/incinerator) +"pxS" = ( +/obj/structure/closet/secure_closet/miner, +/obj/machinery/camera/directional/north{ + c_tag = "Mining Dock" + }, +/obj/effect/turf_decal/tile/brown/half/contrasted, +/turf/open/floor/iron, +/area/cargo/miningoffice) "pyb" = ( /turf/closed/wall, /area/service/hydroponics/garden) -"pyg" = ( -/obj/structure/table/glass, -/obj/item/retractor, -/obj/item/hemostat, -/obj/item/cautery, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/medical/surgery/theatre) "pyr" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -45685,6 +46156,10 @@ /obj/machinery/meter, /turf/closed/wall/r_wall, /area/engineering/atmos) +"pyP" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ai_monitored/aisat/exterior) "pyS" = ( /obj/effect/turf_decal/tile/blue, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -45801,6 +46276,41 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/primary/central) +"pAE" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/turf_decal/siding/white/corner, +/obj/item/storage/box/gloves{ + pixel_y = 8 + }, +/obj/item/storage/box/masks{ + pixel_y = 4 + }, +/obj/item/storage/box/bodybags, +/turf/open/floor/iron/white/side{ + dir = 9 + }, +/area/medical/treatment_center) +"pAG" = ( +/obj/machinery/computer/rdservercontrol{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/server) +"pAO" = ( +/obj/structure/closet/toolcloset, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/structure/sign/poster/official/random/directional/north, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/engineering/storage_shared) "pAP" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 @@ -45846,13 +46356,6 @@ }, /turf/open/floor/iron, /area/cargo/miningoffice) -"pBM" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/iv_drip, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/medical/treatment_center) "pBU" = ( /obj/effect/spawner/random/engineering/vending_restock, /turf/open/floor/plating{ @@ -45887,16 +46390,6 @@ /obj/machinery/light/small/directional/west, /turf/open/floor/iron, /area/science/research) -"pCG" = ( -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/computer/atmos_alert, -/turf/open/floor/iron/dark, -/area/engineering/main) "pDc" = ( /obj/structure/window/reinforced{ dir = 4 @@ -45909,35 +46402,6 @@ }, /turf/open/floor/engine, /area/science/cytology) -"pDo" = ( -/obj/machinery/modular_computer/console/preset/id, -/obj/effect/turf_decal/tile/green/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/command/bridge) -"pDv" = ( -/obj/structure/table/reinforced, -/obj/item/stamp/denied{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/item/stamp{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/pen/red{ - pixel_y = 10 - }, -/obj/item/dest_tagger{ - pixel_x = 9; - pixel_y = 10 - }, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/cargo/sorting) "pDw" = ( /obj/machinery/light/small/directional/east, /obj/effect/decal/cleanable/dirt, @@ -45965,6 +46429,13 @@ }, /turf/open/floor/iron, /area/engineering/atmos) +"pDX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random/directional/north, +/turf/open/floor/plating, +/area/maintenance/fore) "pEn" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/window/reinforced{ @@ -45973,35 +46444,6 @@ /obj/structure/reagent_dispensers/plumbed, /turf/open/floor/iron, /area/service/hydroponics) -"pEE" = ( -/obj/structure/table, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/machinery/requests_console/directional/west{ - department = "Ordnance Test Range"; - departmentType = 5; - name = "Test Range Requests Console" - }, -/obj/item/assembly/signaler{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/assembly/signaler{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/assembly/signaler{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/assembly/signaler{ - pixel_y = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/mixing/launch) "pEM" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -46030,14 +46472,6 @@ }, /turf/open/floor/iron, /area/engineering/main) -"pFf" = ( -/obj/machinery/light/directional/north, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/hallway/primary/central) "pFq" = ( /obj/structure/chair/stool/directional/north, /obj/structure/cable, @@ -46064,16 +46498,30 @@ }, /turf/open/floor/iron/dark, /area/engineering/atmos) -"pFH" = ( +"pFP" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/hallway/primary/central) +"pFR" = ( +/obj/machinery/reagentgrinder, +/obj/machinery/requests_console/directional/west{ + department = "Pharmacy"; + departmentType = 2; + name = "Pharmacy Requests Console"; + receive_ore_updates = 1 + }, /obj/structure/table/glass, -/obj/item/folder/blue, -/obj/item/clothing/neck/stethoscope, -/obj/item/clothing/glasses/hud/health, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 }, /turf/open/floor/iron/white, -/area/command/heads_quarters/cmo) +/area/medical/pharmacy) "pGb" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -46166,6 +46614,18 @@ /obj/item/wrench, /turf/open/floor/iron, /area/science/xenobiology) +"pHy" = ( +/obj/structure/showcase/cyborg/old{ + dir = 8; + pixel_x = 9; + pixel_y = 2 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/newscaster/security_unit/directional/east{ + pixel_y = 12 + }, +/turf/open/floor/iron/dark, +/area/ai_monitored/turret_protected/ai) "pHF" = ( /obj/structure/chair/office{ dir = 4 @@ -46198,12 +46658,6 @@ /obj/machinery/atmospherics/components/unary/portables_connector/visible, /turf/open/floor/iron/dark, /area/engineering/supermatter/room) -"pHY" = ( -/obj/structure/window/reinforced, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/dark, -/area/command/bridge) "pIn" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ @@ -46261,14 +46715,6 @@ /obj/machinery/status_display/evac/directional/south, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/ai) -"pIG" = ( -/obj/structure/table/wood, -/obj/item/paper, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/security/courtroom) "pII" = ( /obj/machinery/space_heater, /turf/open/floor/plating, @@ -46289,19 +46735,6 @@ /obj/machinery/airalarm/directional/south, /turf/open/floor/wood, /area/service/library) -"pJv" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/virology/glass{ - name = "Containment Cells"; - req_access_txt = "39" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/green/fourcorners, -/turf/open/floor/iron/white, -/area/medical/virology) "pJx" = ( /obj/machinery/door/airlock/external{ name = "Auxiliary Escape Airlock" @@ -46311,20 +46744,6 @@ }, /turf/open/floor/plating, /area/maintenance/aft/lesser) -"pJD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/security/office) "pJK" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -46352,24 +46771,18 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/command/heads_quarters/captain/private) -"pJY" = ( -/obj/machinery/computer/security/telescreen{ - desc = "Used for monitoring medbay to ensure patient safety."; - dir = 4; - name = "Medbay Monitor"; - network = list("medbay"); - pixel_x = -32 +"pKN" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 }, -/obj/machinery/light_switch/directional/west{ - pixel_x = -20 +/obj/structure/window/reinforced{ + dir = 8 }, -/obj/machinery/computer/med_data{ - dir = 4 - }, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/red/fourcorners, +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/security/checkpoint/medical) +/area/science/storage) "pKY" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 4 @@ -46396,6 +46809,12 @@ /obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/engine, /area/science/xenobiology) +"pLk" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/structure/sign/poster/contraband/random/directional/west, +/turf/open/floor/plating, +/area/maintenance/port/greater) "pLB" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -46412,12 +46831,18 @@ /obj/item/reagent_containers/food/drinks/soda_cans/monkey_energy, /turf/open/floor/plating, /area/maintenance/port/aft) -"pMI" = ( -/obj/effect/turf_decal/tile/yellow/half/contrasted{ +"pME" = ( +/obj/machinery/status_display/ai/directional/north, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/brown/half/contrasted{ dir = 1 }, -/turf/open/floor/iron/white, -/area/medical/chemistry) +/turf/open/floor/iron/dark, +/area/command/bridge) "pMS" = ( /obj/structure/disposaloutlet, /obj/structure/disposalpipe/trunk{ @@ -46475,16 +46900,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/primary/central) -"pNF" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table, -/obj/item/surgical_drapes, -/obj/item/cautery, -/obj/effect/turf_decal/tile/purple/half/contrasted, -/turf/open/floor/iron/white, -/area/science/robotics/lab) "pNI" = ( /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, @@ -46498,6 +46913,13 @@ }, /turf/open/floor/plating, /area/service/lawoffice) +"pNN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/iron/dark, +/area/security/range) "pNO" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -46529,11 +46951,6 @@ /obj/structure/closet/secure_closet/detective, /turf/open/floor/iron/grimy, /area/security/detectives_office) -"pOv" = ( -/obj/machinery/bounty_board/directional/south, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted, -/turf/open/floor/iron/dark, -/area/command/bridge) "pOz" = ( /obj/machinery/vending/wardrobe/chap_wardrobe, /turf/open/floor/iron/grimy, @@ -46566,12 +46983,6 @@ }, /turf/open/floor/grass, /area/service/hydroponics/garden) -"pPe" = ( -/obj/structure/closet/secure_closet/miner, -/obj/item/clothing/suit/hooded/wintercoat/miner, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron, -/area/cargo/miningoffice) "pPi" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/tile/neutral{ @@ -46611,6 +47022,17 @@ /obj/structure/cable, /turf/open/floor/wood, /area/hallway/secondary/service) +"pPB" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/firealarm/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/hallway/primary/aft) "pPF" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, @@ -46652,12 +47074,6 @@ /obj/machinery/vending/assist, /turf/open/floor/iron/dark, /area/engineering/storage/tech) -"pQV" = ( -/obj/machinery/vending/cigarette, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/commons/fitness/recreation) "pRp" = ( /obj/machinery/vending/medical, /obj/machinery/light/directional/south, @@ -46667,6 +47083,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/commons/locker) +"pRX" = ( +/obj/structure/window/reinforced, +/obj/machinery/computer/atmos_control/carbon_tank{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark/fourcorners, +/turf/open/floor/iron, +/area/engineering/atmos) "pSd" = ( /obj/machinery/holopad, /turf/open/floor/iron, @@ -46740,30 +47167,39 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/space, /area/space/nearstation) -"pTp" = ( -/obj/structure/table/glass, -/obj/item/clothing/gloves/color/latex, -/obj/item/surgical_drapes, -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/medical/surgery/theatre) +"pTj" = ( +/obj/machinery/firealarm/directional/west, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/command/heads_quarters/ce) "pTA" = ( /obj/machinery/firealarm/directional/north, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/security/brig) -"pTC" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 +"pTG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 10 +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "bridge-right" }, -/turf/open/floor/iron/dark/corner, -/area/engineering/atmos/pumproom) +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/command/bridge) "pTH" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment, @@ -46779,21 +47215,16 @@ }, /turf/open/floor/iron/dark, /area/engineering/atmos) +"pUa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible/layer4, +/turf/closed/wall/r_wall, +/area/engineering/atmos/pumproom) "pUh" = ( /obj/structure/dresser, /obj/machinery/newscaster/directional/north, /turf/open/floor/carpet, /area/commons/dorms) -"pUk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/medical/pharmacy) "pUy" = ( /obj/structure/cable, /obj/item/radio/intercom/directional/north, @@ -46813,27 +47244,37 @@ }, /turf/open/floor/iron, /area/hallway/primary/fore) -"pUJ" = ( -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/security/checkpoint/customs) +"pUH" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/holopad, +/turf/open/floor/iron/white, +/area/science/mixing/launch) "pUP" = ( +/obj/machinery/door/window/southright{ + dir = 1; + name = "First Aid Supplies"; + req_access_txt = "5" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/storage/medkit/regular{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/storage/medkit/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/medkit/toxin, +/obj/item/storage/medkit/toxin{ + pixel_x = -3; + pixel_y = -3 + }, /obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rdgene2"; - name = "Genetics Lab Shutters" - }, -/obj/machinery/door/window/westleft{ - dir = 4; - name = "Genetics Desk"; - req_access_txt = "9" - }, -/obj/item/folder, -/obj/item/pen, -/obj/effect/turf_decal/tile/purple/fourcorners, -/turf/open/floor/iron, -/area/science/genetics) +/obj/machinery/light/directional/south, +/turf/open/floor/iron/dark, +/area/medical/storage) "pUY" = ( /obj/machinery/camera{ c_tag = "Xenobiology Lab - Pen #2"; @@ -46868,24 +47309,6 @@ /obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, /turf/open/floor/iron/dark, /area/engineering/transit_tube) -"pVo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - id_tag = "MedbayFoyer"; - name = "Medbay"; - req_access_txt = "5" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/medical/medbay/central) "pVy" = ( /obj/structure/window/reinforced{ dir = 4 @@ -46990,11 +47413,12 @@ }, /turf/open/floor/iron, /area/science/mixing) -"pWz" = ( -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/engineering/gravity_generator) +"pWu" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/service/hydroponics/garden) "pWG" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/machinery/airalarm/directional/west, @@ -47005,22 +47429,6 @@ dir = 1 }, /area/engineering/main) -"pWL" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/bot, -/obj/machinery/camera{ - c_tag = "Engineering - Foyer - Starboard"; - dir = 9 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/engineering/break_room) "pWO" = ( /obj/structure/sign/warning/biohazard, /turf/closed/wall/r_wall, @@ -47041,16 +47449,6 @@ }, /turf/open/floor/iron, /area/cargo/storage) -"pXc" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/medical/virology) "pXr" = ( /obj/structure/rack, /obj/item/storage/toolbox/electrical{ @@ -47106,6 +47504,13 @@ /obj/machinery/light/directional/east, /turf/open/floor/plating, /area/science/robotics/mechbay) +"pZb" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/machinery/newscaster/directional/north, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/hallway/secondary/exit/departure_lounge) "pZq" = ( /obj/item/storage/secure/safe/directional/south, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -47125,14 +47530,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/security/checkpoint/engineering) -"pZy" = ( -/obj/machinery/flasher/portable, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/security/lockers) "pZA" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/closet, @@ -47159,25 +47556,6 @@ /obj/effect/spawner/random/maintenance, /turf/open/floor/iron, /area/cargo/sorting) -"pZP" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/folder/yellow{ - pixel_x = 4 - }, -/obj/machinery/requests_console/directional/west{ - department = "Engineering"; - departmentType = 3; - name = "Engineering Requests Console" - }, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/engineering/break_room) "pZT" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -47246,50 +47624,34 @@ /obj/machinery/firealarm/directional/south, /turf/open/floor/iron, /area/hallway/primary/port) -"qaS" = ( -/obj/structure/table, -/obj/item/paper_bin/bundlenatural{ - pixel_x = -19; - pixel_y = 5 - }, -/obj/item/paper_bin/bundlenatural{ - pixel_x = -7; - pixel_y = 5 - }, -/obj/item/paper_bin/bundlenatural{ - pixel_x = -19; - pixel_y = 9 - }, -/obj/item/paperplane{ - pixel_x = 9 - }, -/obj/item/paperplane{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted, -/turf/open/floor/iron, -/area/cargo/sorting) "qaU" = ( /obj/structure/closet, /obj/effect/spawner/random/maintenance/two, /turf/open/floor/plating, /area/maintenance/port) +"qaV" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/robotics/lab) +"qbj" = ( +/obj/item/radio/intercom/directional/west, +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/obj/machinery/button/door/directional/west{ + id = "MedbayFoyer"; + name = "Medbay Doors Control"; + normaldoorcontrol = 1; + pixel_y = -9 + }, +/obj/effect/turf_decal/tile/red/fourcorners, +/turf/open/floor/iron/dark, +/area/security/checkpoint/medical) "qbA" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/fore/lesser) -"qbE" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/engineering/break_room) "qbF" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -47298,17 +47660,16 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/aisat/exterior) +"qbG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/server) "qbL" = ( /obj/structure/chair/pew/right, /turf/open/floor/iron/chapel, /area/service/chapel) -"qbT" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/medical/chemistry) "qbU" = ( /obj/machinery/power/tracker, /obj/structure/cable, @@ -47337,21 +47698,46 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/grimy, /area/tcommsat/computer) -"qcv" = ( +"qcE" = ( +/obj/machinery/light/directional/north, +/obj/structure/sign/map/right{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-right-MS"; + pixel_y = 32 + }, /obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 + dir = 1 }, -/turf/open/floor/iron/dark, -/area/engineering/atmos) -"qcH" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" +/turf/open/floor/iron, +/area/hallway/primary/central) +"qcF" = ( +/obj/structure/cable, +/obj/structure/table, +/obj/item/clothing/shoes/sneakers/orange{ + pixel_x = -6; + pixel_y = 10 }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 +/obj/item/clothing/shoes/sneakers/orange{ + pixel_x = -6; + pixel_y = -2 }, -/turf/open/floor/iron/white, -/area/command/heads_quarters/cmo) +/obj/item/clothing/shoes/sneakers/orange{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/clothing/shoes/sneakers/orange{ + pixel_x = -6; + pixel_y = -8 + }, +/obj/item/clothing/under/rank/prisoner{ + pixel_x = 8; + pixel_y = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/red/anticorner/contrasted, +/turf/open/floor/iron, +/area/security/prison) "qcO" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -47363,14 +47749,6 @@ /obj/structure/cable, /turf/open/floor/iron/white, /area/science/research) -"qcS" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/engineering/storage/tech) "qcU" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 8 @@ -47396,13 +47774,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, /area/cargo/qm) -"qdl" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/bot_white, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/storage) "qdm" = ( /obj/machinery/door/window/northleft{ name = "Inner Pipe Access"; @@ -47413,12 +47784,6 @@ }, /turf/open/floor/iron/dark, /area/engineering/atmos) -"qdq" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 6 - }, -/turf/open/floor/iron, -/area/engineering/atmos/pumproom) "qdD" = ( /obj/effect/spawner/structure/window/reinforced/plasma, /turf/open/floor/plating, @@ -47443,6 +47808,42 @@ }, /turf/open/floor/plating, /area/science/test_area) +"qei" = ( +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/research{ + name = "Ordnance Lab"; + req_access_txt = "8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rdordnance"; + name = "Ordnance Lab Shutters" + }, +/turf/open/floor/iron/white, +/area/science/mixing) +"qeQ" = ( +/obj/machinery/turretid{ + icon_state = "control_stun"; + name = "AI Chamber turret control"; + pixel_x = 3; + pixel_y = -23 + }, +/obj/machinery/door/window{ + atom_integrity = 300; + base_state = "leftsecure"; + dir = 8; + icon_state = "leftsecure"; + name = "Primary AI Core Access"; + req_access_txt = "16" + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/iron/dark, +/area/ai_monitored/turret_protected/ai) "qeW" = ( /obj/structure/sign/warning/biohazard, /turf/closed/wall/r_wall, @@ -47461,19 +47862,6 @@ }, /turf/open/floor/iron, /area/cargo/storage) -"qfg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/security/office) "qft" = ( /turf/open/floor/iron/white, /area/medical/medbay/lobby) @@ -47520,6 +47908,18 @@ }, /turf/open/floor/iron/dark, /area/security/office) +"qgq" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Firing Range"; + req_one_access_txt = "1;4" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/security/range) "qgA" = ( /obj/machinery/power/emitter, /turf/open/floor/plating, @@ -47558,10 +47958,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, /area/service/library) -"qhb" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/mixing/launch) "qhd" = ( /obj/effect/landmark/event_spawn, /obj/structure/cable, @@ -47605,6 +48001,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/science/research) +"qhK" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/suit_storage_unit/security, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/security/brig) "qhS" = ( /obj/effect/mapping_helpers/airlock/locked, /obj/machinery/embedded_controller/radio/airlock_controller/incinerator_ordmix{ @@ -47615,32 +48017,6 @@ }, /turf/open/floor/engine, /area/science/mixing/chamber) -"qhT" = ( -/obj/item/reagent_containers/glass/bottle/multiver{ - pixel_x = 7; - pixel_y = 12 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = -4; - pixel_y = 12 - }, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/reagent_containers/dropper, -/obj/structure/table, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/medical/chemistry) -"qhV" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/engineering/storage/tech) "qia" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 @@ -47697,6 +48073,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/aft/greater) +"qiP" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/security/office) "qiQ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/disposalpipe/segment{ @@ -47704,10 +48090,6 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"qiU" = ( -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/floor/plating, -/area/maintenance/port/fore) "qje" = ( /obj/machinery/light/directional/east, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -47724,12 +48106,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/ai_monitored/command/storage/eva) -"qjh" = ( -/obj/machinery/power/apc/auto_name/directional/east, +"qji" = ( +/obj/effect/spawner/random/maintenance, /obj/structure/cable, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/iron, -/area/science/mixing) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/sign/poster/contraband/random/directional/west, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) "qjo" = ( /obj/structure/chair{ dir = 8 @@ -47762,6 +48145,21 @@ /obj/machinery/light/small/directional/north, /turf/open/floor/iron/white, /area/science/xenobiology) +"qjM" = ( +/obj/machinery/light/directional/east, +/obj/structure/disposalpipe/segment, +/obj/machinery/computer/security/telescreen{ + desc = "Used for monitoring the engine."; + dir = 8; + name = "Engine Monitor"; + network = list("engine"); + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/command/heads_quarters/ce) "qjY" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -47781,12 +48179,6 @@ /obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/carpet, /area/service/chapel) -"qkq" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/ordnance_mixing_input{ - dir = 1 - }, -/turf/open/floor/engine, -/area/science/mixing/chamber) "qks" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 1 @@ -47821,12 +48213,6 @@ /obj/structure/window/reinforced, /turf/open/floor/holofloor/dark, /area/science/cytology) -"qlf" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/service/hydroponics/garden) "qlk" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -47834,6 +48220,20 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, /area/service/library) +"qll" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/components/trinary/filter/atmos/n2o{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/turf/open/floor/iron, +/area/engineering/atmos) "qlo" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -47844,22 +48244,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/maintenance/starboard/greater) -"qlr" = ( -/obj/structure/table, -/obj/item/folder/yellow, -/obj/item/storage/medkit/regular{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/cable, -/obj/item/paper/pamphlet/gateway, -/turf/open/floor/iron{ - dir = 1 - }, -/area/command/gateway) "qlt" = ( /obj/item/radio/intercom/directional/south, /obj/effect/turf_decal/tile/red{ @@ -47887,12 +48271,30 @@ }, /turf/open/floor/iron, /area/hallway/primary/fore) +"qlC" = ( +/obj/machinery/computer/station_alert, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/command/bridge) "qlY" = ( /obj/effect/spawner/random/maintenance, /turf/open/floor/plating{ icon_state = "platingdmg3" }, /area/maintenance/port/fore) +"qmc" = ( +/obj/structure/closet{ + name = "Evidence Closet 2" + }, +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/security/brig) "qmo" = ( /obj/effect/spawner/random/maintenance, /obj/structure/rack, @@ -47917,6 +48319,14 @@ /obj/machinery/light/directional/west, /turf/open/floor/iron, /area/engineering/gravity_generator) +"qmR" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/ai_monitored/aisat/exterior) "qmS" = ( /obj/machinery/light/small/directional/east, /turf/open/floor/plating, @@ -47938,12 +48348,26 @@ }, /turf/open/floor/iron, /area/engineering/atmos) -"qmZ" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 +"qne" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/machinery/computer/atmos_control/nocontrol/incinerator{ + dir = 4 }, /turf/open/floor/iron, -/area/science/mixing) +/area/maintenance/disposal/incinerator) +"qnk" = ( +/obj/machinery/light/directional/south, +/obj/structure/bed/roller, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted, +/turf/open/floor/iron/white, +/area/medical/medbay/lobby) "qnv" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -47963,27 +48387,20 @@ /obj/machinery/firealarm/directional/north, /turf/open/floor/iron/white, /area/science/research) +"qnY" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/poster/official/random/directional/north, +/turf/open/floor/iron, +/area/hallway/primary/port) "qnZ" = ( /obj/structure/closet/secure_closet/hop, /turf/open/floor/wood, /area/command/heads_quarters/hop) -"qof" = ( -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/machinery/light_switch/directional/north, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/security/checkpoint/customs) -"qoh" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, -/turf/closed/wall, -/area/engineering/atmos/pumproom) "qoj" = ( /obj/machinery/hydroponics/soil, /obj/effect/decal/cleanable/dirt, @@ -48047,19 +48464,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/port/fore) -"qpe" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/research/glass{ - name = "Pharmacy"; - req_access_txt = "5; 69" - }, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/medical/pharmacy) "qph" = ( /obj/structure/closet, /obj/effect/spawner/random/maintenance/four, @@ -48132,17 +48536,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/security/prison) -"qqW" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/construction/plumbing, -/obj/item/construction/plumbing, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/medical/chemistry) "qrf" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ @@ -48183,47 +48576,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, /area/command/heads_quarters/captain/private) -"qsN" = ( -/obj/machinery/door/window/brigdoor{ - name = "Justice Chamber"; - req_access_txt = "3" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/brigdoor{ - dir = 1; - name = "Justice Chamber"; - req_access_txt = "3" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "executionfireblast" - }, -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/security/execution/education) -"qsO" = ( -/obj/structure/cable, -/obj/structure/rack, -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/storage/box/syringes, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/medical/virology) "qsV" = ( /obj/structure/table/reinforced, /obj/item/phone{ @@ -48280,6 +48632,17 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/port/aft) +"qtU" = ( +/obj/machinery/door/window/brigdoor/security/cell{ + id = "Cell 1"; + name = "Cell 1" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/red/half/contrasted, +/turf/open/floor/iron, +/area/security/brig) "qtY" = ( /obj/machinery/holopad, /turf/open/floor/iron/white/side{ @@ -48342,38 +48705,6 @@ "quV" = ( /turf/closed/wall, /area/service/hydroponics) -"quY" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/riot{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/item/clothing/suit/armor/riot{ - pixel_y = 2 - }, -/obj/item/clothing/suit/armor/riot{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_y = -2 - }, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_x = -3; - pixel_y = -2 - }, -/obj/machinery/requests_console/directional/north{ - department = "Security"; - departmentType = 3; - name = "Security Requests Console" - }, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/dark, -/area/ai_monitored/security/armory) "qvb" = ( /obj/effect/turf_decal/delivery, /obj/structure/closet/secure_closet/engineering_electrical, @@ -48396,11 +48727,6 @@ }, /turf/open/floor/iron, /area/engineering/main) -"qvB" = ( -/obj/effect/turf_decal/bot_white/right, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/engineering/gravity_generator) "qvM" = ( /obj/structure/table, /obj/effect/turf_decal/stripes/line, @@ -48430,19 +48756,6 @@ /obj/machinery/light/directional/south, /turf/open/floor/iron/white, /area/science/cytology) -"qwB" = ( -/obj/structure/table/wood, -/obj/item/radio/intercom{ - broadcasting = 1; - dir = 8; - listening = 0; - name = "Station Intercom (Court)" - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/security/courtroom) "qwF" = ( /obj/structure/closet/crate/wooden/toy, /obj/machinery/light_switch/directional/south, @@ -48452,6 +48765,17 @@ /obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, /area/command/teleporter) +"qwP" = ( +/obj/structure/table, +/obj/item/storage/box/prisoner{ + pixel_y = 8 + }, +/obj/item/storage/box/prisoner, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/security/prison) "qxb" = ( /obj/structure/table, /obj/item/book/manual/wiki/security_space_law{ @@ -48478,6 +48802,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/primary/port) +"qxC" = ( +/obj/machinery/vending/cigarette, +/obj/structure/sign/poster/official/random/directional/east, +/turf/open/floor/plating, +/area/commons/toilet/auxiliary) "qxJ" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 @@ -48516,17 +48845,20 @@ /obj/structure/cable, /turf/open/floor/iron, /area/commons/dorms) -"qyD" = ( -/obj/structure/rack, -/obj/item/storage/secure/briefcase, -/obj/item/clothing/mask/cigarette/cigar, -/obj/machinery/computer/security/telescreen/ce{ - dir = 1; - pixel_y = -30 +"qyo" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Vault Storage" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 }, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/command/heads_quarters/ce) +/area/construction/storage_wing) "qyH" = ( /obj/machinery/vending/assist, /obj/effect/turf_decal/stripes/line{ @@ -48540,11 +48872,6 @@ /obj/item/stack/sheet/plasteel/fifty, /turf/open/floor/iron/dark, /area/engineering/atmospherics_engine) -"qyN" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron/dark, -/area/security/lockers) "qyP" = ( /obj/structure/mirror/directional/west, /obj/item/lipstick/black, @@ -48559,15 +48886,6 @@ /obj/structure/table, /turf/open/floor/plating, /area/maintenance/port) -"qyX" = ( -/obj/machinery/door/window/southleft{ - dir = 1; - name = "Mass Driver Control Door"; - req_access_txt = "8" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/mixing/launch) "qzc" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/cable, @@ -48594,6 +48912,20 @@ /obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/white, /area/security/medical) +"qzq" = ( +/obj/structure/chair{ + name = "Judge" + }, +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/light/directional/north, +/obj/machinery/camera/directional/north{ + c_tag = "Courtroom" + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/security/courtroom) "qzs" = ( /obj/structure/lattice/catwalk, /obj/structure/cable, @@ -48683,11 +49015,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/port) -"qAV" = ( -/obj/effect/turf_decal/bot_white/right, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/command/gateway) "qBd" = ( /obj/effect/mapping_helpers/airlock/abandoned, /obj/machinery/door/airlock/medical{ @@ -48785,31 +49112,16 @@ /obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/engineering/storage/tcomms) -"qDe" = ( -/obj/machinery/light/directional/south, -/obj/effect/spawner/random/vending/colavend, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/commons/fitness/recreation) -"qDr" = ( -/obj/machinery/status_display/evac/directional/north, -/obj/machinery/porta_turret/ai, -/obj/machinery/computer/security/telescreen/minisat{ - dir = 8; - pixel_x = 28 +"qDI" = ( +/obj/machinery/camera/directional/east{ + c_tag = "Aft Primary Hallway - Fore" }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"qDL" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/siding/purple{ - dir = 5 +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 }, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/genetics) +/turf/open/floor/iron, +/area/hallway/primary/aft) "qDO" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/cable, @@ -48820,6 +49132,16 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/lesser) +"qDU" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/genetics) "qEc" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /obj/structure/disposalpipe/junction{ @@ -48863,14 +49185,6 @@ }, /turf/open/floor/iron/cafeteria, /area/service/kitchen) -"qEu" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/iron/dark, -/area/commons/locker) "qEB" = ( /obj/machinery/door/window/southright{ dir = 4; @@ -48880,21 +49194,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron, /area/engineering/main) -"qEQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/airalarm/directional/west, -/obj/machinery/light/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Virology Central Hallway"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/medical/virology) "qFa" = ( /obj/effect/landmark/start/depsec/medical, /obj/machinery/button/door/directional/east{ @@ -48956,13 +49255,6 @@ /obj/item/wrench, /turf/open/floor/iron/dark, /area/engineering/supermatter/room) -"qFC" = ( -/obj/machinery/light_switch/directional/east, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/ai_monitored/security/armory) "qFD" = ( /obj/item/radio/intercom/directional/south, /turf/open/floor/iron/dark, @@ -48974,28 +49266,6 @@ }, /turf/open/floor/iron/grimy, /area/tcommsat/computer) -"qFQ" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 4 - }, -/obj/structure/sign/poster/official/random/directional/east, -/turf/open/floor/iron, -/area/engineering/break_room) -"qFU" = ( -/obj/structure/rack, -/obj/effect/spawner/random/maintenance/two, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/plating, -/area/maintenance/port) -"qFW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/atmos/air_output{ - dir = 1 - }, -/turf/open/floor/engine/air, -/area/engineering/atmos) "qGt" = ( /obj/effect/spawner/random/vending/colavend, /turf/open/floor/iron/dark, @@ -49005,19 +49275,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"qGv" = ( -/obj/machinery/camera/autoname{ - dir = 5 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/effect/landmark/start/depsec/engineering, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/security/checkpoint/engineering) "qGz" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -49035,6 +49292,15 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/aft/greater) +"qGX" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/medical/pharmacy) "qHa" = ( /obj/machinery/firealarm/directional/south, /obj/effect/turf_decal/tile/neutral{ @@ -49060,13 +49326,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/port) -"qHQ" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/genetics) "qHT" = ( /obj/machinery/atmospherics/components/binary/thermomachine/freezer{ dir = 1 @@ -49086,6 +49345,14 @@ dir = 1 }, /area/engineering/main) +"qIk" = ( +/obj/structure/table/reinforced, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/security/checkpoint/customs) "qIn" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -49094,16 +49361,12 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"qIN" = ( -/obj/machinery/firealarm/directional/west, -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/green/fourcorners, -/turf/open/floor/iron, -/area/hallway/primary/central) +"qIQ" = ( +/obj/structure/closet/masks, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/iron/dark, +/area/commons/fitness/recreation) "qJt" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -49137,18 +49400,6 @@ }, /turf/open/floor/iron, /area/engineering/atmos) -"qJQ" = ( -/obj/machinery/disposal/bin, -/obj/machinery/light_switch/directional/south, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Fitness Room - Aft" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/commons/fitness/recreation) "qKa" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -49179,20 +49430,6 @@ }, /turf/open/floor/iron/dark, /area/command/bridge) -"qKq" = ( -/obj/machinery/door/window/brigdoor/security/cell{ - id = "Cell 3"; - name = "Cell 3" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/security/brig) "qKK" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -49202,14 +49439,6 @@ dir = 1 }, /area/engineering/storage_shared) -"qKO" = ( -/obj/machinery/status_display/evac/directional/south, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/iron, -/area/science/mixing) "qLc" = ( /obj/effect/turf_decal/trimline/blue/filled/corner, /obj/structure/disposalpipe/segment{ @@ -49224,40 +49453,34 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/medical/medbay/lobby) +"qLm" = ( +/obj/structure/sign/map/right{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-right-MS"; + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/computer/atmos_alert, +/turf/open/floor/iron/dark, +/area/engineering/main) "qLD" = ( /obj/structure/table/wood, /obj/effect/spawner/random/decoration/ornament, /turf/open/floor/wood, /area/commons/vacant_room/office) -"qLJ" = ( -/obj/structure/closet{ - name = "Evidence Closet 2" - }, -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/security/brig) "qLO" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/engine, /area/engineering/supermatter/room) -"qLU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/obj/structure/cable, -/obj/item/kirbyplants/random, -/obj/machinery/camera/directional/east{ - c_tag = "Science - Server Room"; - name = "science camera"; - network = list("ss13","rd") +"qLV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/server) +/obj/structure/sign/poster/random/directional/west, +/turf/open/floor/iron, +/area/hallway/primary/central) "qLW" = ( /turf/open/floor/plating/airless{ icon_state = "panelscorched" @@ -49286,22 +49509,6 @@ }, /turf/open/floor/engine, /area/science/xenobiology) -"qMH" = ( -/obj/structure/table/glass, -/obj/item/scalpel{ - pixel_y = 12 - }, -/obj/item/circular_saw, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/item/blood_filter, -/obj/machinery/light/directional/north, -/obj/item/bonesetter, -/obj/machinery/button/door/directional/north{ - id = "main_surgery"; - name = "privacy shutters control" - }, -/turf/open/floor/iron/white, -/area/medical/surgery/theatre) "qMO" = ( /obj/structure/window/reinforced, /obj/machinery/door/window/eastright{ @@ -49326,13 +49533,15 @@ }, /turf/open/floor/iron/white/corner, /area/hallway/secondary/entry) -"qNC" = ( -/obj/structure/toilet/greyscale{ - dir = 4 +"qNo" = ( +/obj/machinery/disposal/bin, +/obj/structure/cable, +/obj/structure/disposalpipe/trunk{ + dir = 2 }, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron/white, -/area/security/prison) +/obj/effect/turf_decal/tile/red/half/contrasted, +/turf/open/floor/iron/dark, +/area/security/office) "qNE" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, @@ -49352,26 +49561,24 @@ }, /turf/open/floor/engine, /area/engineering/supermatter/room) -"qNY" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/machinery/airalarm/directional/north, -/obj/machinery/light/directional/east, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 +"qOk" = ( +/obj/item/wrench, +/obj/item/stack/sheet/glass{ + amount = 30 }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 +/obj/item/stack/sheet/iron{ + amount = 30 }, -/turf/open/floor/iron/dark, -/area/security/lockers) -"qOc" = ( -/obj/item/candle, -/obj/machinery/light_switch/directional/north, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/service/chapel) +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/structure/closet, +/obj/item/vending_refill/cigarette, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/sign/poster/random/directional/south, +/turf/open/floor/wood, +/area/service/bar) "qOr" = ( /obj/effect/turf_decal/tile/bar, /obj/effect/turf_decal/tile/bar{ @@ -49468,19 +49675,14 @@ /turf/open/floor/engine, /area/engineering/atmospherics_engine) "qQv" = ( -/obj/structure/closet/secure_closet/security/engine, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/purple{ + dir = 5 + }, /obj/machinery/airalarm/directional/east, -/obj/machinery/requests_console/directional/south{ - department = "Security"; - departmentType = 5; - name = "Security Requests Console" - }, -/obj/machinery/firealarm/directional/south{ - pixel_x = 26 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron, -/area/security/checkpoint/engineering) +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/genetics) "qQK" = ( /obj/effect/spawner/random/maintenance, /obj/structure/cable, @@ -49509,6 +49711,23 @@ }, /turf/open/floor/iron/dark, /area/engineering/gravity_generator) +"qRS" = ( +/obj/structure/table, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/clothing/gloves/cargo_gauntlet{ + pixel_y = -3 + }, +/obj/item/clothing/gloves/cargo_gauntlet, +/obj/item/clothing/gloves/cargo_gauntlet{ + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/cargo/storage) "qSg" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ dir = 6 @@ -49522,12 +49741,11 @@ icon_state = "wood-broken3" }, /area/cargo/qm) -"qSs" = ( -/obj/structure/closet/lasertag/red, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover/closet, +"qSW" = ( +/obj/machinery/bounty_board/directional/south, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted, /turf/open/floor/iron/dark, -/area/commons/fitness/recreation) +/area/command/bridge) "qTb" = ( /obj/structure/window/reinforced{ dir = 4 @@ -49568,31 +49786,6 @@ /obj/item/food/grown/banana, /turf/open/floor/grass, /area/medical/virology) -"qTP" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/button/door/directional/south{ - id = "mechbay"; - name = "Mech Bay Shutters Control"; - req_access_txt = "29" - }, -/obj/effect/turf_decal/tile/purple/half/contrasted, -/turf/open/floor/iron/white, -/area/science/lobby) -"qTW" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/effect/turf_decal/tile/purple/fourcorners, -/turf/open/floor/iron, -/area/hallway/primary/aft) -"qUh" = ( -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white/corner, -/area/medical/medbay/lobby) "qUi" = ( /obj/structure/chair/office{ dir = 8 @@ -49668,47 +49861,6 @@ /obj/effect/spawner/random/structure/girder, /turf/open/floor/plating, /area/maintenance/port/aft) -"qWm" = ( -/obj/item/assembly/timer{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/assembly/timer{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/assembly/igniter{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/assembly/igniter{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/assembly/igniter{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/assembly/igniter{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/assembly/timer{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/assembly/timer{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/obj/item/storage/pill_bottle/epinephrine{ - pixel_x = 8; - pixel_y = 5 - }, -/turf/open/floor/iron/white, -/area/medical/pharmacy) "qWn" = ( /obj/structure/table/wood, /obj/item/paper_bin/carbon{ @@ -49788,18 +49940,13 @@ }, /turf/open/floor/iron/dark, /area/command/heads_quarters/rd) -"qXC" = ( -/obj/structure/chair, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/trimline/blue/filled/corner{ +"qXO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/medical/medbay/lobby) +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/mixing/launch) "qYf" = ( /obj/structure/table, /obj/item/paper_bin/construction, @@ -49826,6 +49973,57 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/command/bridge) +"qYZ" = ( +/obj/structure/table/glass, +/obj/item/hand_labeler, +/obj/item/radio/headset/headset_med, +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/medical/virology) +"qZc" = ( +/obj/structure/rack, +/obj/item/storage/box/shipping, +/obj/item/pushbroom, +/obj/machinery/light_switch/directional/south, +/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/cargo/sorting) +"qZd" = ( +/obj/structure/cable, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/poster/random/directional/south, +/turf/open/floor/plating, +/area/hallway/secondary/service) +"qZh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/depsec/engineering, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/security/checkpoint/engineering) +"qZi" = ( +/obj/structure/rack, +/obj/machinery/firealarm/directional/west, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/clothing/suit/hazardvest, +/obj/item/multitool, +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/commons/storage/tools) "qZk" = ( /obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ dir = 9 @@ -49836,6 +50034,29 @@ /obj/machinery/drone_dispenser, /turf/open/floor/plating, /area/maintenance/department/science/central) +"qZx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera/directional/south{ + c_tag = "Engineering - Desk" + }, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/south, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron, +/area/engineering/break_room) +"qZE" = ( +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Server Access"; + req_access_txt = "30" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/turf/open/floor/iron/dark, +/area/science/server) "qZG" = ( /obj/machinery/modular_computer/console/preset/research{ dir = 8 @@ -49850,20 +50071,21 @@ /obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, /area/command/bridge) +"qZM" = ( +/obj/structure/rack, +/obj/item/storage/secure/briefcase, +/obj/item/clothing/mask/cigarette/cigar, +/obj/machinery/computer/security/telescreen/ce{ + dir = 1; + pixel_y = -30 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/command/heads_quarters/ce) "qZN" = ( /obj/effect/landmark/start/scientist, /turf/open/floor/iron/white, /area/science/mixing) -"qZV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/plating, -/area/maintenance/starboard/greater) "rah" = ( /turf/open/floor/plating, /area/maintenance/starboard/lesser) @@ -49949,18 +50171,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/chapel, /area/service/chapel) -"rcx" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/button/door/directional/south{ - id = "chapel_shutters_parlour"; - name = "chapel shutters control" - }, -/turf/open/floor/iron/dark, -/area/service/chapel/funeral) "rcz" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -49975,22 +50185,20 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/command/gateway) -"rcO" = ( -/obj/structure/rack, -/obj/item/clothing/under/color/red, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/neck/tie/red, -/obj/item/clothing/head/soft/red, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/commons/fitness/recreation) -"rcX" = ( -/obj/structure/filingcabinet, -/obj/item/folder/documents, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ai_monitored/command/nuke_storage) +"rcP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) "rdj" = ( /obj/structure/chair/stool/bar/directional/south, /obj/effect/turf_decal/tile/bar, @@ -50018,6 +50226,14 @@ }, /turf/open/floor/iron, /area/science/lab) +"rdr" = ( +/obj/machinery/door/airlock/medical{ + name = "Primary Surgical Theatre"; + req_access_txt = "45" + }, +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/iron/white, +/area/medical/treatment_center) "rdE" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plating, @@ -50048,6 +50264,21 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/maintenance/port/aft) +"reQ" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/structure/table, +/obj/item/clothing/gloves/color/latex{ + pixel_x = 4; + pixel_y = 9 + }, +/obj/item/storage/box/monkeycubes{ + pixel_x = 4 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/genetics) "reV" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 1 @@ -50072,19 +50303,6 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/greater) -"rfd" = ( -/obj/machinery/dna_scannernew, -/obj/effect/turf_decal/siding/purple{ - dir = 10 - }, -/obj/machinery/requests_console/directional/west{ - department = "Genetics"; - departmentType = 2; - name = "Genetics Requests Console" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/genetics) "rfj" = ( /obj/effect/turf_decal/siding/purple{ dir = 4 @@ -50104,23 +50322,6 @@ }, /turf/open/floor/iron/freezer, /area/commons/toilet/restrooms) -"rfu" = ( -/obj/structure/table, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/clothing/gloves/cargo_gauntlet{ - pixel_y = -3 - }, -/obj/item/clothing/gloves/cargo_gauntlet, -/obj/item/clothing/gloves/cargo_gauntlet{ - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/cargo/storage) "rfy" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/carpet, @@ -50172,21 +50373,16 @@ /obj/structure/table/wood, /turf/open/floor/carpet, /area/command/corporate_showroom) -"rge" = ( -/obj/structure/rack, -/obj/item/radio/off{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/radio/off{ - pixel_x = -6; - pixel_y = 7 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/security/office) +"rgc" = ( +/obj/structure/table/wood, +/obj/item/food/grown/harebell, +/obj/item/food/grown/harebell, +/obj/item/food/grown/harebell, +/obj/item/food/grown/harebell, +/obj/item/food/grown/harebell, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/service/chapel) "rgj" = ( /obj/machinery/door/window{ name = "Captain's Desk"; @@ -50195,26 +50391,10 @@ /obj/structure/cable, /turf/open/floor/wood, /area/command/heads_quarters/captain/private) -"rgk" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/medical/cryo) "rgC" = ( /obj/item/target/alien, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"rgF" = ( -/obj/machinery/light/small/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "MiniSat Exterior - Space Access"; - network = list("minisat") - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ai_monitored/aisat/exterior) "rgI" = ( /obj/item/radio/intercom/directional/north, /obj/effect/turf_decal/tile/neutral{ @@ -50222,17 +50402,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/central) -"rgR" = ( -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/item/toy/plush/beeplushie{ - desc = "Maybe hugging this will make you feel better about yourself."; - name = "Therabee" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/security/prison) "rhb" = ( /obj/effect/turf_decal/siding, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -50241,6 +50410,15 @@ /obj/machinery/light/directional/west, /turf/open/floor/iron, /area/science/lab) +"rhi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) "rhj" = ( /obj/machinery/holopad, /obj/structure/cable, @@ -50267,6 +50445,20 @@ }, /turf/open/floor/plating, /area/maintenance/aft/lesser) +"rhP" = ( +/obj/machinery/shower{ + name = "emergency shower"; + pixel_y = 16 + }, +/obj/effect/turf_decal/trimline/blue/end, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/medical/chemistry) "rhT" = ( /turf/closed/wall, /area/maintenance/department/science/xenobiology) @@ -50384,17 +50576,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/maintenance/starboard/greater) -"rkR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/plating, -/area/maintenance/port) "rkT" = ( /obj/effect/spawner/random/maintenance, /obj/structure/cable, @@ -50418,15 +50599,6 @@ /obj/structure/chair/stool/directional/north, /turf/open/floor/wood, /area/maintenance/port/aft) -"rlz" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - sortType = 14 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/robotics/lab) "rlQ" = ( /obj/structure/closet/emcloset, /turf/open/floor/plating, @@ -50460,6 +50632,15 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/floor/plating, /area/maintenance/aft/lesser) +"rmt" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 6 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/engineering/atmos) "rmu" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -50487,13 +50668,17 @@ "rmG" = ( /turf/closed/wall/r_wall, /area/security/office) -"rmL" = ( -/obj/machinery/computer/station_alert, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 +"rmY" = ( +/obj/machinery/computer/security/mining{ + dir = 4 }, -/turf/open/floor/iron/dark, -/area/command/bridge) +/obj/machinery/light/directional/north, +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/security/checkpoint/supply) "rnj" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/eastleft{ @@ -50529,6 +50714,13 @@ /obj/machinery/atmospherics/pipe/smart/simple/dark/visible, /turf/closed/wall/r_wall, /area/maintenance/disposal/incinerator) +"rnT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/command/bridge) "rnU" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 1 @@ -50539,6 +50731,12 @@ /obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, /area/science/cytology) +"rnX" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ai_monitored/command/storage/eva) "rof" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -50546,13 +50744,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/primary/port) -"roi" = ( -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 +"rog" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 }, -/turf/open/floor/iron/white, -/area/medical/chemistry) +/obj/effect/landmark/start/roboticist, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/robotics/lab) "rok" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -50574,6 +50774,14 @@ }, /turf/open/floor/iron/white, /area/science/research) +"rot" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/machinery/atmospherics/components/trinary/filter/atmos/n2{ + dir = 4 + }, +/turf/open/floor/iron, +/area/engineering/atmos) "roE" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -50601,38 +50809,37 @@ }, /turf/open/floor/iron/white/smooth_large, /area/medical/medbay/central) -"rpc" = ( -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" +"rpp" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -1; + pixel_y = 5 }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge Access"; - req_access_txt = "19" +/obj/item/pen, +/obj/machinery/computer/security/telescreen{ + desc = "Used for monitoring the engine."; + dir = 8; + name = "Engine Monitor"; + network = list("engine"); + pixel_x = 26 }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/navbeacon/wayfinding, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "bridge-left" +/obj/machinery/button/door/directional/east{ + id = "Engineering"; + name = "Engineering Lockdown"; + pixel_y = 16; + req_one_access_txt = "1;10" }, -/turf/open/floor/iron/dark, -/area/command/bridge) -"rpw" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 +/obj/machinery/button/door/directional/east{ + id = "atmos"; + name = "Atmospherics Lockdown"; + pixel_y = 24; + req_one_access_txt = "1;24" }, -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 8 +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 }, -/obj/item/radio/intercom/directional/west, -/obj/structure/cable, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/engineering/atmos/pumproom) +/turf/open/floor/iron, +/area/security/checkpoint/engineering) "rpK" = ( /obj/structure/urinal/directional/north, /obj/effect/landmark/start/hangover, @@ -50656,18 +50863,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/security/brig) -"rpY" = ( -/obj/structure/table, -/obj/machinery/light/directional/south, -/obj/item/storage/medkit/regular{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/medkit/regular, -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/white, -/area/medical/medbay/central) "rqc" = ( /obj/structure/lattice/catwalk, /obj/item/stack/cable_coil, @@ -50729,22 +50924,16 @@ }, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) -"rrg" = ( -/obj/structure/window/reinforced, -/obj/machinery/computer/atmos_control/tank/oxygen_tank{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/engineering/atmos) "rrt" = ( /obj/structure/lattice, /obj/effect/spawner/random/structure/grille, /turf/open/space/basic, /area/space/nearstation) +"rrx" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/command/gateway) "rrG" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -50768,21 +50957,22 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron, /area/engineering/main) -"rrR" = ( -/obj/machinery/firealarm/directional/west, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/command/heads_quarters/ce) "rrU" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/command/bridge) +"rrV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Medbay Security Post"; + req_access_txt = "63" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/red/fourcorners, +/turf/open/floor/iron/dark, +/area/security/checkpoint/medical) "rsa" = ( /obj/machinery/door/window/eastright{ base_state = "left"; @@ -50794,6 +50984,18 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron, /area/security/office) +"rsg" = ( +/obj/structure/rack, +/obj/item/storage/box/firingpins{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/firingpins, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/security/lockers) "rsl" = ( /obj/structure/window/reinforced{ dir = 8 @@ -50815,6 +51017,16 @@ }, /turf/open/floor/iron, /area/science/xenobiology) +"rsW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/sorting/mail{ + sortType = 27 + }, +/obj/effect/turf_decal/tile/green/half/contrasted, +/turf/open/floor/iron/white, +/area/medical/virology) "rtc" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -50862,29 +51074,6 @@ }, /turf/open/floor/wood, /area/commons/lounge) -"rtK" = ( -/obj/structure/window/reinforced, -/obj/machinery/computer/atmos_control/tank/air_tank{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/iron/cafeteria, -/area/engineering/atmos) -"rtO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/security/execution/education) "rtV" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/freezer, @@ -50893,16 +51082,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/maintenance/port/aft) -"rui" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/structure/sign/poster/contraband/random/directional/west, -/turf/open/floor/plating, -/area/maintenance/port/greater) -"run" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ai_monitored/aisat/exterior) "ruw" = ( /obj/structure/sink{ dir = 4; @@ -50948,13 +51127,6 @@ /obj/machinery/light_switch/directional/south, /turf/open/floor/iron/white, /area/security/prison) -"rvm" = ( -/obj/structure/closet/wardrobe/pjs, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover/closet, -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/iron/dark, -/area/commons/dorms) "rvo" = ( /obj/structure/noticeboard/directional/north, /obj/effect/turf_decal/tile/neutral{ @@ -50984,26 +51156,6 @@ /obj/structure/closet/radiation, /turf/open/floor/iron/dark, /area/engineering/atmospherics_engine) -"rvG" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/directional/east, -/turf/open/floor/iron/dark, -/area/command/heads_quarters/ce) -"rvO" = ( -/obj/machinery/light/directional/south, -/obj/machinery/doppler_array{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/mixing/launch) "rvR" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment{ @@ -51030,6 +51182,20 @@ }, /turf/open/floor/iron, /area/security/brig) +"rwK" = ( +/obj/machinery/requests_console/directional/east{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge Requests Console" + }, +/obj/machinery/computer/cargo/request, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/command/bridge) "rwN" = ( /obj/machinery/firealarm/directional/south, /obj/machinery/camera/autoname/directional/south, @@ -51061,6 +51227,16 @@ /obj/structure/cable, /turf/open/floor/iron, /area/engineering/gravity_generator) +"rxy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/robotics/lab) "rxA" = ( /obj/item/stack/sheet/iron/fifty, /obj/item/stack/rods/fifty, @@ -51098,17 +51274,6 @@ "rya" = ( /turf/open/floor/plating, /area/maintenance/starboard/greater) -"rye" = ( -/obj/machinery/computer/scan_consolenew{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/genetics) "ryh" = ( /obj/structure/table/wood, /obj/item/paper_bin{ @@ -51178,14 +51343,6 @@ /obj/effect/landmark/start/roboticist, /turf/open/floor/iron, /area/science/robotics/lab) -"rzL" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/medical/virology) "rzQ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment{ @@ -51199,21 +51356,6 @@ "rzR" = ( /turf/closed/wall/r_wall, /area/engineering/gravity_generator) -"rzX" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/white/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/storage) "rAm" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/trimline/blue/filled/line{ @@ -51234,16 +51376,55 @@ "rAF" = ( /turf/closed/wall/r_wall, /area/medical/chemistry) +"rAT" = ( +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/item/toy/plush/beeplushie{ + desc = "Maybe hugging this will make you feel better about yourself."; + name = "Therabee" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/security/prison) "rAV" = ( /turf/open/floor/iron/dark, /area/service/chapel) -"rAW" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Distro Staging to Distro" +"rAX" = ( +/obj/structure/closet/crate/secure/weapon{ + desc = "A secure clothing crate."; + name = "formal uniform crate"; + req_access_txt = "3" }, -/turf/open/floor/iron, -/area/engineering/atmos/pumproom) +/obj/item/clothing/under/rank/security/officer/formal, +/obj/item/clothing/under/rank/security/officer/formal, +/obj/item/clothing/under/rank/security/officer/formal, +/obj/item/clothing/under/rank/security/officer/formal, +/obj/item/clothing/under/rank/security/officer/formal, +/obj/item/clothing/under/rank/security/officer/formal, +/obj/item/clothing/suit/security/officer, +/obj/item/clothing/suit/security/officer, +/obj/item/clothing/suit/security/officer, +/obj/item/clothing/suit/security/officer, +/obj/item/clothing/suit/security/officer, +/obj/item/clothing/suit/security/officer, +/obj/item/clothing/under/rank/security/warden/formal, +/obj/item/clothing/suit/security/warden, +/obj/item/clothing/under/rank/security/head_of_security/formal, +/obj/item/clothing/suit/security/hos, +/obj/item/clothing/head/beret/sec/navyofficer, +/obj/item/clothing/head/beret/sec/navyofficer, +/obj/item/clothing/head/beret/sec/navyofficer, +/obj/item/clothing/head/beret/sec/navyofficer, +/obj/item/clothing/head/beret/sec/navyofficer, +/obj/item/clothing/head/beret/sec/navyofficer, +/obj/item/clothing/head/beret/sec/navywarden, +/obj/item/clothing/head/hos/beret/navyhos, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue/half/contrasted, +/turf/open/floor/iron/dark, +/area/security/lockers) "rBe" = ( /obj/machinery/door/window/westleft{ dir = 4; @@ -51280,44 +51461,17 @@ }, /turf/open/floor/iron, /area/hallway/primary/central) -"rBY" = ( -/obj/machinery/light/directional/north, -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ +"rCr" = ( +/obj/structure/window/reinforced, +/obj/machinery/computer/atmos_control/nitrous_tank{ dir = 1 }, -/turf/open/floor/iron, -/area/hallway/primary/central) -"rCa" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/structure/sign/poster/random/directional/south, -/turf/open/floor/iron, -/area/service/hydroponics) -"rCb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/loading_area{ +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ dir = 4 }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/robotics/lab) -"rCo" = ( -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/medical/virology) +/obj/effect/turf_decal/tile/yellow/fourcorners, +/turf/open/floor/iron, +/area/engineering/atmos) "rCt" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 1 @@ -51331,10 +51485,6 @@ }, /turf/open/floor/iron, /area/cargo/storage) -"rCJ" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/turf/closed/wall, -/area/engineering/atmos/pumproom) "rCW" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/maintenance{ @@ -51344,6 +51494,20 @@ /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/aft/greater) +"rCY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/no_nightlight/directional/north, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/engineering/atmos) "rDn" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -51358,33 +51522,6 @@ /obj/machinery/newscaster/security_unit/directional/west, /turf/open/floor/carpet, /area/command/heads_quarters/captain/private) -"rDM" = ( -/obj/structure/chair{ - dir = 4; - name = "Prosecution" - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/security/courtroom) -"rDP" = ( -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/machinery/door/airlock/research{ - name = "Research Division Access"; - req_access_txt = "47" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "sci-entrance" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/science/research) "rDS" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -51402,37 +51539,12 @@ }, /turf/open/floor/iron, /area/engineering/main) -"rEt" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, +"rFa" = ( +/obj/machinery/research/anomaly_refinery, +/obj/effect/turf_decal/delivery, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/science/mixing/launch) -"rEY" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/security/office) -"rFp" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Distro to Waste" - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/engineering/atmos/pumproom) "rFq" = ( /obj/machinery/pdapainter{ pixel_y = 2 @@ -51496,6 +51608,20 @@ }, /turf/open/floor/engine, /area/engineering/supermatter/room) +"rGz" = ( +/obj/effect/turf_decal/bot_white/left, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/command/gateway) +"rGG" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/camera/directional/east{ + c_tag = "MiniSat Exterior - Fore Port"; + network = list("minisat") + }, +/obj/structure/window/reinforced, +/turf/open/floor/iron/dark, +/area/ai_monitored/aisat/exterior) "rGV" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 @@ -51575,6 +51701,18 @@ /obj/machinery/light/small/directional/east, /turf/open/floor/iron/dark/textured, /area/engineering/atmos) +"rIJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/firealarm/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/starboard) "rIL" = ( /obj/structure/tank_dispenser/oxygen{ pixel_x = -1; @@ -51593,6 +51731,12 @@ }, /turf/open/floor/iron/dark, /area/command/heads_quarters/cmo) +"rJg" = ( +/obj/machinery/light/directional/north, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/tile/red/half/contrasted, +/turf/open/floor/iron, +/area/security/office) "rJm" = ( /obj/structure/cable, /obj/structure/table/glass, @@ -51605,31 +51749,27 @@ }, /turf/open/floor/iron/white, /area/medical/virology) -"rJr" = ( -/obj/machinery/atmospherics/components/binary/thermomachine/heater/on, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 +"rJt" = ( +/obj/structure/table/glass, +/obj/machinery/computer/med_data/laptop, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 }, -/turf/open/floor/iron/dark, -/area/engineering/atmos) +/turf/open/floor/iron/white, +/area/command/heads_quarters/cmo) "rJv" = ( /turf/open/floor/plating, /area/hallway/primary/port) +"rJC" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/service/chapel/funeral) "rJE" = ( /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/iron, /area/cargo/storage) -"rJR" = ( -/obj/machinery/status_display/evac/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/power/port_gen/pacman, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable/multilayer/connected, -/turf/open/floor/iron/dark, -/area/ai_monitored/command/storage/satellite) "rJU" = ( /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/yellow{ @@ -51665,6 +51805,20 @@ /obj/structure/extinguisher_cabinet/directional/east, /turf/open/floor/iron/freezer, /area/commons/toilet/restrooms) +"rLc" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Storage"; + req_access_txt = "5" + }, +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/iron/white, +/area/medical/storage) +"rLq" = ( +/obj/structure/closet/secure_closet/security/cargo, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/tile/red/half/contrasted, +/turf/open/floor/iron, +/area/security/checkpoint/supply) "rLv" = ( /turf/open/floor/plating/foam{ initial_gas_mix = "TEMP=2.7" @@ -51755,21 +51909,20 @@ /obj/machinery/airalarm/directional/north, /turf/open/floor/iron/white, /area/science/lobby) -"rNd" = ( -/obj/machinery/computer/shuttle/mining{ - dir = 1; - req_access = null - }, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/cargo/miningoffice) "rNf" = ( /obj/structure/cable, /obj/structure/lattice/catwalk, /turf/open/space/basic, /area/space/nearstation) +"rNn" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/security/prison) "rNr" = ( /obj/machinery/holopad, /obj/structure/cable, @@ -51818,15 +51971,19 @@ "rOa" = ( /turf/closed/wall, /area/science/lobby) -"rOh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"rOb" = ( +/obj/structure/rack, +/obj/item/aicard, +/obj/item/radio/off, +/obj/machinery/computer/security/telescreen/minisat{ + dir = 1; + pixel_y = -29 }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/plating, -/area/maintenance/fore) +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/command/bridge) "rOi" = ( /obj/structure/cable, /obj/effect/turf_decal/stripes/line{ @@ -51851,13 +52008,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/department/medical/central) -"rOx" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/cargo/storage) "rOB" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, @@ -51872,6 +52022,13 @@ /obj/machinery/airalarm/directional/east, /turf/open/floor/iron, /area/security/prison) +"rOQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/medical/surgery/theatre) "rOZ" = ( /obj/machinery/camera{ c_tag = "Xenobiology Lab - Pen #3"; @@ -51880,11 +52037,33 @@ }, /turf/open/floor/engine, /area/science/xenobiology) +"rPb" = ( +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/photocopier, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron, +/area/engineering/break_room) "rPd" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/science/lab) +"rPh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity{ + name = "Secure Network Access"; + req_access_txt = "19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/ai_monitored/turret_protected/ai_upload_foyer) "rPl" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/engineering/glass{ @@ -51905,23 +52084,13 @@ dir = 4 }, /area/science/lab) -"rPs" = ( -/obj/structure/table, -/obj/item/stack/package_wrap{ - pixel_x = -9; - pixel_y = -9 - }, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, +"rPp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 1 +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 }, /turf/open/floor/iron, -/area/cargo/sorting) +/area/service/hydroponics/garden) "rPv" = ( /obj/machinery/door/airlock/mining{ name = "Mining Office"; @@ -51936,6 +52105,30 @@ /obj/machinery/light/small/directional/west, /turf/open/floor/iron, /area/engineering/atmos) +"rPP" = ( +/obj/machinery/atmospherics/components/binary/thermomachine/freezer{ + dir = 8; + initialize_directions = 8 + }, +/turf/open/floor/iron, +/area/engineering/atmos/pumproom) +"rPR" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/button/door/directional/west{ + id = "Engineering"; + name = "Engineering Lockdown"; + pixel_y = -6; + req_access_txt = "10" + }, +/obj/machinery/button/door/directional/west{ + id = "atmos"; + name = "Atmospherics Lockdown"; + pixel_y = 6; + req_access_txt = "24" + }, +/turf/open/floor/iron/dark, +/area/command/heads_quarters/ce) "rPX" = ( /obj/machinery/shower{ dir = 8 @@ -51981,12 +52174,16 @@ /obj/item/kirbyplants/random, /turf/open/floor/iron, /area/engineering/main) -"rQP" = ( -/obj/machinery/computer/bank_machine, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral/fourcorners, +"rQA" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Port to Filter" + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, /turf/open/floor/iron/dark, -/area/ai_monitored/command/nuke_storage) +/area/engineering/atmos) "rQW" = ( /obj/structure/bed, /obj/item/bedsheet/dorms, @@ -52005,6 +52202,26 @@ /obj/structure/table/wood, /turf/open/floor/iron/grimy, /area/tcommsat/computer) +"rRf" = ( +/obj/structure/rack, +/obj/item/grenade/barrier{ + pixel_x = -3; + pixel_y = 1 + }, +/obj/item/grenade/barrier, +/obj/item/grenade/barrier{ + pixel_x = 3; + pixel_y = -1 + }, +/obj/item/grenade/barrier{ + pixel_x = 6; + pixel_y = -2 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/ai_monitored/security/armory) "rRg" = ( /obj/machinery/door/airlock/atmos{ name = "Hypertorus Fusion Reactor"; @@ -52024,6 +52241,33 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/command/heads_quarters/captain/private) +"rRp" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted, +/turf/open/floor/iron, +/area/service/hydroponics/garden) +"rRs" = ( +/obj/structure/table/reinforced, +/obj/item/tank/internals/anesthetic{ + pixel_x = 3 + }, +/obj/item/tank/internals/anesthetic, +/obj/item/tank/internals/anesthetic{ + pixel_x = -3 + }, +/obj/item/clothing/mask/breath/medical{ + pixel_y = -3 + }, +/obj/item/clothing/mask/breath/medical, +/obj/item/clothing/mask/breath/medical{ + pixel_y = 3 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/iron/white, +/area/medical/surgery/theatre) "rRw" = ( /obj/structure/table/glass, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -52046,6 +52290,12 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/iron, /area/commons/dorms) +"rRL" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/iron/dark, +/area/commons/fitness/recreation) "rRW" = ( /obj/structure/window/reinforced{ dir = 8 @@ -52144,6 +52394,24 @@ }, /turf/open/floor/iron, /area/cargo/sorting) +"rTW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyer"; + name = "Medbay"; + req_access_txt = "5" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/medical/medbay/central) "rUd" = ( /obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ dir = 8 @@ -52182,11 +52450,6 @@ /obj/item/kirbyplants/random, /turf/open/floor/iron/white, /area/science/xenobiology) -"rUx" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/iv_drip, -/turf/open/floor/iron/white, -/area/medical/treatment_center) "rUM" = ( /obj/structure/disposalpipe/segment{ dir = 6 @@ -52196,18 +52459,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/port/fore) -"rUT" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/medical/medbay/central) "rVa" = ( /obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ dir = 4 @@ -52218,14 +52469,6 @@ "rVn" = ( /turf/open/floor/iron, /area/construction/storage_wing) -"rVt" = ( -/obj/effect/turf_decal/box, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/science/mixing/launch) "rVz" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, /turf/open/floor/iron/dark, @@ -52342,6 +52585,27 @@ /obj/machinery/light/small/directional/west, /turf/open/floor/wood, /area/command/heads_quarters/captain/private) +"rYl" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/starboard) +"rYA" = ( +/obj/machinery/porta_turret/ai, +/obj/machinery/flasher/directional/north{ + id = "AI" + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ai_monitored/turret_protected/ai) "rYK" = ( /obj/machinery/light_switch/directional/east, /obj/machinery/light/small/directional/east, @@ -52364,6 +52628,14 @@ }, /turf/open/floor/iron, /area/hallway/secondary/command) +"rYZ" = ( +/obj/machinery/light/directional/north, +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/hallway/primary/central) "rZd" = ( /obj/machinery/holopad, /obj/effect/turf_decal/box/white{ @@ -52383,36 +52655,22 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron/dark/corner, /area/engineering/storage_shared) -"rZA" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 +"rZy" = ( +/obj/machinery/camera/directional/east{ + c_tag = "AI Chamber - Starboard"; + network = list("aicore") + }, +/obj/structure/showcase/cyborg/old{ + dir = 8; + pixel_x = 9; + pixel_y = 2 }, -/obj/machinery/light/small/directional/east, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/science/mixing/launch) +/area/ai_monitored/turret_protected/ai) "rZE" = ( /turf/closed/wall, /area/science/mixing/launch) -"rZG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"rZJ" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Chemistry East"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/medical/chemistry) "saq" = ( /obj/machinery/light/directional/west, /obj/item/radio/intercom/directional/west, @@ -52421,19 +52679,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/command/bridge) -"sav" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/siding/white{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white/side, -/area/medical/treatment_center) "saA" = ( /obj/machinery/door/poddoor/shutters{ id = "qm_warehouse"; @@ -52446,6 +52691,13 @@ }, /turf/open/floor/iron, /area/cargo/warehouse) +"saT" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/security/checkpoint/customs) "sbk" = ( /obj/machinery/light/small/directional/north, /turf/open/floor/iron/dark/telecomms, @@ -52499,16 +52751,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/security/prison) -"scD" = ( -/obj/effect/spawner/random/vending/snackvend, -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security in red at the top, you see engineering in yellow, science in purple, escape in checkered red-and-white, medbay in green, arrivals in checkered red-and-blue, and then cargo in brown."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/hallway/secondary/exit/departure_lounge) "scK" = ( /obj/effect/spawner/structure/window/reinforced/plasma, /turf/open/floor/plating, @@ -52524,6 +52766,11 @@ /obj/structure/sign/warning/securearea, /turf/closed/wall, /area/maintenance/aft/lesser) +"scT" = ( +/obj/effect/turf_decal/bot_white/left, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/engineering/gravity_generator) "scZ" = ( /obj/machinery/atmospherics/pipe/layer_manifold/yellow/visible, /turf/open/floor/iron/dark, @@ -52533,21 +52780,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/carpet, /area/command/heads_quarters/hos) -"sdz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster/random/directional/south, -/turf/open/floor/iron, -/area/hallway/secondary/service) "sdF" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -52561,6 +52793,11 @@ }, /turf/open/floor/circuit/telecomms, /area/science/xenobiology) +"sdP" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/service/chapel) "sdT" = ( /obj/structure/table/reinforced, /obj/machinery/camera/directional/west{ @@ -52614,6 +52851,17 @@ }, /turf/open/floor/iron, /area/security/warden) +"set" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/structure/rack, +/obj/item/storage/medkit/regular, +/obj/item/stack/medical/suture, +/obj/item/stack/medical/suture, +/obj/item/stack/medical/mesh, +/obj/item/clothing/glasses/hud/health, +/obj/effect/turf_decal/trimline/green/filled/line, +/turf/open/floor/iron/showroomfloor, +/area/maintenance/starboard/lesser) "seG" = ( /obj/effect/turf_decal/tile/green{ dir = 8 @@ -52681,17 +52929,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/security/prison) -"sfU" = ( -/obj/structure/rack, -/obj/item/lighter, -/obj/item/clothing/glasses/meson, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/button/door/directional/south{ - id = "ceprivacy"; - name = "Privacy Shutters Control" - }, -/turf/open/floor/iron/dark, -/area/command/heads_quarters/ce) "sga" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -52712,11 +52949,6 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"shf" = ( -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/iron, -/area/hallway/primary/aft) "shk" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -52740,12 +52972,6 @@ icon_state = "wood-broken5" }, /area/cargo/qm) -"shx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/oxygen_output{ - dir = 1 - }, -/turf/open/floor/engine/o2, -/area/engineering/atmos) "shy" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -52787,18 +53013,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/hallway/primary/central) -"sie" = ( -/obj/machinery/computer/security/labor{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/security/brig) "sig" = ( /obj/machinery/computer/security/telescreen/interrogation{ dir = 8; @@ -52807,17 +53021,6 @@ /obj/effect/turf_decal/trimline/red/filled/corner, /turf/open/floor/iron, /area/security/brig) -"sij" = ( -/obj/structure/closet/toolcloset, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/structure/sign/poster/official/random/directional/north, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/engineering/storage_shared) "siG" = ( /obj/effect/mapping_helpers/dead_body_placer, /obj/structure/cable, @@ -52837,15 +53040,6 @@ }, /turf/open/floor/iron/dark, /area/medical/morgue) -"siN" = ( -/obj/structure/closet/emcloset, -/obj/structure/sign/warning/pods{ - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron/dark, -/area/commons/fitness/recreation) "sjd" = ( /turf/closed/wall, /area/cargo/storage) @@ -52880,6 +53074,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/grimy, /area/service/chapel/office) +"sjL" = ( +/obj/structure/closet{ + name = "Evidence Closet 1" + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/tile/red/anticorner/contrasted, +/turf/open/floor/iron/dark, +/area/security/brig) "skl" = ( /obj/effect/landmark/event_spawn, /obj/structure/cable, @@ -52891,6 +53093,21 @@ icon_state = "platingdmg2" }, /area/maintenance/fore) +"sko" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching output from station security cameras."; + name = "Security Camera Monitor"; + network = list("ss13"); + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/hallway/secondary/exit/departure_lounge) "skt" = ( /obj/structure/window/reinforced, /obj/effect/turf_decal/tile/blue{ @@ -52899,6 +53116,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/ai_monitored/aisat/exterior) +"skZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/sign/poster/contraband/random/directional/north, +/turf/open/floor/plating, +/area/maintenance/port/aft) "slg" = ( /obj/item/target, /obj/structure/training_machine, @@ -52909,12 +53136,6 @@ /obj/structure/light_construct/directional/east, /turf/open/floor/plating, /area/maintenance/port/aft) -"sll" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/engineering/atmos/pumproom) "slt" = ( /obj/structure/sign/directions/security{ dir = 1; @@ -52939,19 +53160,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/security/brig) -"slW" = ( -/obj/structure/table, -/obj/effect/turf_decal/siding/purple{ - dir = 9 +"slV" = ( +/obj/machinery/door/airlock/research{ + name = "Abandoned Space Bridge"; + req_access_txt = "55" }, -/obj/item/toy/figure/geneticist, -/obj/item/radio/intercom/directional/west, -/obj/item/storage/pill_bottle/mutadone{ - pixel_x = -9 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/genetics) +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/effect/mapping_helpers/airlock/abandoned, +/turf/open/floor/iron/white, +/area/maintenance/aft/lesser) "slZ" = ( /obj/effect/landmark/blobstart, /turf/open/floor/engine/cult, @@ -52973,27 +53191,6 @@ }, /turf/open/floor/iron/dark, /area/medical/office) -"sml" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Primary Treatment Centre"; - req_access_txt = "5" - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/duct, -/turf/open/floor/iron/white, -/area/medical/treatment_center) -"smw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/mix_output{ - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) "smE" = ( /obj/machinery/computer/operating, /obj/machinery/light/small/directional/north, @@ -53023,15 +53220,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/security/brig) -"snH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white/side, -/area/medical/medbay/central) +"snU" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark, +/area/command/heads_quarters/ce) "soe" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/white/line{ @@ -53070,18 +53266,6 @@ }, /turf/open/floor/iron, /area/security/brig) -"soK" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/robotics/lab) -"soL" = ( -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/sign/poster/official/random/directional/east, -/turf/open/floor/iron/cafeteria, -/area/hallway/secondary/entry) "soV" = ( /obj/effect/turf_decal/bot{ dir = 1 @@ -53108,23 +53292,21 @@ "soZ" = ( /turf/open/floor/wood, /area/command/corporate_showroom) +"spj" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/engineering/atmos) "spo" = ( /obj/structure/chair{ dir = 8 }, /turf/open/floor/wood, /area/service/lawoffice) -"spp" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Chemistry West"; - network = list("ss13","medbay") - }, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/medical/chemistry) "spq" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, @@ -53142,23 +53324,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/science/lab) -"spR" = ( -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/obj/effect/turf_decal/caution/stand_clear{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron/checker, -/area/engineering/atmos/storage/gas) "spT" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -53173,11 +53338,6 @@ /obj/effect/spawner/random/vending/snackvend, /turf/open/floor/iron/dark, /area/command/bridge) -"sqk" = ( -/obj/effect/turf_decal/bot_white/left, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/engineering/gravity_generator) "sqo" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/start/cargo_technician, @@ -53243,34 +53403,6 @@ }, /turf/open/floor/plating, /area/command/heads_quarters/hos) -"srf" = ( -/obj/structure/table, -/obj/item/folder/yellow{ - pixel_x = 3; - pixel_y = 1 - }, -/obj/item/folder/yellow{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/folder/yellow{ - pixel_x = 3; - pixel_y = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/cargo/sorting) -"srC" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, -/turf/open/floor/iron/dark/corner, -/area/engineering/atmos/pumproom) "srK" = ( /obj/effect/turf_decal/trimline/brown/filled/corner{ dir = 8 @@ -53298,25 +53430,35 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/white, /area/science/mixing/launch) -"ssK" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/air_input{ - dir = 1 - }, -/turf/open/floor/engine/air, -/area/engineering/atmos) "ssN" = ( /obj/machinery/oven, /turf/open/floor/iron/cafeteria, /area/service/kitchen) +"ssP" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/machinery/airalarm/directional/east, +/obj/structure/sign/map/right{ + desc = "A framed picture of the station. Clockwise from security in red at the top, you see engineering in yellow, science in purple, escape in checkered red-and-white, medbay in green, arrivals in checkered red-and-blue, and then cargo in brown."; + icon_state = "map-right-MS"; + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/secondary/exit/departure_lounge) "sti" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/maintenance/starboard/greater) -"stp" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ai_monitored/command/storage/eva) +"sty" = ( +/obj/effect/spawner/random/trash/mess, +/obj/structure/sign/poster/contraband/random/directional/north, +/turf/open/floor/wood, +/area/maintenance/port/aft) "stH" = ( /obj/effect/spawner/random/vending/colavend, /obj/structure/disposalpipe/segment{ @@ -53349,15 +53491,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/port/aft) -"stR" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/holopad/secure, -/obj/machinery/flasher/directional/west{ - id = "AI"; - pixel_y = -26 - }, -/turf/open/floor/iron/dark, -/area/ai_monitored/turret_protected/ai) "suh" = ( /obj/effect/turf_decal/trimline/purple/corner{ dir = 8 @@ -53439,42 +53572,22 @@ /obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/maintenance/port/aft) -"svB" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/security/prison) -"svI" = ( -/obj/machinery/vending/wardrobe/hydro_wardrobe, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/light/small/directional/north, -/obj/structure/sign/poster/official/random/directional/east, -/turf/open/floor/iron, -/area/service/hydroponics) -"svL" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/door/airlock/medical/glass{ - id_tag = "MedbayFoyer"; - name = "Medbay"; - req_access_txt = "5" - }, -/turf/open/floor/iron/white, -/area/medical/medbay/central) "swc" = ( /obj/structure/closet/firecloset, /turf/open/floor/plating, /area/maintenance/starboard/greater) +"swl" = ( +/obj/structure/closet/secure_closet/injection{ + name = "educational injections"; + pixel_x = 2 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/security/execution/education) "swp" = ( /obj/effect/landmark/xeno_spawn, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -53482,6 +53595,12 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/greater) +"swt" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/medical/virology) "sww" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -53498,34 +53617,11 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/port/fore) -"swI" = ( -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron, -/area/construction/mining/aux_base) "swK" = ( /obj/structure/chair/stool/directional/west, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron, /area/security/prison) -"swN" = ( -/obj/item/cartridge/engineering{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/item/cartridge/engineering{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/cartridge/engineering{ - pixel_x = 3 - }, -/obj/structure/table/reinforced, -/obj/item/cartridge/atmos, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/command/heads_quarters/ce) "swS" = ( /obj/effect/turf_decal/stripes/white/line{ dir = 1 @@ -53578,6 +53674,32 @@ /obj/structure/cable, /turf/open/floor/plating, /area/command/corporate_showroom) +"sxT" = ( +/obj/machinery/camera/directional/west{ + c_tag = "Firing Range" + }, +/obj/machinery/light_switch/directional/west{ + pixel_y = -12 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/security/range) +"sxU" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Atmospherics - Distro Loop" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, +/obj/machinery/meter/monitored/distro_loop, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/engineering/atmos/pumproom) "sxZ" = ( /obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ dir = 4 @@ -53598,61 +53720,30 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/medical/medbay/central) -"syZ" = ( -/obj/structure/chair{ - name = "Judge" - }, -/obj/machinery/status_display/evac/directional/north, -/obj/machinery/light/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Courtroom" - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/security/courtroom) "szv" = ( /obj/effect/landmark/event_spawn, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/engineering/storage_shared) +"szx" = ( +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/machinery/chem_heater/withbuffer, +/turf/open/floor/iron/white, +/area/medical/pharmacy) "szy" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/engineering/gravity_generator) -"szS" = ( -/obj/structure/closet/secure_closet/security/cargo, -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/security/checkpoint/supply) -"szZ" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/medical/medbay/central) -"sAc" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ +"szT" = ( +/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible{ dir = 4 }, -/turf/open/floor/iron/dark, -/area/ai_monitored/aisat/exterior) -"sAi" = ( -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, /turf/open/floor/iron, -/area/engineering/break_room) +/area/engineering/atmos/pumproom) "sAB" = ( /obj/effect/turf_decal/arrows/red{ dir = 4 @@ -53749,16 +53840,6 @@ /obj/machinery/light/small/directional/east, /turf/open/floor/iron, /area/science/research) -"sCb" = ( -/obj/machinery/door/airlock/command{ - name = "Command Desk"; - req_access_txt = "19" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/command/bridge) "sCl" = ( /obj/structure/lattice/catwalk, /obj/structure/chair/stool/bar/directional/south, @@ -53823,16 +53904,22 @@ /obj/machinery/light_switch/directional/south, /turf/open/floor/iron/cafeteria, /area/service/kitchen) -"sDo" = ( -/obj/machinery/bounty_board/directional/north, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 +"sDw" = ( +/obj/structure/rack, +/obj/item/gun/energy/laser{ + pixel_x = -3; + pixel_y = 3 }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 +/obj/item/gun/energy/laser, +/obj/item/gun/energy/laser{ + pixel_x = 3; + pixel_y = -3 }, -/turf/open/floor/iron, -/area/engineering/break_room) +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/ai_monitored/security/armory) "sDx" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -53863,6 +53950,18 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/command/bridge) +"sDQ" = ( +/obj/structure/sign/warning/electricshock{ + pixel_x = 32 + }, +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/obj/item/clothing/head/welding, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/medical/chemistry) "sDY" = ( /obj/machinery/door/airlock/maintenance{ name = "Crematorium"; @@ -53894,6 +53993,41 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/carpet, /area/command/heads_quarters/hop) +"sEy" = ( +/obj/structure/chair, +/obj/effect/landmark/start/chaplain, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/service/chapel/funeral) +"sEP" = ( +/obj/structure/table/glass, +/obj/item/cartridge/medical{ + pixel_x = -3 + }, +/obj/item/cartridge/medical{ + pixel_x = 3 + }, +/obj/item/cartridge/chemistry{ + pixel_y = 6 + }, +/obj/machinery/light_switch/directional/north, +/obj/machinery/vending/wallmed/directional/west, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/command/heads_quarters/cmo) +"sEQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + sortType = 11 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/medical/medbay/central) "sER" = ( /obj/structure/window/reinforced{ dir = 8 @@ -53922,19 +54056,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, /turf/open/floor/engine, /area/engineering/supermatter/room) -"sFf" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold/green/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/engineering/atmos) "sFg" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -53963,6 +54084,12 @@ }, /turf/open/floor/wood, /area/command/heads_quarters/captain/private) +"sFt" = ( +/obj/machinery/computer/security/telescreen/entertainment/directional/south, +/obj/machinery/suit_storage_unit/ce, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/command/heads_quarters/ce) "sFx" = ( /obj/machinery/light/directional/west, /obj/structure/extinguisher_cabinet/directional/west, @@ -53981,6 +54108,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/carpet, /area/service/theater) +"sFC" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted, +/turf/open/floor/iron/white, +/area/medical/medbay/central) "sFD" = ( /obj/structure/light_construct/directional/west, /obj/structure/cable, @@ -53990,20 +54124,6 @@ /obj/structure/chair/stool/directional/south, /turf/open/floor/iron, /area/commons/locker) -"sFO" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/medical/pharmacy) -"sGF" = ( -/obj/effect/spawner/random/vending/colavend, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/hallway/secondary/command) "sGS" = ( /obj/effect/turf_decal/trimline/blue/filled/corner{ dir = 1 @@ -54025,11 +54145,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/port/fore) -"sGY" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/medical/treatment_center) "sHe" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -54068,6 +54183,15 @@ }, /turf/open/floor/iron, /area/cargo/warehouse) +"sIu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/sign/poster/contraband/random/directional/north, +/turf/open/floor/plating, +/area/maintenance/port/fore) "sIA" = ( /obj/machinery/door/airlock/external{ name = "Transport Airlock" @@ -54077,20 +54201,6 @@ }, /turf/open/floor/plating, /area/hallway/secondary/entry) -"sIB" = ( -/obj/machinery/chem_mass_spec, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/medical/pharmacy) -"sID" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/shower{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/medical/surgery/theatre) "sIP" = ( /obj/machinery/light/no_nightlight/directional/north, /turf/open/floor/iron/dark, @@ -54141,20 +54251,11 @@ /obj/machinery/space_heater/improvised_chem_heater, /turf/open/floor/plating, /area/maintenance/starboard/lesser) -"sKI" = ( -/obj/structure/rack, -/obj/item/gun/ballistic/shotgun/riot, -/obj/item/gun/ballistic/shotgun/riot{ - pixel_y = 6 - }, -/obj/item/gun/ballistic/shotgun/riot{ - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/ai_monitored/security/armory) +"sKE" = ( +/obj/item/radio/intercom/directional/east, +/obj/structure/tank_dispenser, +/turf/open/floor/iron/white, +/area/science/mixing/launch) "sKT" = ( /obj/item/storage/bag/plants/portaseeder, /obj/structure/table, @@ -54202,34 +54303,6 @@ /obj/effect/spawner/random/maintenance/two, /turf/open/floor/plating, /area/maintenance/starboard/lesser) -"sLs" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching output from station security cameras."; - name = "Security Camera Monitor"; - network = list("ss13"); - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/hallway/secondary/exit/departure_lounge) -"sLI" = ( -/obj/structure/table/glass, -/obj/machinery/cell_charger, -/obj/item/stack/cable_coil, -/obj/item/assembly/igniter, -/obj/item/stock_parts/cell, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/science/lobby) "sLN" = ( /obj/effect/landmark/start/ai/secondary, /obj/item/radio/intercom/directional/north{ @@ -54284,10 +54357,40 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/primary/central) +"sMh" = ( +/obj/machinery/light/directional/south, +/obj/structure/rack, +/obj/item/storage/toolbox/emergency, +/obj/item/storage/toolbox/emergency{ + pixel_x = -2; + pixel_y = -3 + }, +/obj/item/wrench, +/obj/item/multitool, +/obj/machinery/newscaster/directional/south, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/command/bridge) "sMi" = ( /obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, /turf/open/floor/iron, /area/engineering/atmos) +"sMx" = ( +/obj/machinery/status_display/evac/directional/north, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/computer/apc_control, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/command/heads_quarters/ce) +"sMF" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/medical/medbay/central) "sMJ" = ( /obj/structure/sign/warning/securearea{ pixel_y = 32 @@ -54315,36 +54418,35 @@ }, /turf/open/floor/iron, /area/hallway/primary/starboard) -"sNb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "bridge-right" - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/command/bridge) "sNA" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 10 }, /turf/open/floor/iron/white, /area/medical/treatment_center) -"sNW" = ( -/obj/item/candle, -/obj/machinery/light_switch/directional/west, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/service/chapel) +"sOb" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/red/half/contrasted, +/turf/open/floor/iron, +/area/security/office) +"sOo" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/duct, +/obj/machinery/door/airlock/medical/glass{ + name = "Cryogenics Bay"; + req_access_txt = "5" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/medical/treatment_center) "sOr" = ( /obj/machinery/photocopier, /obj/machinery/camera/directional/east{ @@ -54352,13 +54454,10 @@ }, /turf/open/floor/wood, /area/service/lawoffice) -"sOR" = ( -/obj/machinery/mineral/equipment_vendor, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/cargo/miningoffice) +"sOz" = ( +/obj/machinery/air_sensor/oxygen_tank, +/turf/open/floor/engine/o2, +/area/engineering/atmos) "sOS" = ( /obj/machinery/ai_slipper{ uses = 10 @@ -54367,6 +54466,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai) +"sOW" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/medical/surgery/aft) "sPc" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -54527,11 +54632,6 @@ "sRI" = ( /turf/open/floor/engine/o2, /area/engineering/atmos) -"sRU" = ( -/obj/machinery/vending/cigarette, -/obj/structure/sign/poster/official/random/directional/east, -/turf/open/floor/plating, -/area/commons/toilet/auxiliary) "sRV" = ( /obj/structure/sign/warning/nosmoking, /turf/closed/wall, @@ -54540,21 +54640,26 @@ /obj/machinery/mass_driver/ordnance, /turf/open/floor/plating, /area/science/mixing/launch) +"sSq" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/item/kirbyplants{ + icon_state = "plant-16" + }, +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/central) "sSE" = ( /turf/closed/wall/r_wall, /area/maintenance/aft/greater) -"sSN" = ( -/obj/machinery/vending/clothing, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/commons/locker) -"sSW" = ( -/obj/structure/table/optable, -/obj/machinery/airalarm/directional/south, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/blue/half/contrasted, +"sSQ" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 8 + }, /turf/open/floor/iron/white, -/area/medical/surgery/aft) +/area/medical/virology) "sSZ" = ( /obj/structure/window/reinforced{ dir = 8 @@ -54568,12 +54673,32 @@ /obj/machinery/light/small/directional/north, /turf/open/floor/iron, /area/science/xenobiology) +"sTk" = ( +/obj/structure/window/reinforced, +/obj/machinery/computer/atmos_control/air_tank{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron, +/area/engineering/atmos) "sTo" = ( /obj/machinery/space_heater, /turf/open/floor/plating{ icon_state = "platingdmg3" }, /area/maintenance/port) +"sTt" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/commons/storage/tools) "sTF" = ( /obj/structure/window/reinforced{ dir = 4 @@ -54587,20 +54712,62 @@ "sTJ" = ( /turf/open/floor/carpet, /area/commons/dorms) -"sUg" = ( +"sTU" = ( +/obj/machinery/door/window/brigdoor/security/cell{ + id = "Cell 3"; + name = "Cell 3" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red/half/contrasted, +/turf/open/floor/iron, +/area/security/brig) +"sUa" = ( +/obj/machinery/meter/monitored/waste_loop, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/engineering/atmos/pumproom) +"sUb" = ( /obj/structure/table/glass, -/obj/item/clothing/gloves/color/latex, -/obj/item/surgical_drapes, /obj/effect/turf_decal/tile/blue/fourcorners, /obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/iron/white, -/area/medical/surgery/theatre) +/area/medical/cryo) "sUm" = ( /obj/structure/cable, /obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/construction/storage_wing) +"sUq" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/clothing/under/misc/assistantformal, +/obj/structure/sign/map/right{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-right-MS"; + pixel_y = 32 + }, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/shoes/winterboots, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/commons/locker) "sUz" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 4 @@ -54616,6 +54783,31 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/engineering/transit_tube) +"sUD" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/rack, +/obj/machinery/camera/directional/south{ + c_tag = "Brig - Infirmary" + }, +/obj/item/clothing/under/rank/medical/scrubs/purple, +/obj/item/storage/medkit/regular, +/obj/item/healthanalyzer{ + pixel_y = -2 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/security/medical) "sUE" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/flasher/directional/west{ @@ -54674,6 +54866,14 @@ }, /turf/open/floor/iron, /area/hallway/primary/aft) +"sVx" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/ai_monitored/command/storage/satellite) "sWb" = ( /obj/machinery/atmospherics/pipe/smart/simple/orange/hidden{ dir = 6 @@ -54730,11 +54930,6 @@ }, /turf/open/floor/iron/grimy, /area/security/detectives_office) -"sWT" = ( -/obj/machinery/chem_master, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron/white, -/area/medical/chemistry) "sWW" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -54763,11 +54958,6 @@ "sXv" = ( /turf/closed/wall/r_wall, /area/maintenance/fore/lesser) -"sXG" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/holopad, -/turf/open/floor/iron/white, -/area/science/mixing/launch) "sXM" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -54782,6 +54972,15 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron, /area/command/teleporter) +"sXV" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/engineering/atmos) "sYa" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -54791,19 +54990,6 @@ }, /turf/open/floor/plating, /area/maintenance/department/engine) -"sYc" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/food/grown/harebell, -/obj/item/food/grown/harebell, -/obj/item/food/grown/harebell, -/obj/item/food/grown/harebell, -/obj/item/food/grown/harebell, -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/service/chapel/funeral) "sYe" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate{ @@ -54812,6 +54998,11 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/cargo/warehouse) +"sYk" = ( +/obj/structure/chair/stool/directional/south, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/robotics/lab) "sYq" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/tile/green{ @@ -54822,15 +55013,6 @@ }, /turf/open/floor/iron, /area/service/hydroponics) -"sYz" = ( -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/medical/chemistry) "sYC" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -54839,6 +55021,12 @@ "sYH" = ( /turf/closed/wall/r_wall, /area/medical/medbay/central) +"sYS" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/service/hydroponics/garden) "sYV" = ( /obj/machinery/light/small/directional/north, /obj/structure/sign/warning/securearea{ @@ -54898,20 +55086,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/department/medical/central) -"sZO" = ( -/obj/machinery/light/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Departure Lounge - Port Fore" - }, -/obj/item/kirbyplants{ - icon_state = "plant-24" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/sign/poster/official/random/directional/west, -/turf/open/floor/iron, -/area/hallway/secondary/exit/departure_lounge) "sZR" = ( /obj/structure/chair/stool/directional/east, /turf/open/floor/iron, @@ -54932,14 +55106,13 @@ }, /turf/open/floor/iron/checker, /area/engineering/atmos/storage/gas) -"taa" = ( -/obj/structure/extinguisher_cabinet/directional/north, -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/security/lockers) +"tad" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/rods/fifty, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, +/turf/open/floor/iron, +/area/commons/storage/tools) "tag" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -54992,6 +55165,19 @@ dir = 4 }, /area/medical/medbay/central) +"tby" = ( +/obj/machinery/airalarm/directional/north, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/starboard) "tbC" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -55006,15 +55192,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/port) -"tbI" = ( -/obj/machinery/airalarm/directional/west, -/obj/machinery/modular_computer/console/preset/command, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/command/bridge) "tbM" = ( /obj/effect/decal/cleanable/cobweb, /obj/effect/spawner/random/structure/crate, @@ -55060,12 +55237,6 @@ /obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, /turf/open/floor/iron/dark, /area/engineering/atmos) -"tcq" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron/dark, -/area/commons/fitness/recreation) "tcv" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/tile/neutral{ @@ -55086,12 +55257,6 @@ }, /turf/open/floor/iron, /area/security/prison) -"tcC" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/storage) "tcU" = ( /obj/machinery/light/directional/east, /turf/open/floor/iron/chapel{ @@ -55145,6 +55310,17 @@ /obj/structure/sign/warning/electricshock, /turf/open/floor/engine, /area/science/xenobiology) +"teP" = ( +/obj/structure/sink/kitchen{ + desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; + name = "old sink"; + pixel_y = 28 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/security/execution/education) "teQ" = ( /obj/machinery/door/poddoor{ id = "QMLoaddoor2"; @@ -55165,20 +55341,6 @@ /obj/machinery/light/small/directional/west, /turf/open/floor/engine, /area/science/xenobiology) -"tfk" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/engineering/atmos/pumproom) "tfz" = ( /obj/machinery/airalarm/directional/north, /turf/open/floor/circuit, @@ -55192,6 +55354,30 @@ }, /turf/open/floor/wood, /area/security/office) +"tfM" = ( +/obj/machinery/firealarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/starboard) +"tfQ" = ( +/obj/machinery/airalarm/directional/west, +/obj/structure/closet, +/obj/item/crowbar, +/obj/item/assembly/flash/handheld, +/obj/item/radio, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/security/checkpoint/customs) "tgb" = ( /obj/machinery/holopad, /turf/open/floor/iron/white, @@ -55218,6 +55404,32 @@ /obj/machinery/atmospherics/pipe/smart/simple/dark/visible, /turf/open/floor/iron, /area/maintenance/disposal/incinerator) +"tgy" = ( +/obj/structure/rack, +/obj/item/clothing/glasses/hud/security/sunglasses/gars{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/item/clothing/glasses/hud/security/sunglasses/gars{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/item/clothing/glasses/hud/security/sunglasses{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/item/clothing/glasses/hud/security/sunglasses{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/camera/motion/directional/west{ + c_tag = "Armory - Internal" + }, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted, +/turf/open/floor/iron/dark, +/area/ai_monitored/security/armory) "tgB" = ( /obj/machinery/status_display/evac/directional/east, /obj/effect/turf_decal/tile/blue{ @@ -55228,7 +55440,7 @@ /area/hallway/secondary/entry) "tgJ" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 + dir = 1 }, /turf/open/floor/iron, /area/science/mixing) @@ -55252,6 +55464,12 @@ /obj/effect/decal/cleanable/ash, /turf/open/floor/iron/showroomfloor, /area/maintenance/starboard/lesser) +"thg" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/iron, +/area/science/mixing) "thq" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/reagent_dispensers/watertank, @@ -55259,14 +55477,19 @@ /turf/open/floor/iron, /area/service/janitor) "thr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Dormitories" }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, -/area/security/office) +/area/commons/dorms) +"thM" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark, +/area/commons/fitness/recreation) "thN" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -55286,13 +55509,6 @@ }, /turf/open/floor/iron/kitchen_coldroom/freezerfloor, /area/service/kitchen/coldroom) -"thV" = ( -/obj/machinery/computer/slot_machine{ - pixel_y = 2 - }, -/obj/structure/sign/poster/random/directional/north, -/turf/open/floor/wood, -/area/commons/lounge) "tia" = ( /obj/structure/cable, /obj/machinery/power/solar{ @@ -55317,12 +55533,6 @@ }, /turf/open/floor/engine, /area/science/xenobiology) -"tin" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/security/courtroom) "tiy" = ( /obj/effect/turf_decal/stripes/line{ dir = 5 @@ -55355,6 +55565,10 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/wood, /area/service/lawoffice) +"tiR" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/service/chapel) "tiZ" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/smart/simple/green/visible, @@ -55375,12 +55589,6 @@ }, /turf/open/floor/iron, /area/security/brig) -"tjm" = ( -/obj/structure/table/wood, -/obj/effect/spawner/random/trash/soap, -/obj/structure/sign/poster/random/directional/east, -/turf/open/floor/wood, -/area/service/theater) "tjp" = ( /obj/item/reagent_containers/glass/bottle/toxin{ pixel_x = 4; @@ -55423,12 +55631,6 @@ }, /turf/open/floor/iron, /area/science/xenobiology) -"tjK" = ( -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/security/office) "tjS" = ( /obj/machinery/camera/directional/west{ c_tag = "Bridge - Starboard Access" @@ -55436,6 +55638,12 @@ /obj/effect/turf_decal/tile/blue, /turf/open/floor/iron/dark, /area/command/bridge) +"tjW" = ( +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/security/prison) "tky" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -55455,6 +55663,19 @@ icon_state = "panelscorched" }, /area/solars/port/aft) +"tkY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/research/glass{ + name = "Pharmacy"; + req_access_txt = "5; 69" + }, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/medical/pharmacy) "tla" = ( /obj/machinery/light_switch/directional/south, /turf/open/floor/iron/dark, @@ -55465,15 +55686,17 @@ }, /turf/open/floor/iron/white/side, /area/science/lobby) -"tlm" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 +"tlu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, -/area/commons/storage/tools) +/area/service/hydroponics/garden) "tlA" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -55549,20 +55772,6 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/aisat/exterior) -"tmY" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/rack, -/obj/item/roller, -/obj/item/roller, -/obj/item/toy/figure/md, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/iron/white, -/area/medical/abandoned) -"tnc" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/sign/poster/contraband/random/directional/west, -/turf/open/floor/carpet/green, -/area/maintenance/port/aft) "tno" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -55626,6 +55835,12 @@ /obj/effect/turf_decal/tile/bar, /turf/open/floor/iron, /area/hallway/primary/central) +"toQ" = ( +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/command/gateway) "toS" = ( /turf/open/floor/engine, /area/engineering/supermatter) @@ -55706,6 +55921,16 @@ /obj/item/radio/intercom/directional/west, /turf/open/floor/iron/white, /area/medical/cryo) +"tqi" = ( +/obj/structure/cable, +/obj/machinery/camera/directional/south{ + c_tag = "Chief Medical Officer's Office"; + network = list("ss13","medbay") + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted, +/turf/open/floor/iron/white, +/area/command/heads_quarters/cmo) "tqn" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/stripes/line, @@ -55735,6 +55960,27 @@ }, /turf/open/floor/iron/goonplaque, /area/hallway/primary/port) +"tqP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "executionfireblast" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/security/execution/education) +"tqR" = ( +/obj/effect/turf_decal/tile/red/half/contrasted, +/turf/open/floor/iron, +/area/security/checkpoint/customs) +"tra" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron, +/area/construction/mining/aux_base) "trd" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/stripes/line{ @@ -55756,6 +56002,11 @@ /obj/structure/cable, /turf/open/floor/carpet, /area/command/corporate_showroom) +"tri" = ( +/obj/machinery/teleport/hub, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ai_monitored/turret_protected/aisat/foyer) "tru" = ( /obj/machinery/computer/warrant{ dir = 1 @@ -55775,13 +56026,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/grass, /area/security/prison) -"tsc" = ( -/obj/machinery/status_display/evac/directional/north, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/machinery/computer/apc_control, -/obj/effect/turf_decal/tile/neutral/fourcorners, +"trP" = ( +/obj/machinery/modular_computer/console/preset/id, +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 1 + }, /turf/open/floor/iron/dark, -/area/command/heads_quarters/ce) +/area/command/bridge) "tsl" = ( /obj/structure/cable, /turf/open/floor/iron/grimy, @@ -55832,6 +56083,18 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/port/fore) +"tsC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/research{ + name = "Genetics Lab"; + req_access_txt = "9" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/purple/fourcorners, +/turf/open/floor/iron/white, +/area/science/genetics) "tsF" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -55880,18 +56143,6 @@ }, /turf/open/floor/iron, /area/science/xenobiology) -"tsR" = ( -/obj/machinery/firealarm/directional/south, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/hallway/secondary/exit/departure_lounge) "tsX" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -55938,18 +56189,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) -"ttP" = ( -/obj/structure/table, -/obj/effect/spawner/random/entertainment/deck, -/obj/effect/spawner/random/entertainment/cigarette_pack{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/cargo/miningoffice) "ttT" = ( /obj/structure/chair/wood/wings{ dir = 1 @@ -55971,6 +56210,24 @@ }, /turf/open/floor/iron, /area/maintenance/port/fore) +"ttX" = ( +/obj/structure/rack, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/wallframe/camera, +/obj/item/wallframe/camera, +/obj/item/wallframe/camera, +/obj/item/wallframe/camera, +/obj/item/assault_pod/mining, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/construction/mining/aux_base) "ttY" = ( /obj/machinery/door/airlock/external{ name = "Solar Maintenance"; @@ -55982,28 +56239,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/solars/port/fore) -"ttZ" = ( -/obj/machinery/airalarm/directional/west, -/obj/structure/table, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/obj/item/computer_hardware/hard_drive/portable{ - pixel_x = -2 - }, -/obj/item/computer_hardware/hard_drive/portable{ - pixel_x = 7; - pixel_y = 2 - }, -/obj/item/computer_hardware/hard_drive/portable{ - pixel_x = -5; - pixel_y = 8 - }, -/obj/item/computer_hardware/hard_drive/portable{ - pixel_x = -8; - pixel_y = -3 - }, -/turf/open/floor/iron/white, -/area/science/storage) "tuk" = ( /obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible{ dir = 4 @@ -56073,6 +56308,11 @@ }, /turf/open/floor/engine, /area/engineering/supermatter/room) +"tvB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/iron, +/area/security/courtroom) "tvG" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -56083,15 +56323,6 @@ /obj/machinery/light/small/directional/south, /turf/open/floor/plating, /area/cargo/storage) -"tvY" = ( -/obj/structure/reagent_dispensers/wall/peppertank/directional/north, -/obj/structure/closet/secure_closet/security, -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/security/checkpoint/customs) "twa" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/carpet, @@ -56118,19 +56349,6 @@ }, /turf/open/floor/iron, /area/engineering/atmospherics_engine) -"twq" = ( -/obj/structure/closet/crate/freezer/surplus_limbs, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/medical/surgery/theatre) -"twI" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/medical/chemistry) "twK" = ( /obj/machinery/light/small/directional/south, /turf/open/floor/iron/chapel{ @@ -56224,13 +56442,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/primary/central) -"tyg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ +"tyb" = ( +/obj/effect/turf_decal/box/red, +/obj/machinery/atmospherics/components/unary/outlet_injector{ dir = 1 }, -/turf/open/floor/iron/white, -/area/medical/pharmacy) +/turf/open/floor/engine, +/area/science/cytology) "tyh" = ( /obj/structure/sign/map/right{ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; @@ -56263,14 +56481,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/commons/fitness/recreation) -"tyx" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/clothing/under/misc/assistantformal, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/shoes/winterboots, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/commons/locker) "tyK" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -56314,6 +56524,24 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/commons/locker) +"tzk" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/service/hydroponics/garden) +"tzu" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/obj/item/stack/sheet/mineral/plasma{ + pixel_y = 10 + }, +/obj/machinery/light/directional/south, +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, +/turf/open/floor/iron/white, +/area/medical/chemistry) "tzw" = ( /obj/structure/window/reinforced{ dir = 8 @@ -56346,6 +56574,21 @@ /obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/iron, /area/cargo/storage) +"tAd" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/security/range) +"tAn" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 6 + }, +/turf/open/floor/iron, +/area/engineering/atmos/pumproom) "tAq" = ( /obj/machinery/light/directional/west, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -56358,6 +56601,22 @@ /obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/wood, /area/commons/vacant_room/office) +"tAC" = ( +/obj/machinery/flasher/portable, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/security/lockers) +"tAR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/medical/medbay/lobby) "tBd" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -56373,26 +56632,26 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/maintenance/starboard/fore) +"tBg" = ( +/obj/machinery/light_switch/directional/north, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/medical/chemistry) +"tBk" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/cargo/miningoffice) "tBm" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, /turf/open/floor/engine, /area/science/misc_lab/range) -"tBq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible, -/turf/open/floor/iron, -/area/engineering/atmos/pumproom) -"tBt" = ( -/obj/effect/turf_decal/tile/green/fourcorners, -/turf/open/floor/iron, -/area/hallway/primary/central) -"tBx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engineering/atmos/pumproom) "tBO" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -56403,13 +56662,6 @@ /obj/machinery/duct, /turf/open/floor/iron/dark/smooth_large, /area/medical/storage) -"tBR" = ( -/obj/effect/turf_decal/box/red, -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/carbon_input{ - dir = 1 - }, -/turf/open/floor/engine, -/area/science/cytology) "tCr" = ( /obj/effect/landmark/start/clown, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -56447,15 +56699,6 @@ /obj/structure/lattice/catwalk, /turf/open/space/basic, /area/solars/starboard/fore) -"tDq" = ( -/obj/effect/landmark/start/chief_engineer, -/obj/structure/chair/office/light{ - dir = 1; - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/command/heads_quarters/ce) "tDs" = ( /obj/structure/extinguisher_cabinet/directional/west, /obj/effect/turf_decal/tile/neutral{ @@ -56465,27 +56708,6 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/commons/dorms) -"tDy" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door_buttons/airlock_controller{ - idExterior = "xeno_airlock_exterior"; - idInterior = "xeno_airlock_interior"; - idSelf = "xeno_airlock_control"; - name = "Access Console"; - pixel_x = -25; - pixel_y = -25; - req_access_txt = "55" - }, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/science/cytology) "tDI" = ( /obj/machinery/light/directional/north, /obj/machinery/photocopier{ @@ -56498,6 +56720,17 @@ /obj/effect/decal/cleanable/blood/old, /turf/open/floor/wood, /area/maintenance/port/aft) +"tDL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/starboard) "tDY" = ( /obj/effect/landmark/xeno_spawn, /obj/machinery/light/small/directional/south, @@ -56584,6 +56817,12 @@ }, /turf/open/floor/iron, /area/science/xenobiology) +"tFA" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark, +/area/security/brig) "tFG" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -56601,6 +56840,14 @@ /obj/machinery/disposal/bin, /turf/open/floor/iron, /area/maintenance/port/aft) +"tFQ" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/holopad, +/turf/open/floor/iron, +/area/science/mixing) "tFU" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -56618,12 +56865,6 @@ /obj/machinery/portable_atmospherics/canister/carbon_dioxide, /turf/open/floor/engine/co2, /area/engineering/atmos) -"tGA" = ( -/obj/item/kirbyplants, -/obj/machinery/vending/wallmed/directional/south, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/white, -/area/medical/medbay/central) "tGB" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/yellow{ @@ -56682,6 +56923,15 @@ /obj/structure/chair/stool/directional/west, /turf/open/floor/iron, /area/commons/locker) +"tHD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/sign/poster/contraband/random/directional/north, +/turf/open/floor/plating, +/area/maintenance/starboard/lesser) "tHP" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -56722,34 +56972,18 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"tIm" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/computer/atmos_control/tank/nitrous_tank{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ +"tIg" = ( +/obj/structure/chair{ dir = 4 }, -/turf/open/floor/iron/white/corner, -/area/engineering/atmos) -"tIS" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" +/obj/machinery/newscaster/security_unit/directional/south, +/obj/effect/landmark/start/depsec/engineering, +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "bridge-left" - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/command/bridge) +/turf/open/floor/iron, +/area/security/checkpoint/engineering) "tIU" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -56764,10 +56998,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/engineering/supermatter/room) -"tIW" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/turf/closed/wall/r_wall, -/area/engineering/atmos/pumproom) "tIZ" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -56779,27 +57009,20 @@ /turf/open/floor/iron, /area/hallway/secondary/entry) "tJe" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 +/obj/machinery/light/directional/east, +/obj/structure/sign/departments/science{ + pixel_x = 32 }, -/obj/machinery/light_switch/directional/east, -/obj/effect/turf_decal/tile/green/anticorner/contrasted{ +/obj/effect/turf_decal/tile/purple{ dir = 4 }, -/turf/open/floor/iron/white, -/area/medical/virology) +/turf/open/floor/iron, +/area/hallway/primary/aft) "tJi" = ( /obj/effect/turf_decal/tile/red, /obj/machinery/light/directional/north, /turf/open/floor/iron, /area/security/office) -"tJq" = ( -/obj/structure/closet/boxinggloves, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron/dark, -/area/commons/fitness/recreation) "tJu" = ( /obj/machinery/atmospherics/pipe/layer_manifold/yellow/visible, /obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ @@ -56867,23 +57090,6 @@ /obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"tLf" = ( -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Space Bridge"; - req_access_txt = "55" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "xeno_blastdoor"; - name = "biohazard containment door" - }, -/turf/open/floor/iron/white, -/area/science/research) "tLn" = ( /obj/machinery/door/airlock/maintenance{ req_one_access_txt = "12;5;39;25;28" @@ -56896,6 +57102,26 @@ }, /turf/open/floor/plating, /area/medical/medbay/central) +"tLo" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/light/directional/west, +/obj/structure/table, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = 8 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_y = 4 + }, +/turf/open/floor/iron/dark, +/area/ai_monitored/command/storage/eva) "tLz" = ( /obj/structure/table, /obj/item/paper_bin, @@ -56906,6 +57132,17 @@ }, /turf/open/floor/iron, /area/science/lab) +"tMg" = ( +/obj/structure/bed/roller, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted, +/turf/open/floor/iron/white, +/area/medical/medbay/lobby) "tMk" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -56920,6 +57157,22 @@ }, /turf/open/floor/wood, /area/command/heads_quarters/hop) +"tMp" = ( +/obj/structure/table, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/obj/item/storage/box/bodybags{ + pixel_x = -4; + pixel_y = 9 + }, +/obj/item/storage/box/disks{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/genetics) "tMV" = ( /turf/open/floor/carpet, /area/command/heads_quarters/hos) @@ -56934,6 +57187,17 @@ /obj/effect/spawner/structure/window/reinforced/plasma, /turf/open/floor/plating, /area/engineering/supermatter/room) +"tNC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark/telecomms, +/area/science/server) "tNZ" = ( /obj/item/storage/fancy/candle_box{ pixel_y = 5 @@ -56956,15 +57220,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/command/bridge) -"tOl" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/medical/chemistry) "tOw" = ( /obj/structure/sink{ dir = 8; @@ -56976,14 +57231,6 @@ }, /turf/open/floor/iron, /area/security/prison) -"tOz" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/medical/pharmacy) "tOA" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -57025,6 +57272,20 @@ /obj/item/multitool, /turf/open/floor/iron/dark, /area/engineering/storage/tech) +"tPm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Prison Wing"; + req_access_txt = "1" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "perma-entrance" + }, +/obj/effect/turf_decal/tile/red/half/contrasted, +/turf/open/floor/iron, +/area/security/brig) "tPr" = ( /turf/open/floor/iron/white, /area/science/xenobiology) @@ -57041,16 +57302,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/security/detectives_office) -"tPD" = ( -/obj/machinery/light/directional/west, -/obj/machinery/chem_dispenser{ - layer = 2.7 - }, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/medical/chemistry) "tPH" = ( /turf/open/floor/plating/airless{ icon_state = "panelscorched" @@ -57093,14 +57344,6 @@ }, /turf/open/floor/engine, /area/science/xenobiology) -"tQn" = ( -/obj/machinery/airalarm/directional/south, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green/half/contrasted, -/turf/open/floor/iron/white, -/area/medical/virology) "tQs" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/tile/neutral{ @@ -57117,13 +57360,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/central) -"tQF" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/rods/fifty, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, -/turf/open/floor/iron, -/area/commons/storage/tools) "tQT" = ( /obj/effect/spawner/random/trash/garbage{ spawn_scatter_radius = 1 @@ -57137,6 +57373,16 @@ }, /turf/open/floor/iron, /area/engineering/atmos/storage/gas) +"tQY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyer"; + name = "Medbay Clinic" + }, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/navbeacon/wayfinding, +/turf/open/floor/iron/white, +/area/medical/medbay/central) "tQZ" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -57158,15 +57404,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/ai_monitored/aisat/exterior) -"tRn" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/space, -/area/space/nearstation) "tRH" = ( /obj/machinery/door/airlock/highsecurity{ name = "Gravity Generator Room"; @@ -57193,6 +57430,16 @@ /obj/item/gavelhammer, /turf/open/floor/iron, /area/security/courtroom) +"tSi" = ( +/obj/structure/chair{ + dir = 4; + name = "Prosecution" + }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/security/courtroom) "tSp" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/carpet, @@ -57203,31 +57450,10 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/cargo/sorting) -"tSA" = ( -/obj/structure/table, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/obj/machinery/computer/med_data/laptop{ - dir = 8; - pixel_y = 1; - req_one_access = null; - req_one_access_txt = "4;5;9" - }, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/genetics) "tSE" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"tSI" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/robotics/lab) "tSP" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -57287,6 +57513,19 @@ /obj/structure/table, /turf/open/floor/plating, /area/maintenance/starboard/fore) +"tUb" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/atmos/pumproom) +"tUq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/hallway/primary/aft) "tUy" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -57365,75 +57604,30 @@ }, /turf/open/floor/iron/dark, /area/medical/break_room) -"tVV" = ( -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge Access"; - req_access_txt = "19" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "bridge-right" - }, -/turf/open/floor/iron/dark, -/area/command/bridge) -"tWk" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/engineering/atmos) "tWo" = ( /obj/effect/spawner/random/structure/grille, /turf/open/floor/plating, /area/maintenance/port) -"tWz" = ( -/obj/structure/rack, -/obj/item/grenade/barrier{ - pixel_x = -3; - pixel_y = 1 - }, -/obj/item/grenade/barrier, -/obj/item/grenade/barrier{ - pixel_x = 3; - pixel_y = -1 - }, -/obj/item/grenade/barrier{ - pixel_x = 6; - pixel_y = -2 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/ai_monitored/security/armory) -"tWD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"tWu" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/sign/poster/contraband/random/directional/north, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"tXr" = ( -/obj/structure/reagent_dispensers/wall/peppertank/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 +/obj/structure/sign/poster/contraband/random/directional/east, +/turf/open/floor/plating{ + icon_state = "panelscorched" }, -/turf/open/floor/iron, -/area/hallway/secondary/exit/departure_lounge) +/area/maintenance/port) +"tWF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyer"; + name = "Medbay Clinic" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/medical/medbay/central) "tXy" = ( /obj/structure/window/reinforced, /turf/open/floor/plating/airless, @@ -57444,6 +57638,14 @@ /obj/structure/cable/layer3, /turf/open/floor/iron/dark, /area/ai_monitored/command/storage/satellite) +"tXJ" = ( +/obj/machinery/vending/autodrobe, +/obj/structure/sign/poster/contraband/clown{ + pixel_x = 32 + }, +/obj/structure/sign/poster/contraband/random/directional/north, +/turf/open/floor/wood, +/area/service/theater) "tXK" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -57502,6 +57704,12 @@ dir = 1 }, /area/engineering/storage_shared) +"tYY" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/visible{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos/pumproom) "tZe" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -57526,31 +57734,15 @@ }, /turf/open/floor/iron, /area/command/gateway) +"tZy" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/iron, +/area/engineering/atmos/pumproom) "tZK" = ( /turf/closed/wall, /area/security/interrogation) -"tZO" = ( -/obj/structure/table, -/obj/item/clothing/under/rank/prisoner/skirt{ - pixel_x = -13; - pixel_y = 5 - }, -/obj/item/clothing/under/rank/prisoner/skirt{ - pixel_x = 9; - pixel_y = 5 - }, -/obj/item/clothing/under/rank/prisoner{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/security/prison) "tZW" = ( /obj/machinery/camera/directional/east{ c_tag = "Atmospherics Tank - CO2" @@ -57628,30 +57820,33 @@ /obj/structure/sign/directions/evac, /turf/closed/wall/r_wall, /area/ai_monitored/command/storage/eva) -"ubg" = ( -/obj/structure/cable, -/obj/machinery/camera/directional/south{ - c_tag = "Chief Medical Officer's Office"; - network = list("ss13","medbay") - }, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted, -/turf/open/floor/iron/white, -/area/command/heads_quarters/cmo) "ubj" = ( -/obj/structure/sign/warning/securearea{ - pixel_y = 32 +/obj/machinery/door/window/brigdoor{ + name = "Justice Chamber"; + req_access_txt = "3" }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ dir = 4 }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 +/obj/machinery/door/window/brigdoor{ + dir = 1; + name = "Justice Chamber"; + req_access_txt = "3" }, -/turf/open/floor/iron, -/area/hallway/primary/starboard) +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "executionfireblast" + }, +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/security/execution/education) "ubw" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -57688,6 +57883,21 @@ }, /turf/open/floor/wood, /area/command/corporate_showroom) +"ucp" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Engineering Desk"; + req_one_access_txt = "24;32" + }, +/obj/item/folder/yellow, +/obj/item/pen, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/turf/open/floor/iron, +/area/engineering/break_room) "ucr" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/power/apc/auto_name/directional/north, @@ -57699,6 +57909,17 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/science/research) +"ucy" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/storage) "ucI" = ( /obj/machinery/light/directional/south, /obj/effect/turf_decal/tile/neutral, @@ -57740,6 +57961,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, /turf/open/floor/engine, /area/engineering/supermatter/room) +"udr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrogen_output{ + dir = 1 + }, +/turf/open/floor/engine/n2, +/area/engineering/atmos) "udw" = ( /turf/open/floor/iron/dark, /area/engineering/supermatter/room) @@ -57776,6 +58003,11 @@ }, /turf/open/floor/wood, /area/maintenance/port/aft) +"ueB" = ( +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron, +/area/construction/mining/aux_base) "ueC" = ( /obj/structure/sign/map/left{ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; @@ -57834,6 +58066,27 @@ }, /turf/open/floor/iron, /area/engineering/atmos) +"ufx" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 4 + }, +/obj/structure/sign/poster/official/random/directional/east, +/turf/open/floor/iron, +/area/engineering/break_room) +"ufy" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/reagent_dispensers/wall/peppertank/directional/east, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/security/checkpoint/engineering) "ufN" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -57845,6 +58098,21 @@ }, /turf/open/floor/iron, /area/hallway/primary/port) +"ufR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "bridge-left" + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/command/bridge) "ufS" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -57859,30 +58127,6 @@ }, /turf/open/floor/iron, /area/service/hydroponics) -"ugn" = ( -/obj/machinery/door_buttons/access_button{ - idDoor = "xeno_airlock_exterior"; - idSelf = "xeno_airlock_control"; - name = "Access Button"; - pixel_y = -24; - req_access_txt = "55" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/research{ - autoclose = 0; - frequency = 1449; - id_tag = "xeno_airlock_exterior"; - name = "Xenobiology Lab External Airlock"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/science/cytology) "ugo" = ( /obj/machinery/airalarm/directional/south, /obj/machinery/computer/mech_bay_power_console{ @@ -57904,11 +58148,13 @@ }, /turf/open/floor/plating, /area/engineering/supermatter) -"ugH" = ( -/obj/structure/chair/stool/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, +"ugI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/red/half/contrasted, /turf/open/floor/iron/dark, -/area/science/robotics/lab) +/area/security/execution/education) "uhm" = ( /obj/structure/table, /obj/item/stack/rods/fifty, @@ -57925,6 +58171,13 @@ /obj/structure/cable, /turf/open/floor/iron, /area/commons/fitness/recreation) +"uhI" = ( +/obj/machinery/portable_atmospherics/scrubber/huge, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/storage) "uhK" = ( /obj/machinery/button/ignition/incinerator/atmos{ pixel_x = 8; @@ -57956,6 +58209,11 @@ }, /turf/open/floor/iron, /area/maintenance/disposal/incinerator) +"uhU" = ( +/obj/effect/turf_decal/bot_white/right, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/engineering/gravity_generator) "uic" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -57964,22 +58222,6 @@ /obj/machinery/light_switch/directional/west, /turf/open/floor/iron, /area/commons/dorms) -"uil" = ( -/obj/structure/bed/roller, -/obj/item/radio/intercom/directional/south, -/obj/machinery/camera/directional/south{ - c_tag = "Medbay Foyer"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/white, -/area/medical/medbay/lobby) "uir" = ( /obj/machinery/holopad, /obj/effect/turf_decal/box/white{ @@ -57988,18 +58230,6 @@ /obj/structure/cable, /turf/open/floor/iron/white/smooth_large, /area/command/heads_quarters/cmo) -"uiy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/button/door/directional/south{ - id = "prisonereducation"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron/dark, -/area/security/execution/education) "uiG" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -58007,14 +58237,14 @@ /obj/machinery/light_switch/directional/west, /turf/open/floor/iron, /area/maintenance/disposal/incinerator) -"uiN" = ( -/obj/effect/turf_decal/siding/purple{ - dir = 8 +"uiH" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/science/genetics) +/area/security/lockers) "uje" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -58047,6 +58277,13 @@ /obj/machinery/light/small/directional/south, /turf/open/floor/iron, /area/service/janitor) +"ujA" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/north, +/obj/machinery/portable_atmospherics/canister/tier_1, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/storage) "ujE" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 8; @@ -58054,20 +58291,14 @@ }, /turf/open/floor/iron, /area/engineering/atmos) -"ujF" = ( -/obj/effect/landmark/start/cyborg, -/obj/machinery/light/small/directional/east, -/obj/machinery/camera/directional/north{ - c_tag = "AI Upload Foyer"; - network = list("aiupload") +"ujL" = ( +/obj/machinery/autolathe, +/obj/machinery/camera/directional/south{ + c_tag = "Cargo - Mailroom" }, -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/ai_monitored/turret_protected/ai_upload_foyer) +/obj/effect/turf_decal/tile/brown/fourcorners, +/turf/open/floor/iron, +/area/cargo/sorting) "uka" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -58101,41 +58332,19 @@ }, /turf/open/floor/engine, /area/science/xenobiology) +"ukD" = ( +/obj/machinery/computer/atmos_control/nocontrol/ordnancemix, +/obj/effect/turf_decal/bot, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/siding{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/science/mixing) "ukF" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white/corner, /area/hallway/secondary/entry) -"ukI" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/caution/red, -/obj/machinery/reagentgrinder{ - pixel_x = -1; - pixel_y = 8 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/science/cytology) -"ukM" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Storage"; - req_access_txt = "5" - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/medical/storage) -"ukX" = ( -/obj/structure/closet/wardrobe/green, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron/dark, -/area/commons/locker) "ukY" = ( /obj/effect/turf_decal/trimline/purple/line{ dir = 1 @@ -58162,18 +58371,6 @@ }, /turf/open/floor/iron/white, /area/medical/virology) -"ule" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/door/airlock/medical/glass{ - name = "Paramedic Dispatch Room"; - req_access_txt = "5" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/medical/office) "ulj" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 8 @@ -58189,11 +58386,6 @@ }, /turf/open/floor/iron, /area/engineering/atmospherics_engine) -"ulk" = ( -/obj/structure/bed/roller, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron, -/area/hallway/primary/central) "uln" = ( /obj/item/radio/intercom/directional/east, /obj/effect/turf_decal/trimline/brown/filled/line, @@ -58221,21 +58413,15 @@ /obj/machinery/navbeacon/wayfinding, /turf/open/floor/iron, /area/ai_monitored/command/storage/eva) -"ulC" = ( -/obj/machinery/airalarm/directional/north, -/obj/item/kirbyplants{ - icon_state = "applebush" - }, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/hallway/primary/central) "ulD" = ( /obj/machinery/light/small/directional/east, /obj/effect/landmark/event_spawn, /turf/open/floor/iron/freezer, /area/commons/toilet/restrooms) +"ulM" = ( +/obj/machinery/air_sensor/air_tank, +/turf/open/floor/engine/air, +/area/engineering/atmos) "uml" = ( /obj/structure/chair, /obj/effect/landmark/start/assistant, @@ -58262,30 +58448,26 @@ }, /turf/open/floor/engine, /area/engineering/supermatter/room) -"unk" = ( -/obj/machinery/door/window/northleft{ - dir = 8; - name = "Magboot Storage"; - pixel_x = -1; - req_access_txt = "18" +"umW" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/rack, -/obj/item/clothing/shoes/magboots{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots{ - pixel_x = 4; - pixel_y = -3 +/obj/structure/disposalpipe/trunk{ + dir = 8 }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/ai_monitored/command/storage/eva) +/area/science/mixing/launch) +"und" = ( +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/sign/poster/official/random/directional/east, +/turf/open/floor/iron/cafeteria, +/area/hallway/secondary/entry) "unm" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -58296,6 +58478,28 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/cargo/storage) +"uno" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/virology/glass{ + name = "Containment Cells"; + req_access_txt = "39" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/green/fourcorners, +/turf/open/floor/iron/white, +/area/medical/virology) +"unz" = ( +/obj/machinery/door/window/southleft{ + dir = 1; + name = "Mass Driver Control Door"; + req_access_txt = "8" + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/mixing/launch) "unA" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp/green{ @@ -58304,19 +58508,25 @@ }, /turf/open/floor/wood, /area/service/library) +"unB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/poster/random/directional/south, +/turf/open/floor/iron, +/area/hallway/secondary/service) "unK" = ( /obj/structure/chair/stool/directional/east, /turf/open/floor/iron, /area/commons/dorms) -"unL" = ( -/obj/structure/chair{ - dir = 8; - name = "Defense" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/green/anticorner/contrasted, -/turf/open/floor/iron, -/area/security/courtroom) "unP" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -58385,22 +58595,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/port) -"upM" = ( -/obj/machinery/door/airlock/research{ - name = "Robotics Lab"; - req_access_txt = "29" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple/fourcorners, -/turf/open/floor/iron/white, -/area/science/robotics/lab) -"upQ" = ( -/obj/structure/table, -/obj/item/storage/medkit/brute, -/turf/open/floor/iron, -/area/commons/fitness/recreation) "upY" = ( /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/east, @@ -58414,6 +58608,20 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/primary/fore) +"uqi" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/engineering{ + name = "Auxiliary Base Construction"; + req_one_access_txt = "72" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/turf/open/floor/iron, +/area/construction/mining/aux_base) "uqu" = ( /obj/structure/cable, /turf/open/floor/iron/dark, @@ -58454,40 +58662,24 @@ /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plating, /area/security/prison) -"urH" = ( -/obj/machinery/turretid{ - control_area = "/area/ai_monitored/turret_protected/ai_upload"; - icon_state = "control_stun"; - name = "AI Upload turret control"; - pixel_y = 28 - }, -/obj/item/radio/intercom/directional/north{ - broadcasting = 1; - frequency = 1447; - name = "Private Channel"; - pixel_x = -26 - }, -/obj/effect/landmark/start/cyborg, -/obj/machinery/light/small/directional/west, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the AI Upload."; - dir = 4; - name = "AI Upload Monitor"; - network = list("aiupload"); - pixel_x = -29 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/south, -/turf/open/floor/iron/dark, -/area/ai_monitored/turret_protected/ai_upload_foyer) "urP" = ( /obj/machinery/light/no_nightlight/directional/east, /turf/open/floor/iron/dark, /area/engineering/atmospherics_engine) +"urZ" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/vault{ + name = "Vault"; + req_access_txt = "53" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/cable, +/obj/machinery/navbeacon/wayfinding, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/ai_monitored/command/nuke_storage) "usc" = ( /obj/effect/turf_decal/trimline/purple/filled/line, /turf/open/floor/iron/white, @@ -58502,25 +58694,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/construction/storage_wing) -"ust" = ( -/obj/structure/table, -/obj/effect/turf_decal/bot, -/obj/item/assembly/timer{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/assembly/timer{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/assembly/timer{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/item/assembly/timer, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/mixing/launch) "usW" = ( /obj/item/radio/intercom/directional/south, /obj/structure/chair/office{ @@ -58560,23 +58733,18 @@ }, /turf/open/floor/iron, /area/commons/locker) -"utO" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/westleft{ - dir = 4; - name = "Robotics Desk"; - req_access_txt = "29" +"utU" = ( +/obj/structure/table, +/obj/machinery/light/directional/south, +/obj/item/storage/medkit/regular{ + pixel_x = 4; + pixel_y = 4 }, -/obj/item/folder, -/obj/item/pen, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "roboticsprivacy"; - name = "Robotics Shutters" - }, -/obj/effect/turf_decal/tile/purple/fourcorners, -/turf/open/floor/iron, -/area/science/robotics/lab) +/obj/item/storage/medkit/regular, +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/tile/blue/half/contrasted, +/turf/open/floor/iron/white, +/area/medical/medbay/central) "uug" = ( /obj/machinery/door/airlock/maintenance{ name = "Storage Room"; @@ -58647,12 +58815,16 @@ }, /turf/open/floor/iron, /area/engineering/gravity_generator) -"uvj" = ( -/obj/structure/closet/lasertag/blue, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron/dark, -/area/commons/fitness/recreation) +"uvf" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/orange, +/obj/item/restraints/handcuffs, +/obj/item/reagent_containers/spray/pepper, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/security/prison) "uvn" = ( /obj/structure/window/reinforced, /turf/open/floor/engine, @@ -58690,19 +58862,47 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/carpet, /area/command/bridge) +"uwg" = ( +/obj/structure/rack, +/obj/machinery/light/directional/west, +/obj/item/clothing/head/helmet/riot{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/item/clothing/head/helmet/riot{ + pixel_y = 2 + }, +/obj/item/clothing/head/helmet/riot{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/clothing/head/helmet/alt{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/item/clothing/head/helmet/alt{ + pixel_y = -2 + }, +/obj/item/clothing/head/helmet/alt{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue/half/contrasted, +/turf/open/floor/iron/dark, +/area/ai_monitored/security/armory) +"uwm" = ( +/obj/structure/closet/emcloset, +/obj/structure/sign/warning/pods{ + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/iron/dark, +/area/commons/fitness/recreation) "uwn" = ( /turf/closed/wall/r_wall, /area/science/mixing/launch) -"uwp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/destructive_scanner, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/science/lobby) "uwx" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -58722,13 +58922,19 @@ "uwG" = ( /turf/closed/wall, /area/security/medical) -"uwM" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 +"uwH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/sorting/mail{ + dir = 4; + sortType = 28 }, -/turf/open/floor/iron/dark, -/area/security/lockers) +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/science/cytology) "uwX" = ( /obj/structure/table/reinforced, /obj/item/book/manual/wiki/security_space_law{ @@ -58758,19 +58964,34 @@ icon_state = "platingdmg2" }, /area/maintenance/starboard/greater) -"uxy" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Cryogenics Bay"; - req_access_txt = "5" - }, +"uxv" = ( /obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/defibrillator_mount/directional/south, +/obj/machinery/light/directional/south, +/obj/structure/bed/pod{ + desc = "An old medical bed, just waiting for replacement with something up to date."; + name = "medical bed" + }, /turf/open/floor/iron/white, -/area/medical/office) +/area/medical/treatment_center) "uxz" = ( /obj/machinery/holopad, /turf/open/floor/iron, /area/commons/locker) +"uxX" = ( +/obj/structure/cable, +/obj/structure/rack, +/obj/item/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/storage/box/syringes, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/medical/virology) "uyh" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/grunge{ @@ -58831,15 +59052,6 @@ /obj/structure/cable, /turf/open/floor/engine, /area/science/misc_lab/range) -"uzJ" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/engineering/break_room) "uzL" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -58865,6 +59077,18 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/science/xenobiology) +"uAf" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/command/heads_quarters/ce) "uAh" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -58902,15 +59126,16 @@ }, /turf/open/floor/iron, /area/security/brig) -"uAY" = ( -/obj/structure/cable, -/obj/machinery/chem_heater/withbuffer, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 +"uBt" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 }, -/turf/open/floor/iron/white, -/area/medical/chemistry) +/obj/item/pen, +/obj/effect/turf_decal/tile/red/half/contrasted, +/turf/open/floor/iron, +/area/hallway/secondary/exit/departure_lounge) "uBO" = ( /obj/machinery/airalarm/directional/west, /obj/effect/turf_decal/tile/neutral{ @@ -58933,14 +59158,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/engineering/supermatter/room) -"uCg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/machinery/meter, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/engineering/atmos) "uCj" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -58951,11 +59168,6 @@ /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plating, /area/service/hydroponics/garden) -"uCp" = ( -/obj/item/radio/intercom/directional/east, -/obj/structure/tank_dispenser, -/turf/open/floor/iron/white, -/area/science/mixing/launch) "uCA" = ( /obj/machinery/seed_extractor, /obj/machinery/airalarm/directional/north, @@ -58975,12 +59187,6 @@ }, /turf/open/floor/plating/airless, /area/engineering/atmos) -"uDh" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/service/hydroponics/garden) "uDt" = ( /obj/structure/extinguisher_cabinet/directional/west, /obj/structure/easel, @@ -59010,6 +59216,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/port/fore) +"uEg" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/sign/poster/contraband/random/directional/east, +/turf/open/floor/wood, +/area/service/theater) "uEx" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -59019,11 +59231,6 @@ }, /turf/open/floor/iron, /area/ai_monitored/command/storage/eva) -"uEA" = ( -/obj/machinery/light_switch/directional/south, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron/white, -/area/medical/chemistry) "uEP" = ( /obj/machinery/shower{ dir = 8 @@ -59039,6 +59246,17 @@ /obj/structure/cable, /turf/open/floor/grass, /area/medical/virology) +"uFe" = ( +/obj/machinery/disposal/bin, +/obj/machinery/firealarm/directional/south{ + pixel_x = 26 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron/white, +/area/medical/medbay/lobby) "uFo" = ( /obj/structure/chair/stool/directional/west, /turf/open/floor/iron, @@ -59058,10 +59276,6 @@ }, /turf/open/floor/iron, /area/engineering/atmos/storage/gas) -"uFF" = ( -/obj/machinery/air_sensor/atmos/nitrous_tank, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) "uFM" = ( /obj/structure/reflector/single/anchored{ dir = 9 @@ -59084,6 +59298,13 @@ /obj/structure/cable, /turf/open/floor/iron, /area/science/robotics/lab) +"uGk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/server) "uGn" = ( /obj/machinery/door/airlock/engineering/glass{ name = "Engineering Foyer"; @@ -59104,21 +59325,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/primary/central) -"uGz" = ( -/obj/machinery/door/window/southright{ - dir = 8; - name = "Surgical Supplies"; - req_access_txt = "45" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/item/stack/sticky_tape/surgical, -/obj/item/stack/medical/bone_gel, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/medical/surgery/theatre) "uGJ" = ( /obj/machinery/computer/mecha{ dir = 8 @@ -59140,6 +59346,21 @@ "uGS" = ( /turf/closed/wall, /area/medical/pharmacy) +"uHI" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = 2 + }, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/service/hydroponics/garden) +"uHL" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/iron, +/area/hallway/primary/central) "uHX" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/spawner/random/trash/janitor_supplies, @@ -59164,18 +59385,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/starboard/lesser) -"uIn" = ( -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Research Division Server Room"; - req_access_txt = "30" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/science/server) "uIK" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -59183,37 +59392,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) -"uIS" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron, -/area/hallway/primary/starboard) -"uIU" = ( -/obj/machinery/power/shieldwallgen, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/command/teleporter) "uJq" = ( /obj/effect/spawner/random/maintenance, /obj/structure/closet/crate/internals, @@ -59226,28 +59404,6 @@ }, /turf/open/floor/plating, /area/maintenance/aft/lesser) -"uJX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/hallway/primary/aft) -"uJY" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/light/small/directional/north, -/obj/item/clothing/under/misc/assistantformal, -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - pixel_y = 32 - }, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/shoes/winterboots, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/commons/locker) "uKb" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -59315,6 +59471,11 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/wood, /area/service/library) +"uLA" = ( +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/white, +/area/security/prison) "uLC" = ( /obj/structure/window/reinforced{ dir = 4 @@ -59323,24 +59484,6 @@ icon_state = "platingdmg3" }, /area/space/nearstation) -"uLD" = ( -/obj/structure/window/reinforced, -/obj/item/storage/medkit/regular{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/storage/medkit/fire{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/medkit/fire, -/obj/item/storage/medkit/fire{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/table/reinforced, -/turf/open/floor/iron/dark, -/area/medical/storage) "uLE" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -59402,17 +59545,6 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/greater) -"uMW" = ( -/obj/machinery/computer/security, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/command/bridge) -"uMZ" = ( -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron/white, -/area/medical/chemistry) "uNh" = ( /obj/effect/turf_decal/trimline/blue/filled/corner{ dir = 4 @@ -59439,6 +59571,16 @@ }, /turf/open/floor/iron/white, /area/science/mixing) +"uNH" = ( +/obj/machinery/shower{ + pixel_y = 12 + }, +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/medical/virology) "uOc" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, @@ -59453,6 +59595,16 @@ /obj/structure/window/reinforced, /turf/open/floor/iron/dark, /area/ai_monitored/aisat/exterior) +"uOF" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/engineering/break_room) "uOT" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -59489,11 +59641,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/security/office) -"uPh" = ( -/obj/effect/turf_decal/bot_white/left, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/command/gateway) "uPJ" = ( /obj/machinery/door/airlock/maintenance{ name = "Research Maintenance"; @@ -59552,12 +59699,6 @@ }, /turf/open/floor/iron/freezer, /area/commons/fitness/recreation) -"uQL" = ( -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/aft) "uQS" = ( /obj/structure/chair/stool/bar/directional/south, /obj/effect/turf_decal/tile/bar, @@ -59621,38 +59762,6 @@ }, /turf/open/floor/iron, /area/security/brig) -"uSf" = ( -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/medical/virology) -"uSj" = ( -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/engineering/break_room) -"uSF" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engineering/atmos/pumproom) -"uSQ" = ( -/obj/structure/table, -/obj/item/storage/medkit/regular, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/item/reagent_containers/glass/bottle/multiver, -/obj/item/reagent_containers/syringe, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/security/medical) "uSS" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -59746,35 +59855,28 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/wood, /area/service/library) +"uUA" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/hallway/primary/central) "uUD" = ( /obj/structure/chair/comfy/black, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/carpet, /area/command/bridge) -"uUR" = ( -/obj/item/stack/sheet/rglass{ - amount = 50 +"uUK" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 }, -/obj/item/stack/sheet/rglass{ - amount = 50 - }, -/obj/item/stack/rods/fifty, -/obj/item/stack/rods/fifty, -/obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/door/firedoor, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, +/obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/ai_monitored/command/storage/eva) +/area/science/research) "uUX" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/circuit, @@ -59785,18 +59887,11 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron/dark, /area/command/bridge) -"uVm" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/machinery/flasher/directional/south{ - id = "AI"; - pixel_x = 26 - }, +"uVc" = ( +/obj/machinery/light/directional/west, /obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, /turf/open/floor/iron/dark, -/area/ai_monitored/turret_protected/ai) +/area/engineering/storage/tech) "uVp" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -59815,18 +59910,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/security/prison/safe) -"uWc" = ( -/obj/effect/turf_decal/stripes/white/line, -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/research) "uWd" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -59837,10 +59920,31 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/engine, /area/engineering/supermatter/room) +"uWh" = ( +/obj/structure/table/glass, +/obj/item/scalpel{ + pixel_y = 12 + }, +/obj/item/circular_saw, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/item/blood_filter, +/obj/machinery/light/directional/north, +/obj/item/bonesetter, +/obj/machinery/button/door/directional/north{ + id = "main_surgery"; + name = "privacy shutters control" + }, +/turf/open/floor/iron/white, +/area/medical/surgery/theatre) "uWm" = ( /obj/structure/flora/rock/jungle, /turf/open/floor/grass, /area/medical/virology) +"uWn" = ( +/obj/machinery/nuclearbomb/selfdestruct, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ai_monitored/command/nuke_storage) "uWE" = ( /obj/machinery/door/airlock/atmos/glass{ name = "Atmospherics Monitoring"; @@ -59877,10 +59981,22 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/command/gateway) -"uXn" = ( -/obj/effect/landmark/start/atmospheric_technician, +"uWZ" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/engineering/storage/tech) +"uXa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, /turf/open/floor/iron, -/area/engineering/atmos/pumproom) +/area/command/heads_quarters/ce) "uXo" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -59898,6 +60014,21 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron, /area/engineering/atmos/storage/gas) +"uXE" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/medical/chemistry) +"uXP" = ( +/obj/machinery/light_switch/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/red/half/contrasted, +/turf/open/floor/iron/dark, +/area/security/execution/education) "uXT" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment{ @@ -59906,27 +60037,11 @@ /turf/open/floor/iron/white, /area/medical/medbay/central) "uXX" = ( -/obj/structure/table/reinforced, -/obj/item/tank/internals/anesthetic{ - pixel_x = 3 - }, -/obj/item/tank/internals/anesthetic, -/obj/item/tank/internals/anesthetic{ - pixel_x = -3 - }, -/obj/item/clothing/mask/breath/medical{ - pixel_y = -3 - }, -/obj/item/clothing/mask/breath/medical, -/obj/item/clothing/mask/breath/medical{ - pixel_y = 3 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/medical/surgery/theatre) +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/storage) "uYd" = ( /obj/effect/turf_decal/box/white{ color = "#52B4E9" @@ -59953,12 +60068,6 @@ }, /turf/open/floor/iron/white, /area/medical/chemistry) -"uYI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/holopad, -/obj/structure/window/reinforced, -/turf/open/floor/iron/dark, -/area/ai_monitored/aisat/exterior) "uYL" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/chair{ @@ -59966,52 +60075,25 @@ }, /turf/open/floor/wood, /area/maintenance/port/aft) -"uYM" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/security/courtroom) -"uYZ" = ( -/obj/structure/table/glass, -/obj/item/stack/medical/mesh, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/white/corner{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white/side{ - dir = 6 - }, -/area/medical/treatment_center) "uZd" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/primary/central) -"uZv" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 +"uZU" = ( +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/mixing/launch) -"vac" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/red/half/contrasted{ +/obj/machinery/light/directional/west, +/obj/structure/table/glass, +/obj/item/storage/secure/safe/caps_spare/directional/west, +/obj/effect/turf_decal/tile/green/half/contrasted{ dir = 8 }, -/turf/open/floor/iron, -/area/security/office) +/turf/open/floor/iron/dark, +/area/command/bridge) "vad" = ( /obj/machinery/newscaster/directional/north, /obj/machinery/light/small/directional/north, @@ -60038,6 +60120,28 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/medical/medbay/central) +"vaJ" = ( +/obj/machinery/airalarm/directional/west, +/obj/structure/table, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/item/computer_hardware/hard_drive/portable{ + pixel_x = -2 + }, +/obj/item/computer_hardware/hard_drive/portable{ + pixel_x = 7; + pixel_y = 2 + }, +/obj/item/computer_hardware/hard_drive/portable{ + pixel_x = -5; + pixel_y = 8 + }, +/obj/item/computer_hardware/hard_drive/portable{ + pixel_x = -8; + pixel_y = -3 + }, +/turf/open/floor/iron/white, +/area/science/storage) "vaK" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/stripes/line{ @@ -60047,11 +60151,26 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) -"vaM" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron, -/area/cargo/sorting) +"vaS" = ( +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rndlab2"; + name = "Secondary Research and Development Shutter" + }, +/obj/machinery/door/window/southleft{ + dir = 4; + name = "Research Lab Desk"; + req_one_access_txt = "7" + }, +/obj/item/folder, +/obj/item/pen, +/turf/open/floor/iron/white, +/area/science/lab) +"vaX" = ( +/turf/closed/wall/r_wall, +/area/engineering/atmos/pumproom) "vaY" = ( /obj/structure/table, /obj/item/kitchen/rollingpin, @@ -60133,16 +60252,17 @@ /obj/machinery/light/no_nightlight/directional/north, /turf/open/floor/iron, /area/engineering/atmos) -"vbY" = ( -/obj/structure/chair/office/light{ - dir = 4 +"vbR" = ( +/obj/structure/table/glass, +/obj/item/clothing/accessory/armband/hydro, +/obj/item/clothing/suit/apron, +/obj/item/wrench, +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, -/obj/effect/landmark/start/chemist, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/medical/pharmacy) +/obj/structure/sign/poster/random/directional/east, +/turf/open/floor/iron, +/area/service/hydroponics) "vca" = ( /obj/structure/sink{ dir = 8; @@ -60227,6 +60347,13 @@ }, /turf/open/floor/iron, /area/hallway/secondary/service) +"vdo" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/mixing/launch) "vdF" = ( /obj/effect/turf_decal/delivery, /obj/structure/closet/secure_closet/engineering_welding, @@ -60245,6 +60372,12 @@ }, /turf/open/floor/iron, /area/hallway/primary/fore) +"vep" = ( +/obj/machinery/portable_atmospherics/scrubber/huge, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/storage) "vet" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 8 @@ -60268,6 +60401,15 @@ /obj/structure/disposalpipe/trunk, /turf/open/floor/iron/dark, /area/medical/storage) +"veH" = ( +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/camera/directional/north{ + c_tag = "Engineering - Power Monitoring" + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/computer/station_alert, +/turf/open/floor/iron/dark, +/area/engineering/main) "veJ" = ( /obj/effect/turf_decal/delivery, /obj/structure/cable, @@ -60312,18 +60454,6 @@ /obj/effect/turf_decal/stripes/white/full, /turf/open/floor/iron/white, /area/science/robotics/lab) -"vfs" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/structure/cable, -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = -2 - }, -/obj/machinery/airalarm/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/iron/white, -/area/medical/cryo) "vfz" = ( /obj/item/radio/intercom/directional/west, /obj/effect/turf_decal/bot{ @@ -60334,16 +60464,25 @@ dir = 1 }, /area/engineering/main) -"vgb" = ( -/obj/machinery/door/airlock/research{ - name = "Abandoned Space Bridge"; - req_access_txt = "55" +"vfL" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/purple{ + dir = 6 }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/effect/mapping_helpers/airlock/abandoned, -/turf/open/floor/iron/white, -/area/maintenance/aft/lesser) +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/genetics) +"vgj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/security/range) "vgp" = ( /obj/machinery/light/directional/west, /obj/structure/extinguisher_cabinet/directional/west, @@ -60388,12 +60527,12 @@ /obj/machinery/status_display/evac/directional/south, /turf/open/floor/engine, /area/engineering/supermatter/room) -"vgT" = ( -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/command/heads_quarters/cmo) +"vgY" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron, +/area/science/mixing) "vhr" = ( /obj/machinery/airalarm/directional/south, /obj/effect/turf_decal/tile/neutral{ @@ -60427,6 +60566,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/engineering/atmos) +"vil" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/cargo/storage) "vio" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ @@ -60450,6 +60596,13 @@ }, /turf/open/floor/iron/white, /area/command/heads_quarters/captain/private) +"vis" = ( +/obj/structure/filingcabinet, +/obj/item/folder/documents, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ai_monitored/command/nuke_storage) "viM" = ( /obj/structure/table, /obj/machinery/cell_charger, @@ -60518,23 +60671,6 @@ /obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat/foyer) -"vjE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Prison Wing"; - req_access_txt = "1" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "perma-entrance" - }, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/security/brig) -"vjF" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/iron/white, -/area/medical/cryo) "vkc" = ( /obj/effect/landmark/start/librarian, /obj/structure/chair/office{ @@ -60574,6 +60710,13 @@ /obj/item/circuitboard/mecha/ripley/peripherals, /turf/open/floor/iron, /area/science/robotics/lab) +"vkP" = ( +/obj/structure/closet/l3closet/virology, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/medical/virology) "vkX" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/bot{ @@ -60611,15 +60754,6 @@ /obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron, /area/hallway/primary/port) -"vlF" = ( -/obj/structure/cable, -/obj/structure/table/reinforced, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/security/checkpoint/customs) "vlR" = ( /obj/effect/turf_decal/box/white{ color = "#52B4E9" @@ -60708,14 +60842,13 @@ /obj/structure/cable, /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/ai) -"vnu" = ( -/obj/machinery/computer/pandemic, -/obj/structure/cable, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 8 +"vnr" = ( +/obj/structure/disposalpipe/junction/yjunction, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 }, -/turf/open/floor/iron/white, -/area/medical/virology) +/turf/open/floor/iron/white/side, +/area/medical/medbay/central) "vnw" = ( /obj/structure/cable, /obj/effect/spawner/random/engineering/tracking_beacon, @@ -60740,26 +60873,45 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/wood, /area/commons/dorms) -"vox" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/effect/turf_decal/siding/white{ +"vof" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/plasma_output{ + dir = 1 + }, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) +"vow" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/obj/machinery/light_switch/directional/east, +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ dir = 4 }, -/obj/item/clothing/glasses/hud/health{ - pixel_y = 6 +/turf/open/floor/iron/white, +/area/medical/virology) +"voy" = ( +/obj/structure/table, +/obj/item/folder/red{ + pixel_x = 3 }, -/obj/item/clothing/glasses/hud/health{ - pixel_y = 4 - }, -/obj/item/clothing/glasses/hud/health{ +/obj/item/folder/white{ + pixel_x = -4; pixel_y = 2 }, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/iron/white/side{ - dir = 8 +/obj/item/restraints/handcuffs, +/obj/machinery/light/directional/east, +/obj/item/radio/off, +/obj/machinery/requests_console/directional/east{ + department = "Security"; + departmentType = 5; + name = "Security Requests Console" }, -/area/medical/treatment_center) +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/secondary/exit/departure_lounge) "voB" = ( /obj/machinery/light_switch/directional/west, /turf/open/floor/iron/grimy, @@ -60877,6 +61029,27 @@ /obj/machinery/atmospherics/pipe/smart/simple/dark/visible, /turf/open/floor/iron, /area/maintenance/disposal/incinerator) +"vqz" = ( +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/research) +"vqB" = ( +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/structure/table, +/obj/effect/turf_decal/tile/red/half/contrasted, +/turf/open/floor/iron/dark, +/area/security/office) "vqC" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -60884,16 +61057,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/science/robotics/mechbay) -"vqM" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/command/heads_quarters/cmo) "vrk" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -60930,22 +61093,6 @@ }, /turf/open/floor/iron/white, /area/security/prison) -"vrP" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/machinery/airalarm/directional/east, -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security in red at the top, you see engineering in yellow, science in purple, escape in checkered red-and-white, medbay in green, arrivals in checkered red-and-blue, and then cargo in brown."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/secondary/exit/departure_lounge) "vrS" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -60963,6 +61110,18 @@ }, /turf/open/floor/iron, /area/hallway/secondary/command) +"vse" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/medical/chemistry) "vss" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -60989,9 +61148,6 @@ /obj/structure/cable, /turf/open/floor/iron/solarpanel/airless, /area/solars/port/aft) -"vsR" = ( -/turf/closed/wall, -/area/engineering/atmos/pumproom) "vsS" = ( /obj/structure/chair/stool/directional/west, /obj/machinery/camera/directional/north{ @@ -61003,23 +61159,6 @@ }, /turf/open/floor/iron, /area/security/brig) -"vsT" = ( -/obj/machinery/status_display/ai/directional/north, -/obj/machinery/computer/station_alert, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/command/heads_quarters/ce) -"vsU" = ( -/obj/structure/window/reinforced, -/obj/machinery/computer/atmos_control/tank/carbon_tank{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/engineering/atmos) "vsX" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -61027,12 +61166,6 @@ /obj/structure/cable, /turf/open/floor/engine, /area/engineering/supermatter/room) -"vte" = ( -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/command/gateway) "vtq" = ( /obj/machinery/door/airlock/maintenance{ name = "Chemistry Maintenance"; @@ -61050,32 +61183,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/department/medical/central) -"vtV" = ( -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/command/gateway) -"vui" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder, -/obj/item/stack/sheet/mineral/plasma{ - pixel_y = 10 - }, -/obj/machinery/light/directional/south, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, -/turf/open/floor/iron/white, -/area/medical/chemistry) -"vuk" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/medical/chemistry) "vuA" = ( /obj/machinery/door/airlock/maintenance{ name = "Storage Room"; @@ -61085,13 +61192,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/starboard/greater) -"vuH" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/medical/chemistry) "vuI" = ( /obj/structure/cable, /obj/effect/turf_decal/trimline/blue/filled/line{ @@ -61138,29 +61238,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/maintenance/starboard/greater) -"vvT" = ( -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/hallway/primary/central) -"vwh" = ( -/obj/structure/table, -/obj/item/stack/wrapping_paper, -/obj/item/stack/wrapping_paper{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/cargo/sorting) "vwv" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 @@ -61170,6 +61247,22 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/science/xenobiology) +"vwU" = ( +/obj/structure/table/glass, +/obj/item/storage/secure/briefcase{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/storage/medkit/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/command/heads_quarters/cmo) "vxd" = ( /obj/machinery/light/small/directional/south, /obj/effect/turf_decal/stripes/corner{ @@ -61230,6 +61323,20 @@ /obj/machinery/light/small/directional/south, /turf/open/floor/iron, /area/commons/fitness/recreation) +"vyu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/poster/random/directional/south, +/turf/open/floor/iron, +/area/hallway/secondary/service) "vyz" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -61238,12 +61345,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"vyB" = ( -/obj/effect/turf_decal/bot_white/right, -/obj/structure/closet/crate/goldcrate, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ai_monitored/command/nuke_storage) "vyM" = ( /obj/machinery/holopad, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -61279,6 +61380,12 @@ }, /turf/open/floor/iron/dark, /area/service/chapel/office) +"vzC" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/security/courtroom) "vzJ" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 @@ -61291,6 +61398,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/security/prison) +"vzU" = ( +/obj/machinery/computer/operating{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted, +/turf/open/floor/iron/white, +/area/medical/surgery/aft) "vzV" = ( /obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -61317,26 +61431,79 @@ }, /turf/open/floor/iron, /area/hallway/primary/central) +"vAr" = ( +/obj/structure/table, +/obj/machinery/computer/security/telescreen/ordnance{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/mixing/launch) "vAx" = ( /obj/item/target/syndicate, /obj/structure/training_machine, /obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/iron, /area/security/range) -"vAW" = ( +"vAB" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/light/directional/south, /obj/structure/rack, -/obj/item/shield/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/shield/riot, -/obj/item/shield/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted, +/obj/item/clothing/under/color/blue, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/neck/tie/blue, +/obj/structure/sign/poster/official/random/directional/south, /turf/open/floor/iron/dark, -/area/ai_monitored/security/armory) +/area/commons/fitness/recreation) +"vAP" = ( +/obj/structure/table, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/item/radio/headset/headset_medsci{ + pixel_x = -7; + pixel_y = 4 + }, +/obj/item/storage/box/monkeycubes{ + pixel_x = 6; + pixel_y = 9 + }, +/obj/item/storage/box/gloves{ + pixel_x = 5; + pixel_y = 1 + }, +/obj/machinery/button/door/directional/east{ + id = "rdgene2"; + name = "Secondary Genetics Shutters Control"; + pixel_y = -6; + req_access_txt = "7" + }, +/obj/machinery/button/door/directional/east{ + id = "rdgene"; + name = "Primary Genetics Shutters Control"; + pixel_y = 6; + req_access_txt = "7" + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/genetics) +"vAT" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/westleft{ + dir = 4; + name = "Robotics Desk"; + req_access_txt = "29" + }, +/obj/item/folder, +/obj/item/pen, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "roboticsprivacy"; + name = "Robotics Shutters" + }, +/obj/effect/turf_decal/tile/purple/fourcorners, +/turf/open/floor/iron, +/area/science/robotics/lab) "vAY" = ( /obj/machinery/door/airlock/mining{ name = "Warehouse"; @@ -61498,19 +61665,6 @@ /obj/item/tail_pin, /turf/open/space/basic, /area/space/nearstation) -"vDs" = ( -/obj/structure/closet/secure_closet{ - name = "contraband locker"; - req_access_txt = "3" - }, -/obj/effect/spawner/random/maintenance/three, -/obj/effect/spawner/random/contraband/armory, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/ai_monitored/security/armory) "vDB" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -61597,24 +61751,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/telecomms, /area/tcommsat/server) -"vEm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"vEn" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/white, -/area/science/mixing/launch) "vEr" = ( /obj/machinery/atmospherics/pipe/smart/simple/green/visible, /obj/effect/spawner/structure/window/reinforced, @@ -61641,6 +61777,17 @@ }, /turf/open/floor/iron, /area/science/research) +"vEE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron, +/area/hallway/primary/starboard) "vEF" = ( /obj/structure/table, /obj/item/hfr_box/corner, @@ -61662,15 +61809,6 @@ /obj/item/binoculars, /turf/open/space/basic, /area/space/nearstation) -"vFf" = ( -/obj/structure/table/wood, -/obj/item/gavelblock, -/obj/item/gavelhammer, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/security/courtroom) "vFk" = ( /obj/structure/window/reinforced{ dir = 1; @@ -61698,14 +61836,14 @@ }, /turf/open/floor/iron/white, /area/command/heads_quarters/rd) -"vFF" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 +"vFv" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 }, -/turf/open/floor/iron, -/area/engineering/atmos) +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/mixing/launch) "vFN" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/computer/mech_bay_power_console{ @@ -61778,45 +61916,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/hallway/secondary/exit/departure_lounge) -"vGS" = ( -/obj/structure/table, -/obj/item/stack/package_wrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/stack/package_wrap{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown/half/contrasted, -/turf/open/floor/iron, -/area/cargo/sorting) -"vGV" = ( -/obj/structure/closet/athletic_mixed, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron/dark, -/area/commons/fitness/recreation) -"vHa" = ( -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rndlab2"; - name = "Secondary Research and Development Shutter" - }, -/obj/machinery/door/window/southleft{ - dir = 4; - name = "Research Lab Desk"; - req_one_access_txt = "7" - }, -/obj/item/folder, -/obj/item/pen, -/turf/open/floor/iron/white, -/area/science/lab) "vHg" = ( /obj/item/radio/intercom/directional/north, /obj/machinery/light/directional/north, @@ -61831,23 +61930,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/primary/port) -"vHx" = ( -/obj/structure/rack, -/obj/item/gun/energy/e_gun{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/gun/energy/e_gun, -/obj/item/gun/energy/e_gun{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/ai_monitored/security/armory) +"vHu" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, +/turf/open/floor/iron/white, +/area/medical/chemistry) "vHG" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/tile/blue{ @@ -61858,11 +61944,10 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/hallway/primary/aft) -"vHJ" = ( -/obj/effect/spawner/random/vending/snackvend, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/hallway/primary/central) +"vHM" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/iron, +/area/security/courtroom) "vHP" = ( /obj/machinery/vending/cigarette, /obj/effect/turf_decal/stripes/line{ @@ -61897,12 +61982,40 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/hallway/primary/central) -"vIl" = ( -/obj/machinery/light/directional/west, -/obj/machinery/light_switch/directional/west, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/security/office) +"vIi" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/o_plus{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/reagent_containers/blood/o_minus, +/obj/item/reagent_containers/blood/b_plus, +/obj/item/reagent_containers/blood/b_minus, +/obj/item/reagent_containers/blood/a_plus, +/obj/item/reagent_containers/blood/a_minus, +/obj/item/reagent_containers/blood/lizard, +/obj/item/reagent_containers/blood/ethereal, +/obj/item/reagent_containers/blood{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/reagent_containers/blood{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/reagent_containers/blood{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/medical/virology) "vIo" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/external{ @@ -61922,6 +62035,12 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/maintenance/starboard/greater) +"vIA" = ( +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/security/courtroom) "vIC" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -61934,6 +62053,12 @@ /obj/structure/lattice, /turf/open/space/basic, /area/space/nearstation) +"vIZ" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/security/office) "vJt" = ( /obj/structure/cable, /obj/machinery/firealarm/directional/west, @@ -61982,28 +62107,21 @@ }, /turf/open/floor/iron, /area/science/lab) -"vKc" = ( -/obj/machinery/photocopier{ - pixel_y = 3 +"vKf" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 }, -/obj/effect/turf_decal/tile/red/half/contrasted{ +/obj/machinery/light/small/directional/east, +/obj/machinery/camera/directional/east{ + c_tag = "MiniSat Exterior - Port Aft"; + network = list("minisat") + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, /turf/open/floor/iron/dark, -/area/security/brig) -"vKf" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/orange, -/obj/item/restraints/handcuffs, -/obj/item/reagent_containers/spray/pepper, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/security/prison) +/area/ai_monitored/aisat/exterior) "vKl" = ( /obj/structure/cable, /obj/machinery/power/solar_control{ @@ -62041,22 +62159,6 @@ /obj/effect/turf_decal/trimline/blue/filled/line, /turf/open/floor/iron, /area/hallway/primary/central) -"vKY" = ( -/obj/machinery/firealarm/directional/north, -/obj/machinery/camera/directional/west{ - c_tag = "Medbay Clinic"; - network = list("ss13","medbay") - }, -/obj/item/radio/intercom/directional/west, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/medical/medbay/central) "vLe" = ( /obj/structure/musician/piano, /obj/structure/window/reinforced{ @@ -62086,6 +62188,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/maintenance/starboard/fore) +"vLr" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/construction/storage_wing) "vLz" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -62103,6 +62212,10 @@ /obj/item/stock_parts/micro_laser, /turf/open/floor/iron, /area/science/lab) +"vLF" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) "vLK" = ( /obj/effect/landmark/event_spawn, /obj/structure/cable, @@ -62112,6 +62225,15 @@ }, /turf/open/floor/plating, /area/maintenance/aft/greater) +"vMe" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/machinery/newscaster/directional/south, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/hallway/primary/central) "vMg" = ( /obj/effect/spawner/random/trash/garbage{ spawn_scatter_radius = 1 @@ -62152,12 +62274,10 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"vNh" = ( -/obj/structure/chair, -/obj/effect/landmark/start/chaplain, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/service/chapel/funeral) +"vNi" = ( +/obj/effect/turf_decal/tile/purple/fourcorners, +/turf/open/floor/iron, +/area/hallway/primary/aft) "vNt" = ( /obj/structure/tank_dispenser, /obj/machinery/light/directional/north, @@ -62221,30 +62341,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/service/hydroponics) -"vOh" = ( -/obj/structure/table/glass, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 9 - }, -/obj/effect/turf_decal/tile/green/anticorner/contrasted, -/turf/open/floor/iron/white, -/area/medical/virology) -"vOi" = ( -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/structure/table, -/obj/item/clothing/gloves/color/latex{ - pixel_x = 4; - pixel_y = 9 - }, -/obj/item/storage/box/monkeycubes{ - pixel_x = 4 +"vOe" = ( +/obj/machinery/vending/coffee, +/obj/structure/sign/map/left{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-left-MS"; + pixel_y = 32 }, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/science/genetics) +/area/hallway/secondary/exit/departure_lounge) "vOl" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -62252,22 +62358,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/engineering/main) -"vOq" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/white, -/area/medical/treatment_center) -"vOA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/research{ - name = "Chemical Storage"; - req_access_txt = "69" - }, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/turf/open/floor/iron/textured, -/area/medical/medbay/central) "vOM" = ( /obj/structure/plasticflaps/opaque, /obj/effect/turf_decal/delivery, @@ -62338,6 +62428,12 @@ icon_state = "platingdmg1" }, /area/maintenance/starboard/aft) +"vPU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/carbon_output{ + dir = 1 + }, +/turf/open/floor/engine/co2, +/area/engineering/atmos) "vQn" = ( /obj/effect/decal/cleanable/blood/old, /turf/open/floor/plating, @@ -62365,6 +62461,16 @@ /obj/machinery/rnd/server, /turf/open/floor/circuit/telecomms/server, /area/science/server) +"vRo" = ( +/obj/machinery/door/window/southleft{ + dir = 8; + name = "Mass Driver Door"; + req_access_txt = "8" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/mixing/launch) "vRT" = ( /obj/machinery/light/directional/south, /obj/item/stack/sheet/cardboard{ @@ -62373,18 +62479,6 @@ /obj/item/stack/package_wrap, /turf/open/floor/iron, /area/security/prison) -"vRU" = ( -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - pixel_y = 32 - }, -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/modular_computer/console/preset/engineering, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/engineering/main) "vRZ" = ( /obj/structure/closet/secure_closet/warden, /obj/item/gun/energy/laser, @@ -62412,16 +62506,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/security/prison) -"vSw" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/firealarm/directional/north, -/obj/structure/tank_holder/extinguisher, -/obj/machinery/camera/directional/east{ - c_tag = "Medbay Cryogenics"; - network = list("ss13","medbay") - }, -/turf/open/floor/iron/white, -/area/medical/cryo) "vSJ" = ( /obj/item/radio/intercom/directional/north, /obj/machinery/camera/directional/north{ @@ -62434,6 +62518,12 @@ }, /turf/open/floor/iron, /area/cargo/storage) +"vSQ" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/oxygen_input{ + dir = 1 + }, +/turf/open/floor/engine/o2, +/area/engineering/atmos) "vTa" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, @@ -62444,6 +62534,14 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/greater) +"vTi" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Secure Tech Storage"; + req_access_txt = "19;23" + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/engineering/storage/tech) "vTp" = ( /obj/structure/table/reinforced, /obj/machinery/light/directional/north, @@ -62467,6 +62565,16 @@ /obj/machinery/duct, /turf/open/floor/iron/white, /area/medical/treatment_center) +"vTR" = ( +/obj/machinery/firealarm/directional/west, +/obj/structure/table, +/obj/item/folder, +/obj/item/storage/medkit/regular, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/iron, +/area/commons/locker) "vUg" = ( /obj/structure/cable, /turf/open/floor/iron, @@ -62476,19 +62584,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/science/xenobiology) -"vUr" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/meter/atmos/atmos_waste_loop, -/obj/machinery/camera/directional/north{ - c_tag = "Atmospherics - Distro Loop" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/engineering/atmos/pumproom) "vUI" = ( /obj/structure/table/glass, /obj/structure/disposalpipe/segment{ @@ -62572,6 +62667,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/ai_monitored/command/storage/satellite) +"vVM" = ( +/obj/effect/turf_decal/bot_white/right, +/obj/structure/closet/crate/goldcrate, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/ai_monitored/command/nuke_storage) "vVP" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/white/line, @@ -62586,6 +62687,20 @@ }, /turf/open/floor/iron, /area/command/gateway) +"vWm" = ( +/obj/item/radio/intercom/directional/west, +/obj/structure/table, +/obj/item/storage/backpack/duffelbag/sec/surgery{ + pixel_y = 5 + }, +/obj/item/clothing/mask/balaclava, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/red/half/contrasted, +/turf/open/floor/iron/dark, +/area/security/execution/education) "vWs" = ( /obj/structure/chair/office{ dir = 8 @@ -62611,19 +62726,19 @@ }, /turf/open/floor/iron/dark, /area/engineering/atmos) -"vXk" = ( -/obj/machinery/computer/operating{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/medical/surgery/theatre) "vXl" = ( /obj/effect/turf_decal/stripes/red/line{ dir = 5 }, /turf/open/floor/engine, /area/science/cytology) +"vXs" = ( +/obj/machinery/chem_master, +/obj/machinery/light/directional/east, +/obj/structure/noticeboard/directional/east, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/turf/open/floor/iron/white, +/area/medical/pharmacy) "vXD" = ( /obj/structure/table/wood/poker, /obj/structure/cable, @@ -62655,15 +62770,6 @@ }, /turf/open/floor/wood, /area/service/bar) -"vYe" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Storage"; - req_access_txt = "5" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/medical/storage) "vYq" = ( /obj/machinery/firealarm/directional/east, /obj/effect/decal/cleanable/dirt, @@ -62683,17 +62789,6 @@ }, /turf/closed/wall, /area/security/checkpoint/engineering) -"vYU" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Evidence Storage"; - req_one_access_txt = "1;4" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/security/brig) "vYX" = ( /obj/machinery/camera/directional/south{ c_tag = "Bridge - Command Chair" @@ -62718,13 +62813,18 @@ /obj/structure/chair/stool/directional/south, /turf/open/floor/iron, /area/security/prison) -"vZu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron, -/area/engineering/break_room) +"vZn" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 9 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/engineering/atmos/pumproom) "vZz" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -62833,16 +62933,6 @@ /obj/machinery/space_heater, /turf/open/floor/plating, /area/maintenance/starboard/greater) -"wcf" = ( -/obj/machinery/computer/secure_data{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/security/checkpoint/supply) "wcm" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/rack, @@ -62852,14 +62942,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/cargo/warehouse) -"wco" = ( -/obj/structure/table/reinforced, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/security/checkpoint/customs) "wcs" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 4 @@ -62998,6 +63080,13 @@ "wfw" = ( /turf/open/floor/iron, /area/cargo/storage) +"wfJ" = ( +/obj/effect/turf_decal/box, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/science/mixing/launch) "wfQ" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -63091,26 +63180,16 @@ }, /turf/open/floor/iron, /area/security/warden) -"whw" = ( -/obj/machinery/computer/rdconsole, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/command/bridge) -"whC" = ( -/obj/machinery/door/window/brigdoor{ - name = "Command Desk"; - req_access_txt = "19" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/dark, -/area/command/bridge) "whU" = ( /obj/effect/spawner/random/trash/box, /turf/open/floor/plating, /area/maintenance/starboard/greater) +"whX" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/iron, +/area/engineering/atmos/pumproom) "wia" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ @@ -63134,6 +63213,19 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/commons/locker) +"wiu" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/item/stack/sheet/iron/fifty, +/obj/item/storage/toolbox/emergency, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/cable, +/obj/effect/spawner/random/engineering/flashlight, +/turf/open/floor/iron/dark, +/area/command/teleporter) "wiy" = ( /obj/machinery/shower{ dir = 8; @@ -63142,6 +63234,16 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/freezer, /area/security/prison) +"wiH" = ( +/obj/machinery/door/airlock/command{ + name = "Command Desk"; + req_access_txt = "19" + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/command/bridge) "wiX" = ( /obj/effect/turf_decal/tile/bar, /obj/effect/turf_decal/tile/bar{ @@ -63183,12 +63285,34 @@ /obj/machinery/duct, /turf/open/floor/iron/white, /area/medical/treatment_center) -"wjZ" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 10 +"wka" = ( +/obj/structure/closet/l3closet/security, +/obj/structure/window/reinforced{ + dir = 8 }, -/turf/closed/wall/r_wall, -/area/engineering/atmos/pumproom) +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/security/brig) +"wkg" = ( +/obj/machinery/computer/security/telescreen{ + desc = "Used for monitoring medbay to ensure patient safety."; + dir = 4; + name = "Medbay Monitor"; + network = list("medbay"); + pixel_x = -32 + }, +/obj/machinery/light_switch/directional/west{ + pixel_x = -20 + }, +/obj/machinery/computer/med_data{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/red/fourcorners, +/turf/open/floor/iron/dark, +/area/security/checkpoint/medical) "wkj" = ( /turf/open/floor/iron/dark, /area/engineering/atmos) @@ -63215,48 +63339,15 @@ }, /turf/open/floor/plating, /area/maintenance/department/science/central) -"wkB" = ( -/obj/structure/table/glass, -/obj/item/stack/sheet/mineral/plasma{ - pixel_y = 4 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/structure/cable, -/obj/machinery/light_switch/directional/west, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/science/cytology) -"wkC" = ( +"wkD" = ( +/obj/machinery/power/shieldwallgen, /obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, -/area/security/brig) +/area/command/teleporter) "wkJ" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/open/floor/engine/air, /area/engineering/atmos) -"wkM" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/light/no_nightlight/directional/north, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/engineering/atmos/pumproom) "wkO" = ( /obj/effect/landmark/xeno_spawn, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -63305,16 +63396,18 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/medical/medbay/central) -"wmn" = ( -/obj/structure/rack, -/obj/item/storage/box/shipping, -/obj/item/pushbroom, -/obj/machinery/light_switch/directional/south, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ - dir = 4 +"wma" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/machinery/airalarm/directional/north, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 }, -/turf/open/floor/iron, -/area/cargo/sorting) +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/security/lockers) "wmt" = ( /obj/effect/decal/cleanable/food/flour, /turf/open/floor/plating, @@ -63361,6 +63454,17 @@ /obj/machinery/atmospherics/pipe/smart/simple/orange/hidden, /turf/open/floor/plating, /area/maintenance/department/engine) +"wnp" = ( +/obj/item/emptysandbag, +/obj/item/emptysandbag, +/obj/item/emptysandbag, +/obj/item/emptysandbag, +/obj/item/emptysandbag, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/cargo/storage) "wnx" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -63377,6 +63481,25 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/aft/greater) +"wnE" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/medical/pharmacy) +"wnF" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/genetics) "wnQ" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -63390,13 +63513,18 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/starboard/lesser) -"wor" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/machinery/newscaster/directional/north, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/hallway/secondary/exit/departure_lounge) +"wof" = ( +/obj/machinery/light/directional/east, +/obj/structure/filingcabinet, +/obj/machinery/computer/security/telescreen/minisat{ + dir = 8; + pixel_x = 26 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/security/checkpoint/engineering) "wos" = ( /obj/machinery/door/airlock/maintenance{ req_one_access_txt = "12;48;50;1" @@ -63449,6 +63577,19 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/science/research) +"woO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/spawner/random/trash/garbage{ + spawn_scatter_radius = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/starboard/aft) "woT" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -63459,29 +63600,20 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/hallway/primary/central) -"woV" = ( -/obj/machinery/airalarm/directional/west, -/obj/structure/closet/secure_closet/security/med, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron/dark, -/area/security/checkpoint/medical) +"wpb" = ( +/obj/machinery/computer/operating{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/science/robotics/lab) "wpc" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/commons/vacant_room/commissary) -"wpn" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/storage) -"wpC" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/mob/living/simple_animal/parrot/poly, -/turf/open/floor/iron/dark, -/area/command/heads_quarters/ce) "wpI" = ( /obj/structure/chair{ dir = 4 @@ -63515,23 +63647,6 @@ /obj/structure/chair/comfy/brown, /turf/open/floor/engine/cult, /area/service/library) -"wqm" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/security/execution/education) -"wqs" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/wrench, -/obj/machinery/airalarm/directional/west, -/obj/machinery/light_switch/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/server) "wqQ" = ( /obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ dir = 4 @@ -63551,31 +63666,68 @@ }, /turf/open/floor/plating, /area/commons/vacant_room/commissary) -"wrm" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/neutral/fourcorners, +"wrv" = ( +/obj/structure/table/reinforced, +/obj/item/stamp/denied{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/item/stamp{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/pen/red{ + pixel_y = 10 + }, +/obj/item/dest_tagger{ + pixel_x = 9; + pixel_y = 10 + }, +/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ + dir = 1 + }, /turf/open/floor/iron, -/area/command/heads_quarters/ce) -"wrH" = ( -/obj/machinery/air_sensor/atmos/oxygen_tank, -/turf/open/floor/engine/o2, -/area/engineering/atmos) +/area/cargo/sorting) +"wrL" = ( +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/door/firedoor/heavy, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "sci-toxins-passthrough" + }, +/obj/machinery/door/airlock/research{ + name = "Ordnance Gas Storage"; + req_access_txt = "8" + }, +/turf/open/floor/iron/white, +/area/science/storage) "wrP" = ( /turf/closed/wall, /area/maintenance/aft/lesser) -"wrR" = ( -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/research{ - name = "Ordnance Test Lab"; - req_access_txt = "8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/heavy, +"wsc" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, /obj/structure/cable, -/turf/open/floor/iron/white, -/area/science/storage) +/turf/open/floor/iron/dark, +/area/engineering/storage/tech) +"wsq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Armory"; + req_access_txt = "3" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark, +/area/ai_monitored/security/armory) +"wsw" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, +/obj/machinery/meter, +/turf/open/floor/iron, +/area/engineering/atmos) "wsE" = ( /obj/effect/turf_decal/plaque{ icon_state = "L2" @@ -63623,15 +63775,14 @@ /obj/effect/spawner/random/engineering/flashlight, /turf/open/floor/plating, /area/maintenance/central) -"wte" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/stasis{ - dir = 4 +"wtj" = ( +/obj/machinery/computer/secure_data, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 }, -/obj/machinery/defibrillator_mount/directional/north, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/white, -/area/medical/treatment_center) +/turf/open/floor/iron/dark, +/area/command/bridge) "wtl" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -63654,16 +63805,6 @@ }, /turf/open/floor/iron/white, /area/science/robotics/lab) -"wtQ" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/green/fourcorners, -/turf/open/floor/iron, -/area/hallway/primary/central) "wtU" = ( /obj/effect/turf_decal/tile/purple, /obj/structure/cable, @@ -63671,18 +63812,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/primary/central) -"wub" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/science/research) "wuc" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, @@ -63720,16 +63849,6 @@ "wvo" = ( /turf/open/floor/iron, /area/maintenance/port/fore) -"wvs" = ( -/obj/structure/bed, -/obj/item/bedsheet/red, -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/machinery/airalarm/directional/east, -/obj/machinery/flasher/directional/north{ - id = "IsolationFlash" - }, -/turf/open/floor/iron/white, -/area/security/prison) "wvy" = ( /obj/machinery/door/airlock/public/glass{ name = "Prison Cafeteria" @@ -63763,14 +63882,6 @@ /obj/item/stack/sheet/iron/fifty, /turf/open/floor/iron/dark, /area/engineering/atmospherics_engine) -"wwb" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/engineering/storage/tech) "wwm" = ( /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ dir = 4 @@ -63791,6 +63902,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/central) +"wwM" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/medical/virology) "wxb" = ( /obj/structure/table/reinforced, /obj/item/tank/internals/emergency_oxygen/engi, @@ -63804,12 +63925,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/circuit/green, /area/science/robotics/mechbay) -"wxO" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/iron/white, -/area/medical/treatment_center) +"wxE" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/engineering/storage/tech) "wxS" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -63848,6 +63971,27 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/primary/central) +"wyI" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/item/radio/off{ + pixel_x = -11; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/security/checkpoint/supply) +"wyQ" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/table/wood, +/obj/item/food/pie/cream, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/wood, +/area/service/theater) "wyR" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -63898,6 +64042,36 @@ }, /turf/open/floor/plating, /area/engineering/main) +"wzx" = ( +/obj/structure/table, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/plunger, +/obj/item/plunger, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/medical/chemistry) +"wzB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/security_officer, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/security/office) "wzC" = ( /obj/effect/turf_decal/trimline/purple/filled/line, /obj/effect/turf_decal/bot_white, @@ -63905,32 +64079,25 @@ /obj/machinery/monkey_recycler, /turf/open/floor/iron, /area/science/xenobiology) +"wzF" = ( +/obj/structure/closet/secure_closet{ + name = "contraband locker"; + req_access_txt = "3" + }, +/obj/effect/spawner/random/maintenance/three, +/obj/effect/spawner/random/contraband/armory, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/ai_monitored/security/armory) "wzR" = ( /obj/machinery/power/terminal, /obj/effect/turf_decal/stripes/line, /obj/structure/cable, /turf/open/floor/iron, /area/engineering/main) -"wAi" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Auxilliary Surgery"; - req_access_txt = "45" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/medical/surgery/aft) -"wAw" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/command/bridge) "wAH" = ( /obj/machinery/camera/directional/west{ c_tag = "Medbay Break Room"; @@ -63974,15 +64141,6 @@ }, /turf/open/floor/iron, /area/engineering/main) -"wBI" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 10 - }, -/turf/open/floor/iron/dark/corner, -/area/engineering/atmos/pumproom) "wBP" = ( /obj/structure/table, /obj/item/stack/cable_coil{ @@ -64025,6 +64183,16 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/wood, /area/commons/lounge) +"wCw" = ( +/obj/structure/bed, +/obj/item/bedsheet/red, +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/machinery/airalarm/directional/east, +/obj/machinery/flasher/directional/north{ + id = "IsolationFlash" + }, +/turf/open/floor/iron/white, +/area/security/prison) "wCz" = ( /obj/structure/window/reinforced{ dir = 4 @@ -64090,13 +64258,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/engineering/main) -"wDD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/belt/utility/full, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/robotics/lab) "wDF" = ( /obj/structure/closet/secure_closet/atmospherics, /obj/effect/turf_decal/stripes/line{ @@ -64112,13 +64273,6 @@ }, /turf/open/floor/plating, /area/science/robotics/lab) -"wDU" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/paper/monitorkey, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/command/heads_quarters/ce) "wEj" = ( /obj/structure/flora/junglebush/large, /obj/structure/disposalpipe/segment, @@ -64176,12 +64330,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/command/heads_quarters/rd) -"wEK" = ( -/obj/machinery/gravity_generator/main/station, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/engineering/gravity_generator) "wER" = ( /obj/structure/window/reinforced{ dir = 4 @@ -64205,6 +64353,21 @@ }, /turf/open/floor/plating, /area/maintenance/fore) +"wFg" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Primary Treatment Centre"; + req_access_txt = "5" + }, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/turf/open/floor/iron/white, +/area/medical/treatment_center) "wFh" = ( /obj/machinery/computer/exoscanner_control{ dir = 1 @@ -64215,21 +64378,6 @@ }, /turf/open/floor/iron, /area/maintenance/port/fore) -"wFk" = ( -/obj/effect/turf_decal/stripes/white/line, -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/research) -"wFs" = ( -/obj/effect/turf_decal/siding/purple, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/genetics) "wFB" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/neutral, @@ -64244,6 +64392,18 @@ }, /turf/open/floor/iron/dark, /area/medical/morgue) +"wFO" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/medical/chemistry) +"wFR" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/iron/white, +/area/medical/treatment_center) "wFW" = ( /obj/structure/table, /obj/machinery/cell_charger, @@ -64267,11 +64427,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/medical/medbay/lobby) -"wGC" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/engineering/storage/tech) "wGH" = ( /obj/effect/spawner/random/maintenance, /obj/structure/disposalpipe/segment, @@ -64309,6 +64464,12 @@ }, /turf/open/floor/iron/dark, /area/engineering/storage/tcomms) +"wHN" = ( +/obj/machinery/vending/wardrobe/viro_wardrobe, +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/tile/green/anticorner/contrasted, +/turf/open/floor/iron/white, +/area/medical/virology) "wHO" = ( /obj/effect/turf_decal/trimline/red/filled/corner{ dir = 8 @@ -64317,6 +64478,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/security/checkpoint/medical) +"wHP" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/effect/turf_decal/tile/brown/half/contrasted, +/turf/open/floor/iron, +/area/cargo/sorting) "wHT" = ( /obj/machinery/door/airlock/command/glass{ name = "Gravity Generator Area"; @@ -64361,13 +64527,6 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/ai_upload) -"wIp" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/obj/machinery/meter/atmos/atmos_waste_loop, -/turf/open/floor/iron, -/area/engineering/atmos/pumproom) "wIq" = ( /obj/structure/table, /obj/item/folder/white{ @@ -64414,6 +64573,37 @@ }, /turf/open/floor/iron, /area/cargo/storage) +"wIK" = ( +/obj/structure/table, +/obj/effect/turf_decal/bot, +/obj/item/storage/medkit/toxin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/book/manual/wiki/ordnance{ + pixel_x = 4; + pixel_y = 1 + }, +/turf/open/floor/iron/white, +/area/science/mixing) +"wIS" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/mixing/launch) +"wIU" = ( +/obj/structure/cable, +/obj/machinery/light_switch/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/medical/surgery/aft) "wIX" = ( /obj/structure/sign/warning/electricshock, /turf/closed/wall, @@ -64435,6 +64625,15 @@ }, /turf/open/floor/plating, /area/maintenance/department/science/xenobiology) +"wJv" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/turf/open/space, +/area/space/nearstation) "wJD" = ( /obj/machinery/light/small/directional/east, /obj/effect/turf_decal/tile/neutral, @@ -64442,17 +64641,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/commons/dorms) -"wJJ" = ( -/obj/machinery/computer/scan_consolenew{ - dir = 8 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/genetics) "wJM" = ( /obj/machinery/light_switch/directional/east, /obj/structure/cable, @@ -64482,14 +64670,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/port/fore) -"wKt" = ( -/obj/structure/table/reinforced, -/obj/item/folder/yellow, -/obj/item/stamp/ce, -/obj/item/reagent_containers/pill/patch/aiuri, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/command/heads_quarters/ce) "wKI" = ( /obj/structure/cable, /obj/structure/sign/poster/ripped{ @@ -64530,15 +64710,15 @@ /obj/item/shard, /turf/open/floor/plating, /area/maintenance/starboard/lesser) -"wLi" = ( -/obj/effect/landmark/blobstart, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 1 +"wKZ" = ( +/obj/structure/chair{ + dir = 8; + name = "Defense" }, -/turf/open/floor/iron/white, -/area/maintenance/aft/lesser) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/green/anticorner/contrasted, +/turf/open/floor/iron, +/area/security/courtroom) "wLr" = ( /obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ dir = 1 @@ -64560,6 +64740,22 @@ }, /turf/open/floor/wood, /area/service/lawoffice) +"wLC" = ( +/obj/machinery/light/small/directional/west, +/obj/machinery/door/window{ + base_state = "right"; + icon_state = "right"; + name = "MiniSat Walkway Access" + }, +/obj/machinery/camera/directional/west{ + c_tag = "MiniSat Exterior - Aft Starboard"; + network = list("minisat") + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/ai_monitored/aisat/exterior) "wLS" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -64591,14 +64787,23 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/cargo/miningoffice) -"wMv" = ( -/obj/effect/turf_decal/bot_white/right, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 +"wMu" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 9 }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/machinery/light_switch/directional/north, +/obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/ai_monitored/command/nuke_storage) +/area/science/genetics) "wMK" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment, @@ -64650,6 +64855,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat_interior) +"wNU" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/hallway/primary/port) "wNZ" = ( /obj/machinery/firealarm/directional/south, /obj/machinery/camera/directional/south{ @@ -64680,6 +64890,20 @@ /obj/item/clothing/glasses/meson/engine, /turf/open/floor/iron, /area/engineering/main) +"wOj" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/meter, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/engineering/atmos/pumproom) "wOk" = ( /obj/machinery/door/airlock/research{ glass = 1; @@ -64692,21 +64916,31 @@ "wOn" = ( /turf/open/floor/carpet/green, /area/maintenance/port/aft) -"wOD" = ( -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/structure/window/reinforced, -/obj/machinery/computer/atmos_control/tank/plasma_tank{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/iron, -/area/engineering/atmos) "wOJ" = ( /obj/machinery/light/small/directional/west, /turf/open/floor/plating, /area/maintenance/aft/lesser) +"wOM" = ( +/obj/structure/table/glass, +/obj/item/stack/sheet/mineral/plasma{ + pixel_y = 4 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/structure/cable, +/obj/machinery/light_switch/directional/west, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/science/cytology) "wOY" = ( /obj/docking_port/stationary/random{ dir = 4; @@ -64755,16 +64989,6 @@ }, /turf/open/floor/circuit/green, /area/ai_monitored/turret_protected/ai) -"wPx" = ( -/obj/machinery/disposal/bin, -/obj/machinery/light/directional/south, -/obj/machinery/firealarm/directional/south, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted, -/turf/open/floor/iron/white, -/area/science/lobby) "wPy" = ( /obj/effect/landmark/event_spawn, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -64780,6 +65004,22 @@ }, /turf/open/floor/iron/white/corner, /area/hallway/secondary/entry) +"wPN" = ( +/obj/machinery/firealarm/directional/north, +/obj/machinery/camera/directional/west{ + c_tag = "Medbay Clinic"; + network = list("ss13","medbay") + }, +/obj/item/radio/intercom/directional/west, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/medical/medbay/central) "wPR" = ( /obj/machinery/reagentgrinder{ pixel_y = 4 @@ -64790,17 +65030,6 @@ }, /turf/open/floor/iron, /area/service/hydroponics) -"wPU" = ( -/obj/machinery/door/window/brigdoor/security/cell{ - id = "Cell 2"; - name = "Cell 2" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/security/brig) "wPY" = ( /obj/effect/turf_decal/tile/bar, /obj/effect/turf_decal/tile/bar{ @@ -64867,13 +65096,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/primary/central) -"wRE" = ( -/obj/structure/closet/secure_closet/engineering_chief, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/command/heads_quarters/ce) "wRK" = ( /turf/closed/wall, /area/service/chapel) @@ -64883,14 +65105,14 @@ }, /turf/open/floor/carpet, /area/command/heads_quarters/captain/private) -"wSB" = ( -/obj/machinery/door/airlock/medical{ - name = "Primary Surgical Theatre"; - req_access_txt = "45" +"wSd" = ( +/obj/structure/window/reinforced, +/obj/machinery/computer/atmos_control/mix_tank{ + dir = 1 }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/medical/treatment_center) +/obj/effect/turf_decal/tile/brown/fourcorners, +/turf/open/floor/iron, +/area/engineering/atmos) "wSN" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -64932,6 +65154,18 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/security/brig) +"wTU" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Engineering Security Post"; + req_access_txt = "63" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/red/fourcorners, +/turf/open/floor/iron, +/area/security/checkpoint/engineering) "wTZ" = ( /obj/machinery/shower{ dir = 4 @@ -64953,17 +65187,25 @@ /obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/white, /area/science/mixing/hallway) +"wUr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/command/bridge) "wUy" = ( /obj/machinery/light/small/directional/east, /turf/open/floor/engine, /area/science/xenobiology) -"wUF" = ( -/obj/structure/chair{ - pixel_y = -2 +"wUC" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 1 }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/service/chapel/funeral) +/turf/open/floor/iron, +/area/commons/storage/tools) "wUJ" = ( /obj/structure/cable, /obj/effect/turf_decal/trimline/blue/filled/line{ @@ -65016,17 +65258,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/aft) -"wWp" = ( -/obj/structure/bed/roller, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/white, -/area/medical/medbay/lobby) "wWt" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -65070,45 +65301,30 @@ /obj/machinery/smartfridge, /turf/closed/wall, /area/hallway/secondary/service) -"wWH" = ( -/obj/structure/table, -/obj/item/screwdriver{ - pixel_y = 10 +"wWK" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/camera/directional/west{ + c_tag = "Medbay Primary Treatment Centre West"; + network = list("ss13","medbay") }, -/obj/item/geiger_counter{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/radio/off{ - pixel_x = -5; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/security/checkpoint/engineering) -"wWI" = ( -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge Access"; - req_access_txt = "19" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "bridge-left" - }, -/turf/open/floor/iron/dark, -/area/command/bridge) +/turf/open/floor/iron/white, +/area/medical/treatment_center) "wXv" = ( /obj/effect/landmark/start/assistant, /obj/structure/chair/comfy/black, /turf/open/floor/wood, /area/service/library) +"wXw" = ( +/obj/structure/closet{ + name = "Evidence Closet 4" + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/security/brig) "wXy" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/engineering/glass{ @@ -65124,6 +65340,19 @@ }, /turf/open/floor/engine, /area/science/xenobiology) +"wXM" = ( +/obj/structure/cable, +/obj/structure/table, +/obj/item/stack/medical/mesh, +/obj/item/stack/medical/gauze, +/obj/item/stack/medical/suture, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/medical/medbay/lobby) "wXQ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -65140,6 +65369,18 @@ }, /turf/open/floor/iron, /area/hallway/primary/starboard) +"wYc" = ( +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/pipe_dispenser, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/construction/mining/aux_base) "wYi" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 6 @@ -65150,17 +65391,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/wood, /area/maintenance/port/aft) -"wYw" = ( -/obj/item/emptysandbag, -/obj/item/emptysandbag, -/obj/item/emptysandbag, -/obj/item/emptysandbag, -/obj/item/emptysandbag, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/cargo/storage) "wYQ" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -65193,15 +65423,21 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/science/mixing) -"wZQ" = ( -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 6 +"xad" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/bottle/multiver{ + pixel_x = 6 }, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/purple/fourcorners, -/turf/open/floor/iron, -/area/hallway/primary/aft) +/obj/item/reagent_containers/glass/bottle/epinephrine, +/obj/item/reagent_containers/syringe, +/obj/effect/turf_decal/siding/white/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/iron/white/side{ + dir = 5 + }, +/area/medical/treatment_center) "xai" = ( /obj/structure/chair{ dir = 4 @@ -65220,6 +65456,23 @@ }, /turf/open/floor/iron, /area/hallway/primary/central) +"xaP" = ( +/obj/structure/table, +/obj/machinery/newscaster/security_unit/directional/east, +/obj/machinery/camera/directional/south{ + c_tag = "Departure Lounge - Security Post" + }, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/taperecorder{ + pixel_x = 4 + }, +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/tile/red/anticorner/contrasted, +/turf/open/floor/iron, +/area/hallway/secondary/exit/departure_lounge) "xaT" = ( /obj/structure/chair/office/light, /turf/open/floor/iron/white, @@ -65229,30 +65482,18 @@ /obj/machinery/portable_atmospherics/canister/water_vapor, /turf/open/floor/iron, /area/service/janitor) -"xby" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/machinery/duct, -/obj/machinery/door/airlock/medical/glass{ - name = "Cryogenics Bay"; - req_access_txt = "5" +"xbB" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced{ + dir = 8 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/white, -/area/medical/treatment_center) -"xbH" = ( -/obj/machinery/chem_dispenser{ - layer = 2.7 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/medical/pharmacy) +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/storage) "xbN" = ( /obj/machinery/computer/med_data{ dir = 8 @@ -65330,6 +65571,16 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/aisat/exterior) +"xcA" = ( +/obj/machinery/disposal/bin, +/obj/machinery/light/directional/south, +/obj/machinery/firealarm/directional/south, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple/half/contrasted, +/turf/open/floor/iron/white, +/area/science/lobby) "xcH" = ( /obj/structure/table/wood, /obj/item/storage/crayons, @@ -65356,6 +65607,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/security/interrogation) +"xde" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/medical/chemistry) "xdf" = ( /obj/structure/table, /obj/item/storage/box/hug{ @@ -65384,11 +65642,15 @@ /obj/item/disk/nuclear, /turf/open/floor/carpet, /area/command/heads_quarters/captain/private) -"xdQ" = ( -/obj/effect/landmark/start/geneticist, -/obj/effect/turf_decal/tile/neutral/fourcorners, +"xdN" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, /turf/open/floor/iron/dark, -/area/science/genetics) +/area/engineering/atmos) "xdS" = ( /obj/structure/chair{ dir = 1 @@ -65400,15 +65662,6 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/hallway/secondary/command) -"xer" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/item/stack/cable_coil, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/robotics/lab) "xes" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -65430,6 +65683,11 @@ /obj/machinery/module_duplicator, /turf/open/floor/iron/white, /area/science/misc_lab) +"xew" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/ai_monitored/aisat/exterior) "xeD" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -65490,12 +65748,6 @@ /obj/machinery/smartfridge/petri/preloaded, /turf/open/floor/iron, /area/science/cytology) -"xfH" = ( -/obj/machinery/power/smes/engineering, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/engineering/main) "xfJ" = ( /obj/structure/cable, /obj/machinery/power/solar{ @@ -65512,37 +65764,65 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, /turf/open/floor/engine, /area/engineering/supermatter/room) +"xfU" = ( +/obj/machinery/status_display/evac/directional/north, +/obj/item/folder/yellow{ + pixel_y = 4 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Bridge - Central" + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/command/bridge) "xfX" = ( /turf/open/floor/plating/airless{ icon_state = "panelscorched" }, /area/solars/port/fore) -"xgl" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ +"xgv" = ( +/obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor/iron, -/area/engineering/atmos/pumproom) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/closet/crate/secure{ + desc = "A secure crate containing various materials for building a customised test-site."; + name = "Test Site Materials Crate"; + req_access_txt = "8" + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/mixing/launch) "xgy" = ( /obj/structure/rack, /obj/item/clothing/mask/surgical, /obj/item/clothing/suit/apron/chef, /turf/open/floor/iron/showroomfloor, /area/maintenance/starboard/lesser) +"xgE" = ( +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/power/port_gen/pacman, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable/multilayer/connected, +/turf/open/floor/iron/dark, +/area/ai_monitored/command/storage/satellite) "xgO" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/engineering/break_room) "xgW" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/hallway/primary/aft) +/obj/machinery/suit_storage_unit/security, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/security/brig) "xhg" = ( /obj/effect/turf_decal/delivery, /obj/structure/window/reinforced{ @@ -65578,37 +65858,6 @@ /obj/item/pen/red, /turf/open/floor/iron/white, /area/medical/virology) -"xhx" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/table, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = 7; - pixel_y = -3 - }, -/obj/item/reagent_containers/glass/bottle/multiver{ - pixel_x = -4; - pixel_y = -3 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/structure/sign/warning/nosmoking{ - pixel_y = 28 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/medical/medbay/central) "xhy" = ( /obj/machinery/door/airlock/maintenance{ req_one_access_txt = "12;47" @@ -65617,28 +65866,18 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/aft/lesser) -"xhL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/research) "xhO" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 }, /turf/open/floor/iron/white, /area/science/xenobiology) +"xhS" = ( +/obj/machinery/light/directional/south, +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/commons/fitness/recreation) "xhW" = ( /obj/machinery/airalarm/directional/west, /obj/effect/turf_decal/bot{ @@ -65649,6 +65888,15 @@ dir = 1 }, /area/engineering/atmos) +"xhZ" = ( +/obj/structure/table/glass, +/obj/item/clothing/gloves/color/latex, +/obj/item/surgical_drapes, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/medical/surgery/theatre) "xif" = ( /obj/machinery/door/airlock/maintenance{ req_one_access_txt = "12;5;39" @@ -65669,6 +65917,15 @@ icon_state = "platingdmg2" }, /area/maintenance/department/engine) +"xii" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 9 + }, +/obj/effect/turf_decal/tile/green/anticorner/contrasted, +/turf/open/floor/iron/white, +/area/medical/virology) "xir" = ( /obj/structure/extinguisher_cabinet/directional/west, /obj/effect/turf_decal/tile/neutral{ @@ -65738,12 +65995,13 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/starboard/lesser) -"xjq" = ( -/obj/effect/turf_decal/bot_white/left, -/obj/structure/closet/crate/silvercrate, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/ai_monitored/command/nuke_storage) +"xjm" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/shower{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/medical/surgery/theatre) "xjF" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -65755,21 +66013,6 @@ }, /turf/open/floor/iron, /area/hallway/secondary/command) -"xjO" = ( -/obj/machinery/computer/cargo{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown/anticorner/contrasted, -/turf/open/floor/iron, -/area/cargo/sorting) -"xjT" = ( -/obj/effect/turf_decal/bot_white/left, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/ai_monitored/command/nuke_storage) "xkd" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/rack, @@ -65784,6 +66027,11 @@ /obj/item/wrench, /turf/open/floor/iron, /area/commons/storage/primary) +"xkm" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/command/gateway) "xkw" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -65798,15 +66046,6 @@ dir = 1 }, /area/service/chapel) -"xkL" = ( -/obj/machinery/computer/operating{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/science/robotics/lab) "xkP" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/button/door/directional/east{ @@ -65856,28 +66095,12 @@ }, /turf/open/floor/iron, /area/cargo/warehouse) -"xlo" = ( -/obj/machinery/vending/wardrobe/cargo_wardrobe, -/obj/effect/turf_decal/tile/brown/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/cargo/storage) "xls" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/carpet, /area/service/library) -"xlP" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/hallway/secondary/entry) "xlV" = ( /turf/closed/wall, /area/service/chapel/funeral) @@ -65923,12 +66146,6 @@ }, /turf/open/floor/iron/dark, /area/security/interrogation) -"xmK" = ( -/obj/structure/closet/wardrobe/white, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/landmark/start/hangover/closet, -/turf/open/floor/iron/dark, -/area/commons/locker) "xmR" = ( /obj/effect/landmark/event_spawn, /obj/structure/cable, @@ -65942,6 +66159,20 @@ }, /turf/open/space, /area/space/nearstation) +"xmX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + aiControlDisabled = 1; + id_tag = "prisonereducation"; + name = "Prisoner Education Chamber"; + req_access_txt = "3" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/red/fourcorners, +/turf/open/floor/iron, +/area/security/execution/education) "xnc" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -65993,14 +66224,6 @@ }, /turf/open/floor/iron, /area/hallway/secondary/service) -"xot" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/engineering/atmos) "xov" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -66042,6 +66265,12 @@ /obj/effect/landmark/blobstart, /turf/open/floor/plating, /area/maintenance/starboard/lesser) +"xpb" = ( +/obj/machinery/gravity_generator/main/station, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/engineering/gravity_generator) "xpd" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -66064,60 +66293,13 @@ /obj/structure/cable, /turf/open/floor/plating, /area/engineering/supermatter/room) -"xpP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Dormitories" - }, -/obj/structure/cable, -/obj/machinery/navbeacon/wayfinding, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/commons/dorms) "xpR" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron, /area/commons/fitness/recreation) -"xpX" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/construction/mining/aux_base) "xpZ" = ( /turf/closed/wall, /area/medical/abandoned) -"xqc" = ( -/obj/structure/table/glass, -/obj/item/folder/white{ - pixel_y = 2 - }, -/obj/item/screwdriver{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/radio/headset/headset_med, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/obj/item/hand_labeler, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/turf/open/floor/iron/white, -/area/medical/pharmacy) -"xqe" = ( -/obj/structure/table, -/obj/machinery/computer/security/telescreen/ordnance{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/mixing/launch) "xqh" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, @@ -66162,13 +66344,6 @@ }, /turf/open/floor/iron, /area/hallway/secondary/command) -"xrh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/construction/mining/aux_base) "xrk" = ( /obj/effect/landmark/start/chaplain, /turf/open/floor/iron/dark, @@ -66184,39 +66359,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/engineering/gravity_generator) -"xrp" = ( -/obj/structure/table/glass, -/obj/item/clothing/accessory/armband/hydro, -/obj/item/clothing/suit/apron, -/obj/item/wrench, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/sign/poster/random/directional/east, -/turf/open/floor/iron, -/area/service/hydroponics) -"xrr" = ( -/obj/item/radio/intercom/directional/west, -/obj/structure/table/glass, -/obj/machinery/camera/directional/west{ - c_tag = "Pharmacy"; - network = list("ss13","medbay") - }, -/obj/machinery/light/directional/west, -/obj/item/book/manual/wiki/chemistry{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/book/manual/wiki/grenades, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/medical/pharmacy) -"xrA" = ( -/obj/machinery/air_sensor/atmos/carbon_tank, -/turf/open/floor/engine/co2, -/area/engineering/atmos) "xrQ" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -66235,11 +66377,33 @@ }, /turf/open/floor/plating, /area/hallway/secondary/entry) +"xsn" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/storage) "xsq" = ( /obj/structure/weightmachine/weightlifter, /obj/structure/cable, /turf/open/floor/iron, /area/security/prison) +"xsr" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge Access"; + req_access_txt = "19" + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "bridge-right" + }, +/turf/open/floor/iron/dark, +/area/command/bridge) "xsu" = ( /obj/effect/spawner/random/trash/garbage{ spawn_scatter_radius = 1 @@ -66262,29 +66426,6 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/maintenance/port/aft) -"xsB" = ( -/obj/item/tank/internals/oxygen/red{ - pixel_x = -4; - pixel_y = -1 - }, -/obj/item/tank/internals/oxygen/red{ - pixel_x = 4; - pixel_y = -1 - }, -/obj/item/tank/internals/anesthetic{ - pixel_x = 2 - }, -/obj/item/storage/toolbox/mechanical, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/item/wrench, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/iron/dark, -/area/security/execution/education) "xsG" = ( /obj/structure/disposalpipe/sorting/mail/flip{ dir = 8; @@ -66314,12 +66455,6 @@ /obj/item/radio/intercom/prison/directional/north, /turf/open/floor/plating, /area/security/prison) -"xsW" = ( -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/medical/chemistry) "xtn" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -66370,22 +66505,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/cargo/qm) -"xtV" = ( -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/research{ - name = "Ordnance Lab"; - req_access_txt = "8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rdordnance"; - name = "Ordnance Lab Shutters" - }, -/turf/open/floor/iron/white, -/area/science/mixing) "xtW" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -66450,6 +66569,11 @@ }, /turf/open/floor/iron/white/smooth_large, /area/medical/medbay/lobby) +"xuO" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/service/chapel/funeral) "xuW" = ( /obj/structure/cable, /obj/item/solar_assembly, @@ -66477,6 +66601,16 @@ /obj/effect/spawner/random/techstorage/command_all, /turf/open/floor/iron/dark, /area/engineering/storage/tech) +"xvj" = ( +/obj/structure/closet/bombcloset/security, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/security/brig) "xvB" = ( /obj/structure/window/reinforced, /obj/effect/decal/cleanable/cobweb, @@ -66566,24 +66700,6 @@ /obj/item/storage/fancy/cigarettes/cigpack_uplift, /turf/open/floor/iron/white, /area/medical/abandoned) -"xwn" = ( -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "sci-maint-passthrough" - }, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Entrance"; - req_access_txt = "47" - }, -/turf/open/floor/iron/white, -/area/science/research) "xwq" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -66592,15 +66708,14 @@ }, /turf/open/floor/plating, /area/maintenance/aft/greater) -"xwD" = ( -/obj/effect/turf_decal/siding/purple{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, +"xwu" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/clothing/under/misc/assistantformal, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/shoes/winterboots, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, -/area/science/genetics) +/area/commons/locker) "xwG" = ( /obj/machinery/door/airlock/maintenance{ name = "Library Maintenance"; @@ -66610,13 +66725,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/port) -"xwK" = ( -/obj/machinery/vending/wardrobe/chem_wardrobe, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/medical/chemistry) "xwN" = ( /turf/open/floor/iron, /area/engineering/break_room) @@ -66658,13 +66766,16 @@ icon_state = "wood-broken6" }, /area/cargo/qm) -"xxL" = ( -/obj/structure/closet/l3closet, -/obj/effect/turf_decal/tile/green/anticorner/contrasted{ +"xxQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ dir = 8 }, -/turf/open/floor/iron/white, -/area/medical/virology) +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron, +/area/engineering/atmos/pumproom) "xxX" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ @@ -66676,15 +66787,6 @@ }, /turf/open/floor/iron, /area/security/brig) -"xyh" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/green/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/medical/virology) "xyl" = ( /obj/machinery/door/airlock/maintenance{ name = "Security Maintenance"; @@ -66695,10 +66797,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/fore) -"xym" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron, -/area/service/hydroponics/garden) "xyp" = ( /obj/machinery/status_display/evac/directional/north, /obj/structure/cable, @@ -66719,18 +66817,30 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/secondary/entry) +"xyv" = ( +/obj/structure/table/glass, +/obj/item/retractor, +/obj/item/hemostat, +/obj/item/cautery, +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/iron/white, +/area/medical/surgery/theatre) "xyN" = ( /obj/machinery/hydroponics/constructable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/service/hydroponics) -"xyW" = ( -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/medical/surgery/aft) +"xyY" = ( +/obj/structure/window/reinforced, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue/half/contrasted, +/turf/open/floor/iron/dark, +/area/command/bridge) +"xzc" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/turf/closed/wall/r_wall, +/area/engineering/atmos/pumproom) "xzf" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/event_spawn, @@ -66748,15 +66858,27 @@ /obj/machinery/door/firedoor, /turf/open/floor/plating, /area/security/checkpoint/customs) -"xzs" = ( -/obj/machinery/computer/atmos_control/ordnancemix, -/obj/effect/turf_decal/bot, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/siding{ - dir = 4 +"xzk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 }, /turf/open/floor/iron/white, -/area/science/mixing) +/area/medical/chemistry) +"xzp" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/storage) "xzt" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, /turf/closed/wall/r_wall, @@ -66765,20 +66887,15 @@ /obj/structure/cable, /turf/open/floor/wood, /area/command/heads_quarters/hos) -"xzF" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/white/line, -/obj/structure/disposalpipe/segment{ +"xzJ" = ( +/obj/structure/chair/office/light{ dir = 4 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/storage) +/turf/open/floor/iron/white, +/area/medical/pharmacy) "xzM" = ( /obj/structure/chair{ dir = 8 @@ -66819,14 +66936,9 @@ /turf/open/floor/plating, /area/maintenance/port/aft) "xAu" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/effect/turf_decal/tile/yellow/fourcorners, -/turf/open/floor/iron, -/area/hallway/primary/aft) +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/white, +/area/science/mixing/launch) "xAx" = ( /obj/effect/turf_decal/tile/purple{ dir = 1 @@ -66857,16 +66969,6 @@ /obj/machinery/newscaster/directional/south, /turf/open/floor/wood, /area/service/library) -"xBe" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "executionfireblast" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/red/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/security/execution/education) "xBn" = ( /obj/structure/plasticflaps, /obj/machinery/conveyor{ @@ -66893,6 +66995,23 @@ /obj/effect/spawner/random/maintenance/three, /turf/open/floor/plating, /area/maintenance/starboard/greater) +"xBv" = ( +/obj/structure/table, +/obj/item/stack/package_wrap{ + pixel_x = -9; + pixel_y = -9 + }, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/cargo/sorting) "xBB" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/iron/dark, @@ -66908,16 +67027,23 @@ }, /turf/open/floor/iron, /area/ai_monitored/command/storage/eva) -"xBK" = ( -/obj/structure/filingcabinet/security{ - pixel_x = 4 +"xBG" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/tile/red/half/contrasted{ +/obj/effect/turf_decal/caution/red, +/obj/machinery/reagentgrinder{ + pixel_x = -1; + pixel_y = 8 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple/half/contrasted{ dir = 8 }, -/turf/open/floor/iron/dark, -/area/security/brig) +/turf/open/floor/iron/white, +/area/science/cytology) "xBL" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -66954,12 +67080,35 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) +"xCo" = ( +/obj/structure/rack, +/obj/item/storage/box/flashes{ + pixel_x = 3 + }, +/obj/item/storage/box/teargas{ + pixel_x = 1; + pixel_y = -2 + }, +/obj/item/gun/grenadelauncher, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/ai_monitored/security/armory) "xCF" = ( /obj/structure/transit_tube/curved{ dir = 4 }, /turf/open/space, /area/space/nearstation) +"xCU" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/medical/virology) "xCY" = ( /obj/structure/window/reinforced{ dir = 4 @@ -66976,18 +67125,6 @@ /obj/effect/turf_decal/tile/blue, /turf/open/floor/iron/dark, /area/engineering/transit_tube) -"xDb" = ( -/obj/structure/sign/poster/official/cleanliness{ - pixel_x = -32 - }, -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/effect/turf_decal/tile/green/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/medical/virology) "xDk" = ( /obj/machinery/biogenerator, /turf/open/floor/plating, @@ -67004,24 +67141,6 @@ /obj/effect/landmark/start/depsec/science, /turf/open/floor/iron, /area/security/checkpoint/science) -"xDE" = ( -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/table/reinforced, -/obj/machinery/requests_console/directional/north{ - department = "Security"; - departmentType = 3; - name = "Security Requests Console" - }, -/obj/machinery/light/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Security Post - Medbay"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/red/fourcorners, -/turf/open/floor/iron/dark, -/area/security/checkpoint/medical) "xDK" = ( /obj/item/radio/intercom/directional/west, /obj/effect/turf_decal/tile/neutral{ @@ -67062,6 +67181,13 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) +"xEj" = ( +/obj/machinery/computer/security, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/command/bridge) "xEw" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -67084,10 +67210,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/service/hydroponics) -"xER" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engineering/atmos/pumproom) "xES" = ( /obj/machinery/light/directional/west, /obj/effect/turf_decal/tile/neutral{ @@ -67095,21 +67217,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/central) -"xFd" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/security/office) "xFh" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ @@ -67117,23 +67224,6 @@ }, /turf/open/floor/plating, /area/engineering/atmos) -"xFi" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/random/trash/garbage{ - spawn_scatter_radius = 1 - }, -/obj/structure/sign/poster/contraband/random/directional/east, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/lesser) -"xFl" = ( -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/medical/chemistry) "xFs" = ( /obj/effect/landmark/start/paramedic, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -67161,25 +67251,20 @@ }, /turf/open/floor/iron/white, /area/medical/cryo) -"xFL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/engineering/atmos) "xGd" = ( /obj/machinery/holopad, /obj/structure/cable, /turf/open/floor/iron, /area/hallway/secondary/command) -"xGk" = ( -/obj/effect/turf_decal/box, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 +"xGu" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/stasis{ + dir = 4 }, +/obj/machinery/defibrillator_mount/directional/north, +/obj/machinery/light/directional/north, /turf/open/floor/iron/white, -/area/science/mixing/launch) +/area/medical/treatment_center) "xGy" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -67213,18 +67298,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/science/lab) -"xHe" = ( -/obj/structure/rack, -/obj/item/storage/box/firingpins{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/firingpins, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/security/lockers) +"xHp" = ( +/obj/machinery/atmospherics/components/binary/thermomachine/freezer, +/turf/open/floor/iron, +/area/engineering/atmos/pumproom) "xHA" = ( /obj/structure/window/reinforced{ dir = 8 @@ -67254,10 +67331,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/engineering/atmos) -"xHV" = ( -/obj/machinery/air_sensor/atmos/ordnance_mixing_tank, -/turf/open/floor/engine, -/area/science/mixing/chamber) +"xHS" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/newscaster/directional/south, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted, +/turf/open/floor/iron/white, +/area/command/heads_quarters/cmo) "xIm" = ( /obj/item/radio/intercom/directional/west, /obj/machinery/piratepad/civilian, @@ -67267,21 +67346,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/central) -"xIC" = ( -/obj/machinery/firealarm/directional/north, -/obj/machinery/light/directional/north, -/obj/machinery/camera/directional/north{ - c_tag = "Chemistry North"; - network = list("ss13","medbay") - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/medical/chemistry) "xIE" = ( /obj/machinery/door/airlock/maintenance{ req_one_access_txt = "12;22;25;37;38;46" @@ -67302,6 +67366,14 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/lesser) +"xIX" = ( +/obj/machinery/status_display/evac/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/iron, +/area/science/mixing) "xJd" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -67338,12 +67410,6 @@ /obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/cargo/sorting) -"xJP" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/plasma_input{ - dir = 1 - }, -/turf/open/floor/engine/plasma, -/area/engineering/atmos) "xJT" = ( /obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ dir = 4 @@ -67354,19 +67420,6 @@ }, /turf/open/floor/iron, /area/maintenance/department/science/xenobiology) -"xKe" = ( -/obj/structure/table/wood, -/obj/item/lipstick{ - pixel_y = 5 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Theater - Stage" - }, -/obj/machinery/light/small/directional/east, -/obj/effect/spawner/random/entertainment/musical_instrument, -/obj/structure/sign/poster/random/directional/east, -/turf/open/floor/wood, -/area/service/theater) "xKj" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 4 @@ -67396,26 +67449,15 @@ /obj/machinery/status_display/evac/directional/west, /turf/open/floor/iron, /area/cargo/miningoffice) -"xLq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/firealarm/directional/north, -/obj/structure/disposalpipe/segment{ +"xLO" = ( +/obj/machinery/computer/secure_data{ dir = 4 }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 }, /turf/open/floor/iron, -/area/hallway/primary/starboard) -"xLy" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Staff Entrance"; - req_access_txt = "5" - }, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/medical/office) +/area/hallway/secondary/exit/departure_lounge) "xLW" = ( /obj/structure/window/reinforced{ dir = 8 @@ -67431,17 +67473,6 @@ icon_state = "platingdmg2" }, /area/maintenance/starboard/lesser) -"xMq" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/genetics) -"xMu" = ( -/obj/effect/turf_decal/tile/yellow/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/medical/pharmacy) "xMA" = ( /obj/item/toy/cattoy, /turf/open/floor/plating/airless, @@ -67492,25 +67523,36 @@ }, /turf/open/floor/iron/grimy, /area/tcommsat/computer) -"xNp" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/white/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/storage) "xNr" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/primary/starboard) +"xNu" = ( +/obj/structure/table/reinforced, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/eastright{ + dir = 8; + name = "Pharmacy Desk"; + req_access_txt = "5; 69" + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/pen, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "pharmacy_shutters_2"; + name = "Pharmacy shutters" + }, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/turf/open/floor/iron/white, +/area/medical/pharmacy) "xNz" = ( /obj/structure/chair/office/light{ dir = 8 @@ -67536,19 +67578,6 @@ }, /turf/open/floor/iron/white/smooth_large, /area/medical/chemistry) -"xNY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/robotics/lab) "xOg" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, @@ -67560,6 +67589,26 @@ }, /turf/open/floor/iron/dark, /area/engineering/supermatter/room) +"xOp" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/item/storage/belt/medical{ + pixel_y = 6 + }, +/obj/item/storage/belt/medical{ + pixel_y = 4 + }, +/obj/item/storage/belt/medical{ + pixel_y = 2 + }, +/obj/item/storage/belt/medical, +/turf/open/floor/iron/white/side{ + dir = 4 + }, +/area/medical/treatment_center) "xOr" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -67568,30 +67617,41 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/freezer, /area/commons/toilet/restrooms) -"xOP" = ( -/obj/structure/table, -/obj/item/paper/fluff/holodeck/disclaimer, -/obj/item/storage/medkit/regular{ - pixel_x = 3; - pixel_y = -3 +"xPf" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/medical/chemistry) +"xPi" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/folder/yellow{ + pixel_x = 4 + }, +/obj/machinery/requests_console/directional/west{ + department = "Engineering"; + departmentType = 3; + name = "Engineering Requests Console" + }, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 8 }, /turf/open/floor/iron, -/area/commons/fitness/recreation) -"xPs" = ( -/obj/machinery/flasher/portable, -/obj/machinery/light/small/directional/east, -/obj/item/radio/intercom/directional/east, -/obj/machinery/camera/directional/east{ - c_tag = "Security - Secure Gear Storage" +/area/engineering/break_room) +"xPv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 4 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/security/lockers) +/turf/open/floor/iron/white, +/area/medical/virology) "xPF" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -67611,43 +67671,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/starboard/lesser) -"xPY" = ( -/obj/structure/table, -/obj/item/hand_tele, -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/spawner/random/engineering/tracking_beacon, -/turf/open/floor/iron/dark, -/area/command/teleporter) -"xQb" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/service/hydroponics/garden) -"xQf" = ( -/obj/item/dice/d20, -/obj/item/dice, -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/storage/dice, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/light_construct/small/directional/south, -/obj/structure/sign/poster/contraband/random/directional/south, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"xQg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, +"xQw" = ( +/obj/structure/chair/office/light, +/obj/effect/landmark/start/chemist, +/obj/effect/turf_decal/tile/yellow/half/contrasted, /turf/open/floor/iron/white, -/area/medical/surgery/aft) +/area/medical/chemistry) "xQE" = ( /obj/structure/table, /obj/machinery/cell_charger, @@ -67668,38 +67697,12 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/ai) -"xQR" = ( -/obj/machinery/disposal/bin{ - desc = "A pneumatic waste disposal unit. This one leads into space!"; - name = "deathsposal unit" - }, -/obj/structure/sign/warning/deathsposal{ - pixel_y = -32 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green/half/contrasted, -/turf/open/floor/iron/white, -/area/medical/virology) "xQU" = ( /obj/structure/railing{ dir = 6 }, /turf/open/floor/plating/airless, /area/engineering/atmos) -"xQV" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/door/airlock/medical/glass{ - name = "Break Room"; - req_access_txt = "5" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/medical/break_room) "xRa" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/chapel{ @@ -67724,19 +67727,6 @@ }, /turf/open/floor/iron, /area/commons/dorms) -"xRA" = ( -/obj/item/kirbyplants{ - icon_state = "plant-11" - }, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron/white, -/area/medical/medbay/lobby) "xRU" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ @@ -67758,6 +67748,22 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/command/teleporter) +"xSz" = ( +/obj/structure/table, +/obj/item/folder/yellow, +/obj/item/storage/medkit/regular{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/structure/cable, +/obj/item/paper/pamphlet/gateway, +/turf/open/floor/iron{ + dir = 1 + }, +/area/command/gateway) "xSK" = ( /obj/structure/table, /obj/item/toy/plush/slimeplushie{ @@ -67765,28 +67771,40 @@ }, /turf/open/floor/plating, /area/maintenance/department/science/xenobiology) -"xSM" = ( -/obj/structure/table/reinforced, -/obj/machinery/firealarm/directional/east, +"xSL" = ( +/obj/structure/chair{ + dir = 1 + }, /obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 4 + dir = 8 }, /turf/open/floor/iron/white, -/area/medical/surgery/aft) +/area/medical/medbay/central) "xTd" = ( /obj/structure/closet/secure_closet/atmospherics, /turf/open/floor/iron/dark, /area/engineering/atmospherics_engine) +"xTe" = ( +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/machinery/door/airlock/research{ + name = "Research Division Access"; + req_access_txt = "47" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/unres, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "sci-entrance" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/science/research) "xTq" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/engineering/gravity_generator) -"xTs" = ( -/obj/machinery/vending/coffee, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/commons/fitness/recreation) "xTt" = ( /obj/effect/spawner/random/structure/crate_empty, /obj/effect/spawner/random/maintenance, @@ -67842,6 +67860,20 @@ }, /turf/open/floor/iron/white, /area/medical/virology) +"xUG" = ( +/obj/machinery/modular_computer/console/preset/engineering, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/command/bridge) +"xUJ" = ( +/obj/machinery/computer/secure_data, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/security/checkpoint/engineering) "xUV" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -67850,6 +67882,13 @@ /obj/structure/cable, /turf/open/floor/carpet, /area/command/heads_quarters/hos) +"xVh" = ( +/obj/machinery/computer/slot_machine{ + pixel_y = 2 + }, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/wood, +/area/commons/lounge) "xVk" = ( /obj/machinery/space_heater, /turf/open/floor/plating, @@ -67872,16 +67911,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, /turf/closed/wall/r_wall, /area/engineering/supermatter) -"xWg" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/newscaster/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/command/heads_quarters/ce) "xWt" = ( /obj/effect/landmark/start/captain, /obj/structure/chair/comfy/brown{ @@ -67924,6 +67953,12 @@ }, /turf/open/floor/iron/dark, /area/medical/morgue) +"xXU" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/mix_input{ + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) "xXW" = ( /obj/docking_port/stationary{ dheight = 1; @@ -67960,16 +67995,6 @@ /obj/effect/spawner/random/structure/crate, /turf/open/floor/plating, /area/maintenance/port) -"xYF" = ( -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/science/genetics) "xYS" = ( /obj/machinery/power/apc/auto_name/directional/south, /obj/effect/turf_decal/siding/wood{ @@ -67980,46 +68005,23 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, /area/security/office) +"xZf" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/medical/surgery/aft) "xZh" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 }, /turf/open/floor/wood, /area/command/heads_quarters/hos) -"xZn" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/sign/warning/securearea{ - pixel_x = -32; - pixel_y = -32 - }, -/turf/open/floor/iron, -/area/hallway/primary/starboard) "xZo" = ( /obj/effect/spawner/random/structure/grille, /turf/open/floor/plating, /area/maintenance/port/fore) -"xZp" = ( -/obj/item/radio/intercom/directional/south, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/blue/half/contrasted, -/turf/open/floor/iron/white, -/area/command/heads_quarters/cmo) "xZD" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 @@ -68063,15 +68065,16 @@ /obj/item/storage/lockbox/medal, /turf/open/floor/wood, /area/command/heads_quarters/captain/private) -"yaf" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Secure Tech Storage" +"yau" = ( +/obj/structure/cable, +/obj/machinery/computer/secure_data{ + dir = 1 }, -/obj/item/radio/intercom/directional/east, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/engineering/storage/tech) +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/security/office) "yav" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -68138,16 +68141,13 @@ /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/solars/port/fore) -"ycp" = ( -/obj/machinery/light/small/directional/west, -/obj/item/clothing/mask/animal/horsehead, -/obj/structure/table/wood, -/obj/machinery/airalarm/directional/south, -/obj/item/clothing/mask/cigarette/pipe, -/obj/item/clothing/mask/fakemoustache, -/obj/structure/sign/poster/contraband/random/directional/west, -/turf/open/floor/wood, -/area/service/theater) +"ybT" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/science/storage) "ycy" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -68165,6 +68165,12 @@ }, /turf/open/floor/iron/white, /area/medical/medbay/lobby) +"ycT" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/command/heads_quarters/cmo) "ycU" = ( /turf/open/floor/plating{ icon_state = "platingdmg3" @@ -68187,14 +68193,6 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"ydp" = ( -/obj/structure/rack, -/obj/item/electronics/apc, -/obj/item/electronics/airlock, -/obj/effect/spawner/random/maintenance, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron, -/area/commons/storage/tools) "ydu" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -68204,17 +68202,6 @@ /obj/effect/spawner/random/entertainment/gambling, /turf/open/floor/wood, /area/commons/lounge) -"ydH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/medical/medbay/central) "ydL" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -68222,21 +68209,6 @@ icon_state = "panelscorched" }, /area/maintenance/starboard/fore) -"ydW" = ( -/obj/structure/table/glass, -/obj/item/radio/intercom/directional/west, -/obj/structure/microscope, -/obj/machinery/camera/directional/west{ - c_tag = "Xenobiology Lab - Fore"; - network = list("ss13","rd","xeno") - }, -/obj/machinery/light/directional/west, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/science/cytology) "yed" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/bot, @@ -68245,25 +68217,6 @@ }, /turf/open/floor/wood, /area/service/theater) -"yee" = ( -/obj/structure/table, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = -4; - pixel_y = 12 - }, -/obj/item/reagent_containers/glass/bottle/multiver{ - pixel_x = 7; - pixel_y = 12 - }, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, -/turf/open/floor/iron/white, -/area/medical/chemistry) "yef" = ( /obj/structure/lattice/catwalk, /turf/open/space/basic, @@ -68284,30 +68237,14 @@ /obj/structure/cable, /turf/open/floor/iron/white, /area/security/prison) -"yew" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Virology Airlock"; - network = list("ss13","medbay") - }, -/obj/structure/closet/l3closet, -/obj/effect/turf_decal/tile/green/anticorner/contrasted, -/turf/open/floor/iron/white, -/area/medical/virology) "yex" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/grimy, /area/tcommsat/computer) -"yez" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, +"yeD" = ( +/obj/effect/turf_decal/tile/green/fourcorners, /turf/open/floor/iron, -/area/engineering/break_room) +/area/hallway/primary/central) "yeN" = ( /obj/structure/cable, /turf/open/floor/iron, @@ -68342,11 +68279,30 @@ /obj/structure/cable, /turf/open/floor/iron/white, /area/security/prison) +"yfh" = ( +/obj/machinery/medical_kiosk, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/turf_decal/siding/white, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/side{ + dir = 1 + }, +/area/medical/treatment_center) "yfv" = ( /obj/structure/table, /obj/effect/spawner/random/decoration/ornament, /turf/open/floor/iron, /area/maintenance/port/aft) +"yfy" = ( +/obj/machinery/duct, +/obj/machinery/door/airlock/medical{ + name = "Primary Surgical Theatre"; + req_access_txt = "45" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/iron/white, +/area/medical/treatment_center) "yfG" = ( /obj/machinery/computer/arcade/orion_trail{ desc = "For gamers only. Casuals need not apply."; @@ -68430,21 +68386,6 @@ /obj/effect/turf_decal/tile/bar, /turf/open/floor/iron, /area/construction/storage_wing) -"yhk" = ( -/obj/machinery/modular_computer/console/preset/id{ - dir = 4 - }, -/obj/machinery/requests_console/directional/west{ - announcementConsole = 1; - department = "Chief Medical Officer's Desk"; - departmentType = 5; - name = "Chief Medical Officer's Requests Console" - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/command/heads_quarters/cmo) "yhl" = ( /obj/item/tank/internals/oxygen, /obj/item/tank/internals/oxygen, @@ -68467,16 +68408,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/secondary/entry) -"yhr" = ( -/obj/structure/closet{ - name = "Evidence Closet 3" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/security/brig) "yhC" = ( /obj/machinery/power/port_gen/pacman, /obj/effect/turf_decal/bot{ @@ -68487,12 +68418,6 @@ dir = 1 }, /area/engineering/main) -"yhF" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/mix_input{ - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) "yhS" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -68501,16 +68426,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/fore) -"yhY" = ( -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 4 - }, -/obj/machinery/light/directional/north, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/white, -/area/science/mixing/launch) "yib" = ( /obj/structure/lattice/catwalk, /obj/structure/marker_beacon/burgundy, @@ -68532,26 +68447,6 @@ /obj/effect/spawner/random/techstorage/tcomms_all, /turf/open/floor/iron/dark, /area/engineering/storage/tech) -"yih" = ( -/obj/structure/table/wood, -/obj/item/food/grown/poppy{ - pixel_y = 2 - }, -/obj/item/food/grown/poppy{ - pixel_y = 2 - }, -/obj/item/food/grown/poppy{ - pixel_y = 2 - }, -/obj/item/food/grown/poppy{ - pixel_y = 2 - }, -/obj/item/food/grown/poppy{ - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/service/chapel) "yii" = ( /obj/effect/turf_decal/stripes/line{ dir = 5 @@ -68595,6 +68490,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, /turf/open/floor/iron/dark, /area/medical/cryo) +"yiX" = ( +/obj/structure/chair{ + dir = 8; + name = "Defense" + }, +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/security/courtroom) "yjk" = ( /turf/open/floor/plating/airless{ icon_state = "platingdmg1" @@ -68610,10 +68515,6 @@ /obj/machinery/light_switch/directional/north, /turf/open/floor/iron/white, /area/science/misc_lab) -"yjF" = ( -/obj/structure/statue/snow/snowman, -/turf/open/floor/fake_snow, -/area/maintenance/port/aft) "yjH" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -68622,6 +68523,24 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/maintenance/port/aft) +"yjJ" = ( +/obj/machinery/disposal/bin{ + desc = "A pneumatic waste disposal unit. This one leads to the morgue."; + name = "corpse disposal" + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/structure/sign/warning/bodysposal{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/medical/surgery/aft) "yjL" = ( /obj/machinery/firealarm/directional/north, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -68672,17 +68591,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/cargo/storage) -"ykj" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/service/hydroponics/garden) "ykr" = ( /obj/effect/turf_decal/trimline/blue/filled/warning{ dir = 8 @@ -68711,6 +68619,22 @@ /obj/structure/sign/warning/electricshock, /turf/open/floor/engine, /area/science/cytology) +"ykY" = ( +/obj/structure/table, +/obj/item/stack/package_wrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/package_wrap{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown/half/contrasted, +/turf/open/floor/iron, +/area/cargo/sorting) "yln" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -68748,12 +68672,34 @@ dir = 1 }, /area/engineering/main) +"yly" = ( +/obj/machinery/computer/crew, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/command/bridge) "ylA" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/medical/medbay/lobby) +"ylC" = ( +/obj/structure/tank_dispenser/oxygen, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/security/brig) +"ylE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/command/heads_quarters/cmo) "ylH" = ( /obj/structure/chair{ dir = 4 @@ -68772,6 +68718,18 @@ /obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden, /turf/open/floor/iron, /area/hallway/primary/starboard) +"yma" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Auxilliary Surgery"; + req_access_txt = "45" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/medical/surgery/aft) "ymb" = ( /obj/structure/cable, /obj/effect/turf_decal/siding/purple{ @@ -68780,6 +68738,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/science/research) +"ymf" = ( +/obj/structure/sign/warning/radiation/rad_area{ + pixel_y = 32 + }, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/engineering/gravity_generator) (1,1,1) = {" aaa @@ -79682,8 +79648,8 @@ aDa aDa aDa cWK -jUh -iNr +knP +dCx aDb hnm aWU @@ -79939,8 +79905,8 @@ aDa aDa aDa cWK -ibe -swI +kFg +eVm cYL rkZ wdq @@ -80196,8 +80162,8 @@ aDa aDa aDa cWK -ibe -swI +kFg +eVm cYL rkZ bvF @@ -80453,8 +80419,8 @@ aDa aDa aDa cWK -xpX -iyV +jmc +hkJ aDb jUt bvF @@ -80710,10 +80676,10 @@ aDa aDa lGS cWM -xrh -cIN -hCH -xlP +ilJ +tra +uqi +ozN ggW aYE bac @@ -80967,8 +80933,8 @@ aDa aDa aDa cWK -mSO -fky +oSc +oQc aDb mVx aWU @@ -81224,8 +81190,8 @@ aDa aDa aDa cWK -cNJ -oro +oYM +paf aDb mcg aWU @@ -81481,8 +81447,8 @@ aDa aDa aDa cWK -cAx -jzD +ttX +ueB aDb mcg aWU @@ -81738,8 +81704,8 @@ aDa aDa aDa cWK -lMc -mxu +wYc +dhb aDb xyu wdq @@ -82019,7 +81985,7 @@ nRJ vUg bCH tgB -fjI +ihP bJt bJo hfm @@ -82036,7 +82002,7 @@ dux ppz cpQ ayD -fas +iRE nzL lBi ckN @@ -82286,14 +82252,14 @@ onC bbL bPL alK -qFU +gyN kIh tWo dux pmu wOn wOn -tnc +dVD wOn ckP ckP @@ -82501,7 +82467,7 @@ aip dne dst nbO -qiU +nwN aRG aRG lZy @@ -82512,7 +82478,7 @@ xZo aRG aSP dne -soL +und cZt iLA bJo @@ -82826,11 +82792,11 @@ lMJ aaa aaa cBR -fhX -rCo -vnu -fEK -hHP +vIi +sSQ +bhm +lhE +bTf cBR ulb maC @@ -83031,9 +82997,9 @@ aaa hRx jrx hRx -qof -wco -bqe +dhg +qIk +tfQ bbK jpN ong @@ -83061,7 +83027,7 @@ alK alK alK dux -byu +sty ckP bmE ndr @@ -83083,11 +83049,11 @@ lMJ aaa aaa cBR -rzL +xCU xfr wuc tEH -gWD +abf cBR ifA nPQ @@ -83288,9 +83254,9 @@ aaa hRx brn hRx -eTQ +kWa beM -pUJ +tqR biy afs blW @@ -83340,11 +83306,11 @@ dux lMJ lMJ cBR -lhY +vkP xfr hkA dYW -lkM +cjs cBR dBN lfA @@ -83545,9 +83511,9 @@ aaa hRx nHP hRx -maN +cnm beM -vlF +mpV xzi owS blX @@ -83586,7 +83552,7 @@ ckP ckP ckP ckP -xQf +mPb dux dux dux @@ -83597,18 +83563,18 @@ ckN aaa aaa cBR -bnw +dgV hLg oij dYW -xQR +ggk cBR -bgK -xyh -qEQ -xyh -rCo -bVv +oRH +fdW +jky +fdW +sSQ +qYZ dBN aaa aaa @@ -83802,9 +83768,9 @@ aaa vLz brn hRx -omB +efc ges -gEG +ddw ctd qTx blY @@ -83816,26 +83782,26 @@ rJv rJv bnM tbC -eKr +lty ikK uyH xMN azm kPq dSM -bbf +jQL alK auF rDS alK rLW -jwg +tWu bXx dux nZb pVg ckP -aoW +fsW ckP kuZ slk @@ -83854,18 +83820,18 @@ dux dux aaa cBR -qsO +uxX xUD hhQ hhQ -cWy -pJv -pXc +rsW +uno +wwM naF wxS tlA iew -arD +aJp dbn suP aaa @@ -84059,9 +84025,9 @@ aaa vLz cac hRx -iHF +mOX beP -cVH +khh beK owS blZ @@ -84090,7 +84056,7 @@ alK alK dux jlw -uQL +jve bmy dux uYL @@ -84099,7 +84065,7 @@ dux qyH vHP dux -mDT +dEH dux acS dux @@ -84111,18 +84077,18 @@ tYs dux aaa cBR -cpp -iUc -jxb -mNs -kSQ +cet +dUE +gSZ +hIe +wHN hkv -tJe -ivS -lVH -kGP -dsK -vOh +vow +kTh +xPv +swt +oES +xii dBN lMJ lMJ @@ -84316,9 +84282,9 @@ aaa vLz brn hRx -tvY -jXH -gEU +hnt +saT +gTb bbK vHg bma @@ -84577,7 +84543,7 @@ hRx yfJ hRx hRx -mhq +qnY blV kqz rJv @@ -84605,9 +84571,9 @@ hrs erp hFw sJS -csd +cKH erp -dlu +dYM erp dux cCk @@ -84829,7 +84795,7 @@ aaa aaa hRx xxh -rui +pLk nHP bfS cuN @@ -84877,7 +84843,7 @@ bXE kMi dux dux -dRS +goS muD dux aaa @@ -85579,11 +85545,11 @@ dne dne dne dne -cKR +ndW xVs umr xKP -rNd +htC tuP kUu kUu @@ -85598,9 +85564,9 @@ kUu kUu sjd kvc -xlo -rOx -wYw +kaE +vil +wnp ozo hfd qWn @@ -85625,7 +85591,7 @@ jhV aGN aqK alK -jES +aGF dux ydn wmt @@ -85651,11 +85617,11 @@ mqo duH muD dux -yjF +eBH cBR -xDb -gBW -xxL +evc +fIy +jDH cBR aaa aaa @@ -85836,11 +85802,11 @@ mTh dne awP dne -pPe +mcY jfp kpF xVs -aKI +aDW tuP lJI oUK @@ -85867,10 +85833,10 @@ lDf qxd tqH lCP -bua +apj mwd ecL -kBk +mIq plV pVa mwd @@ -85908,11 +85874,11 @@ mqo duH muD dux -hZf +mAY cBR -uSf +ihT qOJ -tQn +gQW cBR aaa aaa @@ -86093,7 +86059,7 @@ bQI dne dne dne -kjy +pxS xVs kpF fbA @@ -86124,7 +86090,7 @@ lDf qxd sQf lCP -buc +wNU mwd xhp fbY @@ -86132,7 +86098,7 @@ bLT vYq bLT ohu -azE +jqN alK bLe rLW @@ -86165,11 +86131,11 @@ mqo jqA muD dux -nYU +eQQ cBR -idr -nEF -yew +uNH +cAy +iFu cBR aaa aaa @@ -86349,8 +86315,8 @@ doJ vpa fVm dne -eNt -cig +nIJ +dOu jgL aQw jgL @@ -86381,9 +86347,9 @@ mtV qxd sQf lCP -buc +wNU mwd -sRU +qxC mwd dIN mwd @@ -86600,7 +86566,7 @@ alA amQ anY dne -clz +eRi rQt qiQ fRJ @@ -86863,11 +86829,11 @@ att dne dne dne -sOR +iiD jgL xVs jfp -bEK +tBk aJK aJK aJG @@ -86883,7 +86849,7 @@ wfw kKA tzM lYv -rfu +qRS mfY qUM qUM @@ -87120,14 +87086,14 @@ att dne ohQ dne -klS +fDi sje -ttP -ltd +dmL +dpG pBD aJK -jRK -wcf +rmY +kZE aJG aJG lqP @@ -87140,7 +87106,7 @@ oWC sAB tzM lYv -awM +bra mfY xBW oRu @@ -87178,15 +87144,15 @@ cbx cdh bUV dux -jWr +skZ dux -pyg -fLE -vXk -ppw -iSB -fLE -pyg +xyv +kgL +dVY +nbX +pao +kgL +xyv dux eKh frp @@ -87385,7 +87351,7 @@ dne dne cdl mVT -jxG +wyI aJG mqi tzM @@ -87437,13 +87403,13 @@ ipl dux yjH dux -sUg +xhZ mIF nYV bap nYV sCT -pTp +oMX dux eKh frp @@ -87640,9 +87606,9 @@ tca xZo hPP dne -egv +ojc iXp -gzy +aSa aJK qEg kSr @@ -87694,13 +87660,13 @@ bYJ dux jLU dux -qMH +uWh fsq kxB aAu kxB uMv -iQZ +aYA dux bXE frp @@ -87712,10 +87678,10 @@ sjt xfb asc uPR -wAi -eqY -xQg -lMQ +yma +wIU +mNc +yjJ xpZ fSH cDJ @@ -87897,17 +87863,17 @@ aRG xZo xZo dne -szS +rLq upY mUO fjt rCt tzM qUI -jiE -fov -aHU -klA +dsi +aqU +opi +kIP lmx kSr ufi @@ -87951,13 +87917,13 @@ dux dux hGT ifv -fui +rOQ jCA hBd gTa hzw cFj -twq +cQH dux vyN frp @@ -87970,9 +87936,9 @@ uuR cdy hdA cID -xyW +sOW fwN -ilU +iiC xpZ cEE iHk @@ -88152,7 +88118,7 @@ sBp sBp sBp wKi -bNp +nMs dne dne dne @@ -88174,7 +88140,7 @@ kMR afh wbs seU -wmn +qZc iFZ iFZ dlA @@ -88208,13 +88174,13 @@ dux xxb nLc dux -puD -sID +opx +xjm cZc bpT pdp -uGz -uXX +fkJ +rRs dux bXE nXg @@ -88227,9 +88193,9 @@ hyt cvr wEy nHm -xyW +sOW rZd -sSW +lrY xpZ qTp iHk @@ -88467,9 +88433,9 @@ dux dux mRw oAB -wSB -dqb -nBv +rdr +niE +yfy oAB mRw dux @@ -88484,11 +88450,11 @@ kUW cvr wEy cID -iPQ +xZf qJt -eev +vzU xpZ -tmY +mIb fPJ hjG jAq @@ -88683,7 +88649,7 @@ aUj rVK baW iFZ -vaM +wHP kdo mLb oOd @@ -88721,15 +88687,15 @@ dme dZY bCy dux -ika -wxO +wWK +wFR nIN eFQ mYT dkG sNA -vOq -sGY +aMt +muK bXK bwf iCa @@ -88741,9 +88707,9 @@ qVA aiV roT cID -xSM -cYa -lUb +mRS +dVu +nyC xpZ ktj dPu @@ -88940,10 +88906,10 @@ aUk uwx aXq tlT -xjO +iwX eGZ -ozG -vwh +bdm +cOI pmN tiE rTD @@ -88978,7 +88944,7 @@ uWR dux mVW dux -wte +xGu nCO gIf vjp @@ -88986,7 +88952,7 @@ vTJ nUM hNP fBL -bkH +uxv bXK vTp cto @@ -89199,8 +89165,8 @@ aXq ajF fzn eGZ -eJk -vGS +hYi +ykY vBb gNY nGB @@ -89226,16 +89192,16 @@ oNC dPk dPk alK -rkR +cuF qQS alK -rgk -vfs +sUb +dRa gaP tqf aiX mRw -nnW +kWz wjS rKP xKj @@ -89243,7 +89209,7 @@ xKj pKY dor llx -rUx +eoE dEs oII eYN @@ -89279,7 +89245,7 @@ xlV vad myp ykQ -rcx +cEw xlV aaa aaa @@ -89433,10 +89399,10 @@ uDR dne aaa rlU -rQP -wMv -vyB -jXR +dfl +lmF +vVM +nYl rlU aaa dne @@ -89456,8 +89422,8 @@ uvH jrv mLC mLC -rPs -iJp +xBv +nzi vBb afG hqo @@ -89495,23 +89461,23 @@ iRL nIN pGd llx -hPk -vox -jsQ +pAE +haB +jan wjS kjG axz -idh +oug mVF xmm aoT vet igG -ukM +rLc xfb asc pjU -xQV +eJE mTG tVy lQj @@ -89534,9 +89500,9 @@ iRA iRA icu myp -wUF +kjY dYv -nxG +rJC iFJ aaa aaa @@ -89686,7 +89652,7 @@ log xZo agi dne -tWD +sIu anb aaa rlU @@ -89711,12 +89677,12 @@ rVn fhB jdn vKw -caj +hel eGZ -srf -qaS +pcU +lgI vBb -iFL +ujL iFZ iFZ sHv @@ -89748,13 +89714,13 @@ hIT qxJ hZj fFM -xby +sOo mmM mbm rqL -lHM +yfh wEj -sav +kOW wjS hze ncc @@ -89791,9 +89757,9 @@ pOz iRA eVO dYv -kGZ +iDZ dYv -vNh +sEy iFJ aaa aaa @@ -89948,12 +89914,12 @@ anb aaa rlU trx -oOZ +uWn uDw -fCW -nzX -cVQ -hLN +ddr +urZ +vLr +qyo aTU jSm mVk @@ -89968,13 +89934,13 @@ rVn uwx mgJ vKw -jVW +eAJ iOc pHL eGZ vBb oBT -cmh +hHy vKw nNu shk @@ -90009,19 +89975,19 @@ iRL wUJ yiv llx -lvG -pqY -uYZ +xad +xOp +lya wjS rKP dPO -ukM +rLc hhb fNu niL cjD mRX -vYe +iKW xfb ycy wEy @@ -90050,7 +90016,7 @@ nmY gfx dJw dYv -mpt +xuO iFJ aaa aaa @@ -90257,13 +90223,13 @@ auF dcr aqO alK -vSw -vjF +bHV +fRb jwA vXL jJq mRw -pBM +biQ oxQ hks pzK @@ -90271,7 +90237,7 @@ pzK crX pGd llx -rUx +eoE dEs veC brF @@ -90307,7 +90273,7 @@ xlV jQA xlV qWQ -sYc +kas xlV aaa aaa @@ -90461,10 +90427,10 @@ dSY anb aaa rlU -rcX -xjT -xjq -hTY +vis +mCi +ixT +dOo rlU aaa aEH @@ -90484,11 +90450,11 @@ vpX xIm etB iFZ -omk -bwg +lrI +nUa vBb -pDv -iGa +wrv +hef vKw dCD sQf @@ -90516,11 +90482,11 @@ alK alK gfu ifK -uxy +pni ifK gfu mRw -fvg +iHE duA uNh vsw @@ -90528,13 +90494,13 @@ vsw nUM eHE mAI -bkH +uxv bXK -jTL +lEY cvp hsE vTz -ici +pUP bXK xRu cvr @@ -90761,14 +90727,14 @@ uKQ eMW buf cVh -aVW +puA eMW eMW eMW eMW ojh bUY -elB +pFP gfu bYR pwf @@ -90777,21 +90743,21 @@ rAm ljV doQ mRw -sGY -sGY +muK +muK aNq fem xzZ eMx uFV -sGY -sGY +muK +muK bXK -uLD +caq nIa cwq cxg -jPV +lmS bXK dLT cAW @@ -91037,9 +91003,9 @@ mRw mRw mRw iRL -gQt +gOC iRL -sml +wFg iRL mRw mRw @@ -91061,7 +91027,7 @@ seP tay mjT mjT -bjS +jat mjT gZp gZp @@ -91540,14 +91506,14 @@ bHX bTF aWf rBX -jNE +bhW ifK pAP mNk iuj iuj dxa -ule +nuZ jQH cCO onZ @@ -91583,7 +91549,7 @@ oiE atB hvQ gZp -sNW +jnX uXo qkk fPu @@ -91717,12 +91683,12 @@ kHF epU ncN rfU -aFz -nLh +oAC +aBw etM -anf +vWm eII -wqm +iPm acv soe adc @@ -91757,7 +91723,7 @@ eff xkd qdX hDR -nbC +mMg cvc vDJ bef @@ -91797,8 +91763,8 @@ tOh bTG dCE vKT -pxd -xLy +uHL +hNZ pAP dZM pIo @@ -91840,7 +91806,7 @@ csR ttj wJS gZp -axD +dgP twa cmS eFl @@ -91849,7 +91815,7 @@ xkE ayK kQw ohh -hMW +tiR roI aaa aaa @@ -91974,12 +91940,12 @@ kHF oMC jsY dNL -xBe -lIA +tqP +gcP cYU -ddO +kbB eJI -xsB +guj acv acI add @@ -92043,18 +92009,18 @@ bBz var bEG tOh -kJC -stp -uUR -axA -myG -stp -stp +lTM +dYb +psv +tLo +cCN +dYb +dYb tOh cED aWf vKT -ulk +dju ifK lbR iCG @@ -92067,7 +92033,7 @@ cjN clm mJw mJw -kcj +lFl oEG oEG mJw @@ -92081,7 +92047,7 @@ nBI nBI rAF tsL -jFE +jnk aTY rAF rAF @@ -92097,7 +92063,7 @@ gZp gZp wJS gZp -yih +mNm twa qis gWb @@ -92106,7 +92072,7 @@ gWb hie kQw rAV -hMW +tiR roI aaa aaa @@ -92231,12 +92197,12 @@ kHF tiy xqR aaC -qsN -rtO +ubj +oHd kWq -eib +ugI abG -ait +lPk acv gge lDT @@ -92314,34 +92280,34 @@ kUD bXL bXL bXL -nnI +rrV bXL bXL bXL tay -pVo -svL +rTW +bCF cln mJw -aAt -vqM -qcH -pnq -yhk -ogF +sEP +ylE +mtB +rJt +atR +bdu rAF -xFl -iOM -iOM -iOM -iOM -iOM -spp -iOM -tOl -qbT -uAY -tPD +jjf +wFO +wFO +wFO +wFO +wFO +crU +wFO +xzk +gnB +hhO +nZl nBI hox uXT @@ -92354,7 +92320,7 @@ cJt gZp aRk mnH -gTo +sdP coS kXp uXC @@ -92363,7 +92329,7 @@ uXC uXC lUv xrk -lIB +anw roI aaa aaa @@ -92489,9 +92455,9 @@ acv acv acv acv -erq +teP abc -uiy +eCe acv acv acv @@ -92501,15 +92467,15 @@ ykb tOL alR ajm -afN -gFy +xgW +jRA ajm air scn akt aOy hwA -uSQ +oQU hGE hWo aOy @@ -92569,25 +92535,25 @@ mIU aWf puh bXL -woV +mew mKp pIq -pJY -iaY +wkg +qbj bXL -vKY -ydH -oei -szZ +wPN +mjo +sMF +xSL oEG -pFH +mbW uir xaT msZ cuX -xZp +dXc rAF -vuH +xPf cmB cmB cmB @@ -92598,12 +92564,12 @@ cmB bcX svh nQm -dAI -gss +xQw +fKw oqv xFs tpq -vOA +efk ePn hEd pzV @@ -92611,7 +92577,7 @@ fRx weW rkT gZp -cFQ +rgc vBI kKn eFl @@ -92620,7 +92586,7 @@ eFl oho kQw rAV -hMW +tiR roI aaa aaa @@ -92743,12 +92709,12 @@ lMJ lMJ lMJ aax -qNC -rgR +nih +rAT acv -dnx +swl fsi -hfP +uXP acv mqn iGI @@ -92758,8 +92724,8 @@ adx adh sdF ajm -afO -lIC +ylC +kmR ahx vsS aiq @@ -92792,7 +92758,7 @@ aaa aaf aaa aUv -aVU +nkW ppH aWf rxX @@ -92826,25 +92792,25 @@ mIU aWf puh bXL -xDE +kMY dJY wHO lPh vWs vZA -dkm +vnr nht wgD -lxi +sFC oEG -jVD +vwU bce fKz ibo nNi -kQI +xHS rAF -pMI +gLh cmB kDW iGH @@ -92855,7 +92821,7 @@ iGH bcX cmB cmB -sWT +kNU nBI hox jVR @@ -92868,7 +92834,7 @@ fej gZp wJS gZp -fZo +ilG vBI kKn gWb @@ -92877,7 +92843,7 @@ gWb rcl kQw ohh -hMW +tiR roI aaa aaa @@ -93000,12 +92966,12 @@ aaa aaa aaa aax -kzX -nIH +uLA +mXI acv acv acv -lDd +xmX abJ iJe whg @@ -93015,8 +92981,8 @@ hUJ adh sdF ahx -ccX -gFy +qhK +jRA ahx nuJ dPa @@ -93049,7 +93015,7 @@ aJS aJS aaa aUw -aVV +uUA nPg aWf fwY @@ -93071,37 +93037,37 @@ bBz var sEb tOh -hfe -dNS -unk +euj +rnX +aNK yfL -ipW -stp -jOr +cwz +dYb +gqA tOh vlV aWf puh bXL -kWw +gHP qFa tlD nNP ceB pev -snH +bEF xRu cvr -nMd +gIb oEG -vgT -mSr -fVV -mHG -ubg +aME +eKM +jFu +ycT +tqi rAF rAF -pMI +gLh cmB cmB cmB @@ -93112,7 +93078,7 @@ cmB bcX cmB eIP -yee +dPm rAF kny eJA @@ -93125,7 +93091,7 @@ gZp gZp qnv gZp -qOc +fRp vBI kKn yaW @@ -93257,9 +93223,9 @@ aaa aaa aaa aax -wvs -aTt -hxg +wCw +jXj +tjW qqN lsj sdF @@ -93282,7 +93248,7 @@ uwG mJW fiH kBH -joq +sUD uwG aws awV @@ -93306,7 +93272,7 @@ dvk aJS aaa aUv -aVW +puA ppH heJ kzr @@ -93346,29 +93312,29 @@ sqr sqr sqr bXL -xhx +dlZ xRu cdy -rpY +utU mJw nLu wfY -kAS +lQh uTH rIM rAF -vuk +mVm hUr cmB cmB cmB cmB cRb -ccU +fJw rJU bcX cmB -uMZ +fDw kmq kmq cCe @@ -93525,13 +93491,13 @@ aep aep aep aep -tZO +kSC adh sdF xxX afR -bbn -vjE +bOo +nIF axj iZq pvq @@ -93545,7 +93511,7 @@ aws auU ukl ukl -eiJ +qtU tsX aAY aCk @@ -93585,13 +93551,13 @@ bBC iAl bEG hzu -xPY -ehQ +bQy +ozk hXy gSm kuc -uIU -igu +owV +wkD hzu cED aWf @@ -93599,14 +93565,14 @@ iJw ndO aNs pMU -mcy -dqF -ozc -ePN -rUT +wXM +tAR +kJd +tWF +iqY asc cvr -tGA +gpJ mJw mJw mJw @@ -93614,18 +93580,18 @@ gnD mJw mJw rAF -hhM +rhP cmB mRT cxr -xsW +cwJ gol -ofr -ofr -roi +lsv +lsv +xde bcX cmB -uMZ +fDw kmq bNy euP @@ -93778,16 +93744,16 @@ aax hOB hUJ hGA -svB -gGc -vKf -hKA -aqg +cBo +rNn +uvf +qwP +qcF aaw sdF aiq rpQ -bbn +bOo aiq awp awp @@ -93819,7 +93785,7 @@ aPv mph eQg aJS -urH +ktt aUx frL aWf @@ -93842,7 +93808,7 @@ bzR var dDa hzu -kmu +nIQ pyr ecm gVP @@ -93858,12 +93824,12 @@ owx gXE ylA xuN -pfm -fyE -hkZ -kwD +ktm +tQY +npv +sEQ tGB -hpi +nXC iyk kgH ggh @@ -93871,18 +93837,18 @@ qpH rOr gmR rAF -ixL +ofp cmB -uMZ +fDw cmB cmB cmB -ofr -ofr -roi +lsv +lsv +xde bcX cmB -njP +oSa kmq smE obA @@ -93892,10 +93858,10 @@ gcg oZy gRO gZp -cJy +lRn pkO iKr -sZO +mQS cMS hpI cMg @@ -94044,8 +94010,8 @@ hUJ hUJ deL iHB -oSi -ehF +nmo +tPm hsb qje cmJ @@ -94076,8 +94042,8 @@ aPw ome ome wpJ -mXs -dtj +iUf +rPh gic hbp kjJ @@ -94099,7 +94065,7 @@ bBD vrZ qWo odI -iSH +gHw yaX gaa xSi @@ -94115,12 +94081,12 @@ mzW nJm wFZ eXL -uil +gnf cfV uGS -qpe +tkY cfY -iBQ +noY uGS uGS uGS @@ -94128,18 +94094,18 @@ uGS uGS vtR rAF -xIC +mFG cmB ekW cyd -iOM +wFO fme -ofr -ofr -roi +lsv +lsv +xde bcX cmB -jIB +kgu kmq jlG tYD @@ -94149,7 +94115,7 @@ xXL gZp qQK gZp -cJz +boG cKw fdK cLm @@ -94306,17 +94272,17 @@ ajm ahx ahx ahx -vYU +nmk ahx -oqT -sie -ibl -fst -vKc +boK +cgA +ktB +oxB +hDN auW keY ukl -wPU +kWl iwH cTY aCk @@ -94333,7 +94299,7 @@ aPv hoN aRV aJS -ujF +oGN aUx eNY aWf @@ -94343,26 +94309,26 @@ aaf aaf aaf prN -tbI -wAw -gsD -lHR -tIS +iUG +wUr +dVE +rnT +ufR sDL sDL saq rSD -rpc +iUk vrZ aVO qwJ -mza -mgx -fKI -hYh -biY -lYH -igu +gCX +wiu +msQ +kps +jDl +gzI +wkD hzu ngl dCE @@ -94370,33 +94336,33 @@ aYm woT fwk ycL -njy -fvI -ieT +naA +eUP +qnk cfW mVs -pUk -sFO -aWM -bzG -xrr +hqg +qGX +iZK +pFR +lKI coT xvY uGS vxX rAF -hOH +nzJ cmB cmB cmB cmB cmB nvq -sYz +piR uYE bcX cmB -uEA +fib kmq jXC jXC @@ -94404,9 +94370,9 @@ siG kzp gUH gZp -bPT +bxZ gZp -lEu +eMs cAo rqV nDV @@ -94560,16 +94526,16 @@ ajm aaa aaa ajm -yhr -qLJ -ngu +kSd +qmc +sjL csl aeq aeq anl aeq -lVs -jJe +xvj +wka aiq pHN qpl @@ -94600,16 +94566,16 @@ aaf prN prN ium -jBq +xUG rrU ryP -gxL -hSF +mML +bot bnW xNK aoG dMM -wWI +jrB vrZ bKf hzu @@ -94627,22 +94593,22 @@ imr bXN maQ xto -grt -qUh -wWp +amv +blA +tMg cfX -tOz +aYi eHx wmE wmE wmE kUt -oHH -onL +iOe +wnE jFe daV vtq -iiy +vse cmB cmB cmB @@ -94653,7 +94619,7 @@ cmB cmB bcX xNX -uMZ +fDw kmq qif wFB @@ -94817,14 +94783,14 @@ aaa aaa aaa ajm -poL -dBZ -wkC +fGA +tFA +bEv fpX anl -egB +uwg apJ -arb +lDe ujk tky tky @@ -94848,19 +94814,19 @@ ikn aJS aaa aUv -ulC +cIb ppH nWn kjJ bci aaf prN -pDo -nSW -kCZ +trP +uZU +ncw jpn cph -pOv +qSW hlh hlh hlh @@ -94883,13 +94849,13 @@ aWf imr bXN mzW -qXC +jOn qLg gcI -xRA +jTu cfY -kwC -tyg +szx +coO cjU kge fuY @@ -94899,7 +94865,7 @@ eeY uGS lOo rAF -iZX +itM cmB cmB rtp @@ -94910,7 +94876,7 @@ vct vct vct cmB -uMZ +fDw kmq mdG cCj @@ -94920,7 +94886,7 @@ cFW gZp xwq gZp -wor +pZb vaK cLp cMe @@ -95074,20 +95040,20 @@ lMJ lMJ lMJ ajm -gFO -dMK -jOL -xBK +orW +njM +wXw +eBf aeq -quY +iRG apJ -arb +lDe ujk ahF roE fCM hva -qKq +sTU pDw aBa aCk @@ -95105,19 +95071,19 @@ aJS aJS aaa aUw -vvT +asg uZd aWf kjJ bci aaf prN -gOw +nIK qYy ryP ryP -gxL -hgV +mML +gby hlh jfR eWE @@ -95140,34 +95106,34 @@ aWf imr bXQ owx -fdQ +jyK nQk anA -nTS -gHj -nta -gzV -xMu -adz -sIB -xbH -vbY -ndy +fdE +iQh +nfq +lIz +nWg +xzJ +cXr +hrI +hUx +lhL uGS lqG rAF -ibI +tBg clu cmB cmB cmB cmB mRT -xsW -rZJ -piS -twI -prp +cwJ +bnK +poC +uXE +vHu kmq vDg mNW @@ -95177,7 +95143,7 @@ dJr gZp mTC gZp -cJC +vOe cAo cLq dMw @@ -95336,7 +95302,7 @@ aeq aeq aeq aeq -vAW +hBR riY aeq kYP @@ -95362,19 +95328,19 @@ aaa aaf aaa aUv -pFf +rYZ wVJ wsE kjJ bci aaf prN -aaj +yly vhF bnW cph -hHo -omw +aVa +rOb hlh hlh dFr @@ -95397,29 +95363,29 @@ jbJ dyK bXN hkK -fLO +mrZ qft qft -mvH +uFe cfX -oWr -ass -qWm -xqc +ctW +vXs +jdZ +huT uGS cnL -lJz +xNu cnL uGS sZD rAF -qhT -ieM -dQN -dEl -xwK -qqW -vui +giN +dXi +sDQ +wzx +aPM +ecH +tzu rAF rAF rAF @@ -95434,7 +95400,7 @@ vGs gZp jDn gZp -scD +eGg cAo cLr cMg @@ -95588,11 +95554,11 @@ aaa aaa aaa aeq -cPi -mMO -tWz -pjE -lGt +xCo +dAr +rRf +cuY +tgy agc apM aeq @@ -95626,10 +95592,10 @@ kjJ bci aaf ium -onA +xfU bnW xBB -pHY +xyY vnG kth qWi @@ -95664,9 +95630,9 @@ uGS cfX uGS uGS -xAu -cdE -cdE +bgR +eLy +eLy uGS iuf ctD @@ -95883,10 +95849,10 @@ kjJ bci aaf prN -rmL +qlC vhF bnW -whC +oQl bnW vjs vYX @@ -95921,14 +95887,14 @@ nsv nsv iJG cwd -uJX -uJX -uJX +lKW +lKW +lKW olN tCO vHG -gOE -kLy +pPB +tUq rwm hnz sWW @@ -96109,7 +96075,7 @@ alW akE alW akE -arf +wsq reV cxI mEL @@ -96140,14 +96106,14 @@ baS bci aaf prN -nOs +orI ihb vnw -pHY +xyY fzC lnQ uvZ -sCb +wiH lnt uUD gns @@ -96360,12 +96326,12 @@ aaa aaa aaa aeq -vDs -aTB -llg -vHx -sKI -qFC +wzF +sDw +eew +hxF +daO +kaC anl wyh ahI @@ -96397,10 +96363,10 @@ baT bci aaf prN -iVP +guV vhF bnW -pHY +xyY reo vjs kwq @@ -96429,16 +96395,16 @@ hfT vhK cdI cdI -shf +gCj cdI -mPu -xgW -nyl -bKa +mTA +jHu +qDI +tJe cdI -mPu -mPu -mPu +mTA +mTA +mTA kIY ctG ubO @@ -96450,8 +96416,8 @@ cyo lRj cyo fsw -mPu -mPu +mTA +mTA wWf cyo mJB @@ -96654,10 +96620,10 @@ xmy bci aaf ium -itA +pME bnW bnW -pHY +xyY pVy qTb sqj @@ -96689,13 +96655,13 @@ lOb cCn cCn cCn -dGu +mFq cCn cCn cIH -wZQ -fue -fue +ibj +vNi +vNi cCq cCq cCq @@ -96707,8 +96673,8 @@ xuu eos eqH cmP -qTW -fue +oro +vNi cgq cgq cgq @@ -96725,7 +96691,7 @@ xhy wrP cMZ cNP -gBP +hEl cPb cPv cPb @@ -96869,14 +96835,14 @@ rrt lMJ lai lai -xHe -jBF -bLY +rsg +ggm +jqI lai -taa -aMa -uwM -qyN +uiH +lxO +oKM +dxP dqv qia bIL @@ -96904,19 +96870,19 @@ aQG ipx aTl aHD -ekE +kNN hxw aZm baT bci aaf prN -uMW +xEj vhF xBB tOi -oDz -dDf +cZD +eXW hlh hlh euh @@ -96942,7 +96908,7 @@ rOa rMU axo wQM -qTP +gJw cCn eiK eQm @@ -96951,7 +96917,7 @@ nZi vmV cCq wDJ -utO +vAT wDJ cCq xwa @@ -96965,11 +96931,11 @@ wkx qZu cmP wgg -pUP +ilu cgq -slW -rye -rfd +cUs +lCB +hFZ dJh sRB wrP @@ -96980,9 +96946,9 @@ kvN wrP fVp wrP -sLs -idj -tsR +sko +xLO +jiG cPb lMJ lMJ @@ -97125,7 +97091,7 @@ aaa rrt aaa dRW -kZY +rAX jmO mIB tpX @@ -97154,26 +97120,26 @@ aHD aIM aIR aIR -fvK -rDM +ngu +tSi aPB aQH aQH aIT aHD -rBY +qcE imr aWf baT bci aaf prN -eoP +wtj njH ryP ryP -gxL -dan +mML +sMh hlh jfR wdU @@ -97211,22 +97177,22 @@ kfa bst qCl uFX -lpu -rCb -nGH -xNY -fgH +rxy +poD +hbC +brM +ime cDi pxv pxv pxv cmP -jUK -xYF -hDS -fVi -qHQ -wFs +wMu +wnF +mEU +tMp +mdU +elC lLC sRB wrP @@ -97237,9 +97203,9 @@ bfQ wrP wOe wrP -tXr +biL ttu -ltR +gha cNP lMJ aaa @@ -97383,17 +97349,17 @@ rrt lMJ lai lai -bcC -pZy -xPs +tAC +fjK +fBf lai -qNY -hyV -bav +wma +kDz +ebX mqP -ajC -bkZ -fQk +bYZ +bXU +gPM dRW hEr vJv @@ -97409,28 +97375,28 @@ gSN wCX aHD enR -fLZ -tin -kXV -pIG +acu +vzC +oZA +dHb aPB aQH aQH qFD aHD -gLc +sSq uGo aWf baT bci aaf prN -whw -bFM +lrj +lzb kIC kde tOi -oDz +cZD hlh hlh hlh @@ -97463,27 +97429,27 @@ hBa nbp fWV ueF -dVO +gkT kRP mDh hnw tKF -lLJ -cjE -msM -tSI -jQz +lMy +iia +rog +nIP +kvj cDi vUI oVk fYf oTC -vOi -xdQ -nMY -xMq -eLd -wFs +reQ +etG +jFa +boA +iwK +elC asa pDc qBs @@ -97494,9 +97460,9 @@ uug wrP ibD wrP -hMm +iXV cNR -buI +uBt cNP lMJ aaa @@ -97665,11 +97631,11 @@ ajm ajm ajm eZU -aYn -qwB +njn +fyv aIR aIR -lPp +vHM aPB aQH aQH @@ -97684,16 +97650,16 @@ aaf prN prN ium -ltx +ccM glV ryP -gxL -bKm +mML +cQl aFw tjS pyS pYh -kca +xsr xjF dHW iLp @@ -97721,28 +97687,28 @@ qBH euC jdN cDi -dRI +iSA rzE hnw mJx -lzi -soK -xer -alF -oeQ +ffE +qaV +jTp +cEU +dDl vMD rzQ oyA ron -dfG -dod -jqG -ija -fIq -gVt -jmE -uiN -xwD +tsC +qDU +nGm +gkX +jOp +gPL +caV +dLK +mCY lcN ahP ibD @@ -97751,9 +97717,9 @@ ibD ibD ibD wrP -vrP -gbb -iiv +ssP +voy +xaP cPb lMJ lMJ @@ -97897,9 +97863,9 @@ aaa rrt lMJ aiJ -gKn -eiL -jiQ +jaT +vgj +sxT akW npj bhq @@ -97922,11 +97888,11 @@ ajm aEX aDH eZU -syZ -vFf +qzq +oux aLB rti -dDe +tvB lqA mGU vFp @@ -97941,16 +97907,16 @@ aaf aaf aaf prN -fuQ -igC -nYq -bjd -sNb +rwK +aTG +hpm +jiA +pTG gJg scf kPG kPG -tVV +nbh aov mjR tKL @@ -97970,7 +97936,7 @@ fSv puS les jaN -fKN +nJo cCn jKu pYJ @@ -97982,24 +97948,24 @@ jmD eky vkL orX -rlz -mSs -oeQ -mSs -ugH +aMl +fab +dDl +fab +sYk bSb wKM ipr eCx oTC -qDL -fWo -gRT -aUq -wJJ -fWo -tSA -iKF +qQv +fFl +lpd +vAP +eIZ +fFl +nZO +vfL qBs ibD wrP @@ -98154,18 +98120,18 @@ aaa rrt aaa ejL -eCW +lAI bAr -iPN -fQR +pNN +qgq fKe vDK vDW -rEY -qfg -thr +oaZ +wzB +ade wfc -vIl +mkH cpe fNA jAb @@ -98179,11 +98145,11 @@ ajm avk aDH eZU -ebE -aoy +hTs +hRm dCq aIR -dDe +tvB aPB aQH aQH @@ -98224,10 +98190,10 @@ bVm imr bXV lOb -uwp +hqc les jaN -wPx +xcA cCn sBW cvH @@ -98239,11 +98205,11 @@ cDi jMU cDi cDi -ddB -wDD -soK -oeQ -iap +hkW +jfS +qaV +dDl +jJT cDi qmv ipr @@ -98411,18 +98377,18 @@ aaa rrt lMJ aiJ -gBL -dTP -aOM +jnd +tAd +nnO aey wZI tJi -mMU +mEl iGC ybg dgQ -xFd -cKa +eEv +sOb wMK oFf sBq @@ -98437,10 +98403,10 @@ avk avk eZU aIR -bjH -uYM -fBn -jQQ +vIA +jJP +bML +fIA aPB aQH aQH @@ -98481,26 +98447,26 @@ dCE imr bXV fby -fwy +pjG wnx ofT -hBL -rDP +bPb +xTe qGz jJX qGz rMn qGz -rDP +xTe oiO rfj fMK -upM +mbI kXd wtJ wtJ mBU -pNF +gJS cDi cFy ipr @@ -98512,7 +98478,7 @@ emd kDc lgD pWt -arN +hEX xJm egU qmW @@ -98673,13 +98639,13 @@ oHs opc aey jLR -gGn +ebb cpe cpe cpe pGc -pJD -cNM +kdp +aJU cpe tkS soq @@ -98694,10 +98660,10 @@ oci avk ofB aIS -aKd +lxh aIR -jYV -unL +yiX +wKZ aPB aQH aQH @@ -98726,7 +98692,7 @@ xjF nCq iLp aCM -qlr +xSz jwV cPt vWe @@ -98738,17 +98704,17 @@ aWf ktQ xTM lOb -lUM +ixe wQM uVp -kxE -hrO +kXR +hvN ccd fmX ccd fJL ccd -hrO +hvN woM ipr prk @@ -98757,12 +98723,12 @@ vfl hae fkK uCb -pqF +mtF kIu uSS ipr tdx -xtV +qei wgY odJ eAm @@ -98930,13 +98896,13 @@ ahc jkv aey jLR -gGn +ebb kyN uEZ cpe cpb -pJD -cNM +kdp +aJU mAi fNA vbt @@ -98995,10 +98961,10 @@ aZa gRy bSS rOa -sLI -jZl -jZl -gKi +nNc +hbG +hbG +bba cgo mqU fCb @@ -99012,9 +98978,9 @@ fSf cDi keG awU -gRk -xkL -pcS +emr +wpb +bkP cDi ddz ipr @@ -99187,12 +99153,12 @@ ahc jkv aey jLR -gGn +ebb lyV nnS kai cpe -euS +jEz eCu wZI wZI @@ -99238,22 +99204,22 @@ dtG hbO xjF mjR -sGF +lFz iLp -qAV -vtV -uPh -hXo +jXG +xkm +rGz +cOf kuB jRm gKg bTI aWf ktQ -aVU +nkW cgd iHl -vHa +vaS iHl iHl cgd @@ -99277,13 +99243,13 @@ cOd ipr eyW jmX -nyc +oIu qZN eqN -djb -iXv -qmZ +gzx +hRN tgJ +thg mUB qBs rqP @@ -99444,14 +99410,14 @@ vAx jkv aey jLR -gGn +ebb viX dYn cpe qFd -pJD +kdp wow -fRf +pmh kel paj awq @@ -99495,19 +99461,19 @@ kBm hbO xqZ cKh -hoC +ldl iLp -hLu +toQ mKx -vte -cCA +iIo +fRE paP jRm gKg bTI aWf ktQ -aVW +puA cgd tLz qUi @@ -99526,7 +99492,7 @@ kNa eVT eVT sBb -wFk +fRB fcF fcF aFB @@ -99534,18 +99500,18 @@ jWa ipr eyW jvq -nea +wIK gmC eqN -opb -nUP -qjh -kbu -qKO +tFQ +cnJ +njy +ftO +xIX qBs -wLi +kqO lMh -vgb +slV kkO kkO wrP @@ -99701,14 +99667,14 @@ ikq fcw aey wZI -bwA +rJg cpe cpe cpe qgo -pJD +kdp dtO -jEY +yau kel ukj oBA @@ -99752,19 +99718,19 @@ yeX hbO ndn mjR -bGS +fXD iLp -uPh -vtV -qAV -mOt +rGz +xkm +jXG +rrx bDt iLM gKg bTI aWf ktQ -aVW +puA cgd jhs iKe @@ -99776,14 +99742,14 @@ clc mmq ptF clc -dzq +cWF ukY ipr ipr ipr ipr ymb -fEZ +uUK iko eFV lGF @@ -99791,7 +99757,7 @@ mUS iyu fEn jvq -xzs +ukD uNE heZ bYi @@ -99957,13 +99923,13 @@ akW aiJ akW aiJ -fxb +vqB vlx -tjK +vIZ kRS gDo lfM -mfu +dDr hqL wZI wZI @@ -100021,7 +99987,7 @@ tKL bTJ aWf eGA -jAc +vMe cgd lFh kyp @@ -100040,7 +100006,7 @@ fno vBq vrm fTO -uWc +lEA kuz jvx iLf @@ -100214,15 +100180,15 @@ aaa aaa aaa fNA -mmi +ftE iKy qCx -oFn -gFC -vac +bAu +mGw +qiP nGx lgQ -fNe +mad fNA sig ezR @@ -100292,7 +100258,7 @@ tQZ rPm eWd dQd -jLM +clT ufS ufS dQd @@ -100305,7 +100271,7 @@ lbj joB hSZ jvq -jmn +vgY uox gAo dsd @@ -100471,7 +100437,7 @@ jVV hyY jVV jVV -bJT +qNo igs iLJ vBS @@ -100479,7 +100445,7 @@ kwV vuS nyG pQi -rge +fCD rmG ajm xcZ @@ -100537,7 +100503,7 @@ aWf qAs xPM xrQ -xFi +gmZ wGH wnY tur @@ -100568,7 +100534,7 @@ wZN qhS nSp mBC -xHV +bAH eoI qBs ibD @@ -100759,7 +100725,7 @@ wip jLT jjE lgz -vHJ +alj uGo aWf baT @@ -100776,7 +100742,7 @@ hiz wap fZM hJO -ihJ +qLV xES hLt clM @@ -100825,7 +100791,7 @@ nXE ooO qgC kmH -qkq +aCU fmA qBs ibD @@ -101008,15 +100974,15 @@ wFd qoz ipn jrW -qEu +mRz fAz -opV +vTR qfR iiI qCf tEQ lgz -nPM +ciw uGo sPc gsF @@ -101051,7 +101017,7 @@ bVo iji bYc wCU -qIN +oZh ccp hCo sWC @@ -101069,15 +101035,15 @@ vCF aua bZn bZn -xhL -aME -cKd +cNY +vqz +jjQ nOc nOc nOc nOc uLH -nNk +gwk cAH qBs eTY @@ -101265,7 +101231,7 @@ agq agq agq agq -tyx +xwu pkI yeN yeN @@ -101273,7 +101239,7 @@ pne yeN rLI lgz -dBs +kGI jzH lEt nMa @@ -101297,7 +101263,7 @@ iLE toy rWy qqq -kFv +hwD meC eFu rif @@ -101306,15 +101272,15 @@ jqz kpj wyF vmT -eXX -ncJ -ncJ +pwd +cIh +cIh msS hCo sWC lpg eWd -eZm +dIq wbm wbm wbm @@ -101513,7 +101479,7 @@ djw xzM qjo agq -gkT +pDX jkw agq wMT @@ -101522,7 +101488,7 @@ euf wpL iBZ wpL -uJY +ail tzh qCf pRW @@ -101537,7 +101503,7 @@ lDQ lDQ lDQ eSx -mMw +dnA lID aqV aTP @@ -101560,12 +101526,12 @@ uRF prX kIw jZS -wtQ -tBt -tBt +iUU +yeD +yeD bYc bZs -ncJ +cIh ccr hCo myC @@ -101779,7 +101745,7 @@ gBi wpL qxK wpL -mZe +sUq tzh pRW sZR @@ -101790,11 +101756,11 @@ dnh meJ kMz dnh -dwd -bFU -bUe +wUC +qZi +ktN lDQ -aiy +tDL bjw tFU tEz @@ -101818,8 +101784,8 @@ aBT lYr xVl vey -akP -duv +fJl +hCU quV vey nQO @@ -102018,7 +101984,7 @@ vGk ala kBj agq -rOh +mAu agq agq agq @@ -102047,11 +102013,11 @@ dnh dnh tcf dnh -tlm +sTt bSU -lZl +oGM bvv -gvu +dLf bjw tFU kkb @@ -102089,7 +102055,7 @@ gGP qoE oas pSm -iVS +nGw myM wEH fxK @@ -102105,7 +102071,7 @@ jcD nOc nOc uLH -cTF +wrL scO qBs qBs @@ -102300,15 +102266,15 @@ vvq mwG qCf tEQ -gHX +kGz dnh gXL aTC -ogg +bxa aPI -juk -ctU -aiy +hyp +hsM +tDL bjw tFU hNV @@ -102326,10 +102292,10 @@ evb kBD uRF iRn -hTl +qOk uRF cOD -sdz +unB xVl doO lic @@ -102353,26 +102319,26 @@ oDo fkF dak pur -gzt +eLC vcQ ipr ryS nOc vPP nOc -gqh -kqK +vep +uhI mLw mgc ppA -ttZ +vaJ crR -lrs -dMq +eqC +lci jnU -pEE -kjh -ust +npa +gVL +jyd bAp aaa lMJ @@ -102550,22 +102516,22 @@ wpL wpL wpL wpL -gej +mQR xnC pne yeN yeN uxz tEQ -ngq +kCF dnh jMv dnh -oai +hOV czL -ydp +erT bvv -aiy +tDL bjw tFU hNV @@ -102617,8 +102583,8 @@ cYS nOc jcD nOc -ngg -iCp +xsn +ybT uCj tgb lsU @@ -102627,9 +102593,9 @@ jPZ exL jDE jDE -gRx -nzA -gGv +wIS +peh +bCg bAp aaa aaa @@ -102814,15 +102780,15 @@ qCf sZR pRW tEQ -xmK +goE dnh lIV dnh -kdn -bkj -tQF +cgg +glK +tad lDQ -oUq +tfM bjw nVM oSx @@ -102874,19 +102840,19 @@ lJL uPJ kiY nOc -qdl -iib +hWc +bEE ygE yid yid aZO -wrR +lOW ecE lET -sXG -dmc -qhb -rvO +pUH +pdM +jKn +bHO uwn aaa lMJ @@ -103060,7 +103026,7 @@ iMh lks mGe oOj -iRB +ftq wpL wpL wpL @@ -103071,7 +103037,7 @@ sFL erC waR tEQ -fHg +crm dtE mLp dnh @@ -103079,7 +103045,7 @@ dnh dnh dnh lDQ -bsZ +cuz vzY mYY aKX @@ -103096,7 +103062,7 @@ qak ekv oDQ uRF -gXr +cOc dNp uRF fCC @@ -103131,19 +103097,19 @@ mpI nOc bBv nOc -gja -mGP -xNp -faV -dbu -dbu +xzp +pKN +cIY +bSF +xbB +xbB crR kgf jFj hfj -uZv -eZI -duR +pnR +vdo +rFa bAp aaa lMJ @@ -103328,15 +103294,15 @@ sFL utK qCf tEQ -ukX +oWQ dnh aDL dnh xvQ duo dnh -bfK -aiy +mts +tDL bjw tFU hNV @@ -103365,7 +103331,7 @@ yjP iKa iKa kTA -rCa +eDJ hCo vDT lpg @@ -103388,19 +103354,19 @@ mcC nOc bBv nOc -wpn -wpn -rzX -lkE -lkE -lkE +uXX +uXX +nhe +oRg +oRg +oRg crR -rVt -obt +hkS +gRv jFj -mhC -gXs -oAu +umW +gpy +kiq bAp aaa lMJ @@ -103558,7 +103524,7 @@ agq agq agq sXi -odB +rRL agq gbw agq @@ -103585,15 +103551,15 @@ iDA dTL waR tEQ -sSN +fRn dnh gXL vJG eNl bct dnh -bfL -aiy +oWr +tDL bjw tFU hNV @@ -103645,14 +103611,14 @@ hdl nOc czT nOc -igF -ols -xzF -tcC -tcC -naC +ujA +cDr +iaT +kCd +kCd +nrQ crR -iNw +koH ssy jFj rZE @@ -103808,17 +103774,17 @@ aaa aaa aaa tdI -ihY +ioe lHu eMZ dls pSI -bTf +gYI euT euT aBN uAh -qSs +orM dqy nkw poO @@ -103834,7 +103800,7 @@ oUt fBu lWC oUt -xpP +eTs iiI qKa pne @@ -103850,11 +103816,11 @@ dnh dnh dnh dnh -aiy +tDL bjw dCM kkb -thV +xVh bFa gbH gbH @@ -103893,8 +103859,8 @@ lpg vWA ped tag -pvQ -wqs +pAG +ehk cIg kAo ipr @@ -103902,15 +103868,15 @@ mAt nOc bBv nOc -ols -fkv -blr -igI -tcC -tcC +cDr +hsy +ucy +jMn +kCd +kCd crR -yhY -xGk +jPX +wfJ iDF rZE sSe @@ -104065,7 +104031,7 @@ aaa aaa aaa tdI -jpI +gvV lHu dUA dUA @@ -104075,7 +104041,7 @@ dUA dUA kLA uAh -rcO +dFg dqy ajr bGo @@ -104099,7 +104065,7 @@ qCf qCf pRW tEQ -dSA +hSy dnh aDL nkh @@ -104107,7 +104073,7 @@ tIU nkh cCy pdS -bqH +gyR bjw lqU kkb @@ -104147,12 +104113,12 @@ hCo hqm xPI lpg -jon -fam -hgM -cqe -cIL -uIn +iQl +tNC +qZE +qbG +uGk +mxw qhC ipr hdl @@ -104161,18 +104127,18 @@ bBv nOc nOc nOc -drT +onc nOc dvY dvY nOc -omN -vEn +nbE +xAu iDF -kfd -nPI -hgi -lQq +jjp +xgv +vRo +lNO rZE rZE anS @@ -104322,17 +104288,17 @@ aaa aaa aaa tdI -jpI +gvV lHu hJy hJy lHr -upQ +fbl wHe hNh hNh uAh -cUy +vAB dqy mCl nPk @@ -104340,7 +104306,7 @@ dqy rQW xqs dqy -jaM +kyv bpa xRx dQk @@ -104348,23 +104314,23 @@ pHU kda mrR mrR -kQA +thr ndo lcC -moT +lPD mAC gGX ojW vgw -dSA +hSy dnh -aWZ +alH dnh dnh dni dnh dnh -nCl +crI lrh krX nuV @@ -104395,7 +104361,7 @@ ikj ePr iSi hCo -jjh +tHD hCo hCo hCo @@ -104407,8 +104373,8 @@ lpg vRa cJW hzW -qLU -jcY +pot +bIj kCx itl mvx @@ -104416,20 +104382,20 @@ jZi nOc bBv nxf -dIb -oAA -rZG +mHs +vLF +rhi dzc dvY -oFF +mub nOc -uCp +sKE jnU eID -qyX -rEt -rZA -xqe +unz +qXO +vFv +vAr bAp aaa aaa @@ -104589,7 +104555,7 @@ xLW qMO oCW uAh -uvj +nFN dqy dqy vms @@ -104608,7 +104574,7 @@ pyb pyb pyb uCo -hay +okO uCo pyb pyb @@ -104621,7 +104587,7 @@ aaa aaa aaa bfN -aiy +tDL bjw lqU xUV @@ -104643,14 +104609,14 @@ aFe ruR vaY chR -dyh +vyu xVl quV jZd kCb kCb tgh -rCa +eDJ hCo vIb kQN @@ -104668,13 +104634,13 @@ lpg lpg lpg bZn -bMO +jJa bZn nOc bBv -dUf -hoS -hoS +fvg +gmo +gmo fbD mAW dvY @@ -104836,13 +104802,13 @@ aaa aaa aaa tdI -jad +qIQ lHu xms prK -ihY -ihY -jJK +ioe +ioe +gKA gik ihm uAh @@ -104860,14 +104826,14 @@ mkx doo bfA jKs -rvm +hgN pyb gGE -bSL -kHo -dPW -kHo -ykj +bKA +sYS +bDl +sYS +uHI adQ dnh nkh @@ -104878,7 +104844,7 @@ vEJ sbm vEJ vEJ -aiy +tDL xNr mNr laV @@ -104896,7 +104862,7 @@ wbl nIf vcT pWo -bQT +gDM ruR gcv woD @@ -104924,12 +104890,12 @@ lIm ihz axZ qAL -fhO -wub -fsC +aVC +bHN +kpP koo luD -ckd +woO ciL dvY dvY @@ -105093,13 +105059,13 @@ aaa aaa aaa tdI -vGV +jSL uhw uml prK -ihY -nkU -ihY +ioe +kTH +ioe pqA mMX iXs @@ -105117,14 +105083,14 @@ oyS uFo rRF jKs -fEM +gtJ pyb fTQ -qlf +pWu jXL pAY cQu -iNY +bjv tiF dnh jNT @@ -105135,7 +105101,7 @@ iTM eyk xuZ vEJ -aiy +tDL bjw lqU xUV @@ -105194,7 +105160,7 @@ dqD dvY xDk tgs -mbd +lUy ciL ycU dlE @@ -105350,13 +105316,13 @@ aaa aaa aaa tdI -tJq +boQ mwa luT prK -mlC -boI -tcq +thM +gqE +odE rhq pdh eaH @@ -105374,25 +105340,25 @@ wJD jKs mDH jKs -nfw +aBA pyb uKl -qlf +pWu jXL myo jXL -xym +dKF lli dnh pbd tSE qzL dqT -yaf -ido -wGC +eFa +jbD +iBO vEJ -jzM +tby bjx wNZ kyF @@ -105420,7 +105386,7 @@ quV afC ulq nam -xrp +vbR hTj kyF iqM @@ -105439,7 +105405,7 @@ lpg lpg lpg mpa -xwn +dXK mpa nOc nxf @@ -105617,7 +105583,7 @@ jKe miV pfr xBD -qJQ +hIn dqy dqy gOV @@ -105634,11 +105600,11 @@ tHc dqy pyb uCA -qlf +pWu jXL cVc gml -uDh +nAO dqB vcO kJT @@ -105646,17 +105612,17 @@ dnh dnh dqT vEJ -gCO +vTi vEJ vEJ -gvu +dLf gBz nNh kyF swc oEb kyF -oBN +bJD cAd sER sER @@ -105864,7 +105830,7 @@ ebG tdI ebG ebG -siN +uwm hNh oRQ hKk @@ -105874,7 +105840,7 @@ erM pfr pfr xBD -xTs +eIe dqy axK tHj @@ -105891,22 +105857,22 @@ vnW cQI pyb eRN -mxN -gjN -eZe -xQb -bhi +tzk +rPp +bhx +mSt +rRp sKT dnh pSB dnh tPg -oWA -qhV -izv +iDo +uVc +gRC pQH jmf -fPC +nRN bjw lqU kyF @@ -105921,7 +105887,7 @@ ttT muo eLr kNb -gJu +hSz gvN oVj vmJ @@ -106121,7 +106087,7 @@ jrw xGB mdB iDm -ihY +ioe hNh xpR vTa @@ -106131,7 +106097,7 @@ vTa vTa vTa xBD -qDe +xhS dqy rWY wkO @@ -106150,7 +106116,7 @@ pyb ekD iOC jXx -poS +tlu kGj oPs ekD @@ -106158,19 +106124,19 @@ dnh nei dnh axb -kml +wsc sBL -wwb +wxE myi jmf -aiy +tDL gfW wYa bnJ hYU rOq kyF -hNy +wyQ hxX dNN geM @@ -106185,11 +106151,11 @@ eLr aej nFx qMr -nnx +qZd xVl dKp rhw -nJM +lae kyF qWY kyF @@ -106378,7 +106344,7 @@ ebG iDm ebG ebG -oGD +jFR hNh wYS hNh @@ -106388,7 +106354,7 @@ hJy mXJ mXJ hJy -pQV +kuX dqy pUh sTJ @@ -106407,7 +106373,7 @@ pyb pPb lBT rSJ -naJ +hOF pWc xzW lBT @@ -106415,12 +106381,12 @@ dnh nkh dnh mGK -kml +wsc ltL -akw +nfU oAy jmf -bUz +nWY mUc nKc kyF @@ -106435,14 +106401,14 @@ iFA qxZ xqO jFz -hDg +bNS eKt -ycp +kFj eLr img oQY qMr -oJZ +czU xVl nGF gQz @@ -106672,24 +106638,24 @@ dnh nUG dnh mVA -qcS +oqY yie -akw +nfU pXr jmf -aiy +tDL bjw lqU kyF kyF xIE kyF -kir +jlf miE -iAW -xKe -tjm -nKj +lgb +lbW +iYt +mdJ eLr yed bEH @@ -106701,7 +106667,7 @@ crV kyF pZZ kyF -svI +lgk vNX bLh wkW @@ -106929,12 +106895,12 @@ dnh nkh dnh vNK -lQH -lQH -feb -feb -mOn -bqH +uWZ +uWZ +gHt +gHt +ewP +gyR bjw lqU kyF @@ -107174,7 +107140,7 @@ nkh eQZ nei nei -psB +qji nkh nkh pSB @@ -107191,7 +107157,7 @@ xEb fun viM jmf -ubj +gts cUl lzN hmk @@ -107205,9 +107171,9 @@ fMR fMR xWU kyF -kxF +tXJ igv -jRE +uEg hkQ lZn wJj @@ -107238,7 +107204,7 @@ cgo cgo cgo pWO -tLf +gIW pWO cgo aaa @@ -107448,7 +107414,7 @@ qVu qVu qVu qVu -xLq +rIJ rTr llm jvD @@ -107487,9 +107453,9 @@ tjp fdB sKn hmG -aNP -niy -mVP +set +ooE +mRj hCo aaa aaa @@ -107693,19 +107659,19 @@ gzT qgA qgA fTu -vRU +clG jAy ngH -bCC +hoe fTu -tsc -ooR -dQt -ncV -rrR -hdq +sMx +lmC +rPR +iUe +pTj +nFW qVu -ahA +vEE rTr llm kTW @@ -107726,7 +107692,7 @@ lCT xtW heB mNC -kmv +bEZ myz kyF boP @@ -107736,7 +107702,7 @@ nDU yiI mKO pxR -aaX +qne apX mPy hCo @@ -107950,19 +107916,19 @@ gzT qgA gTu fTu -pCG +qLm lbo wzR -xfH +cWh fTu -nAs -ojI +jeV +ehA oDx -swN +cLe tsF -nuE +sFt qVu -ahA +vEE rTr llm kTW @@ -108207,19 +108173,19 @@ oJk pix rxA fTu -foL +veH dcE oDE -xfH +cWh fTu -vsT -ojI -wKt -tDq -fLF -qyD +mPB +ehA +izy +cEa +uXa +qZM qVu -kAA +rYl rTr bDH kTW @@ -108470,25 +108436,25 @@ qIb xII fTu qVu -maE -wDU -wrm -fLF -sfU +iQL +phv +lMZ +uXa +cPC qVu cVr bjC llm -uIS +lLU ovn lLS crj -kHZ -xZn +dvg +fDp gbm eou iVZ -fyf +itE sZX jvD jvD @@ -108501,7 +108467,7 @@ rya cmZ kyF kyF -qZV +aYO cPO jcx uiG @@ -108727,11 +108693,11 @@ iHd dBo rQv jrQ -ojI +ehA pli -jKB +uAf kee -wpC +jGm fnU bTL oOg @@ -108770,7 +108736,7 @@ cgx cja ckE cmd -cne +jAW cNw cOa crf @@ -108984,11 +108950,11 @@ wwz iEY azw hDb -rvG -nwp -gTQ -xWg -wRE +nGQ +snU +qjM +bZA +bne fnU odV sMT @@ -109027,7 +108993,7 @@ uhK rnH iDs rnH -cnf +aaD cgz cgz cre @@ -109253,7 +109219,7 @@ arr kbv kbv kaM -lGs +ucp kaM kbv gaE @@ -109467,7 +109433,7 @@ kiE ebG mXD hnX -xOP +mok vyp dnh dnh @@ -109504,15 +109470,15 @@ eEg pWb lhW dus -cGW -qbE -dHo -oyJ -agG -hTg -cCV -uzJ -pZP +oMw +oFk +mVL +mLF +miG +oTd +iFw +nxd +xPi gaE edI tQV @@ -109557,7 +109523,7 @@ aaa aaa qeW vqh -ugn +gvI vqh vqh lMJ @@ -109761,7 +109727,7 @@ eXp wBk bDQ jIq -fMQ +kBg gnG cgE xgO @@ -109769,7 +109735,7 @@ kgQ owz xgO rvR -jXE +rPb gaE gaE fMG @@ -110018,7 +109984,7 @@ eWl pWb lhW dfu -hvL +fQk gAX rRw bsp @@ -110026,8 +109992,8 @@ her vkp kEt mYi -vZu -spR +ozv +ede nuq typ dNU @@ -110037,8 +110003,8 @@ iSS hBk vBH vBH -vFF -vFF +jYH +jYH jMk wzg khq @@ -110046,12 +110012,12 @@ hvU fOM lye lye -bpi +rot iyL vEr cxl tiZ -oXw +pfd oEu oEu deP @@ -110275,7 +110241,7 @@ uwz rqf rqf oZV -sDo +kSz raB nRV nbL @@ -110283,7 +110249,7 @@ tPS tKC xwN hVB -cke +qZx gaE gaE pzr @@ -110303,12 +110269,12 @@ fqD ufw fKD fKD -hxo +cJz voY cor aaf scK -ens +lan hdc nUU deP @@ -110526,21 +110492,21 @@ iHx eUM oma uQW -hGS +hbw qKK ePR ddR xMa -mam +uOF oxe aat eLq -uSj -jKJ -kpr -dhe -nDy -ptt +otk +hXY +hBJ +flt +nKu +mVg gaE efm aql @@ -110548,7 +110514,7 @@ bFQ pzw qCJ oOQ -dAW +gNH vzV ucL gNH @@ -110560,12 +110526,12 @@ bQh fJd xoQ sMi -eEc +bzU ffR cCG xmT qfd -nnX +udr ntZ oEu deP @@ -110585,7 +110551,7 @@ vqh sQv vqh xoD -jbz +dEV xoD vqh sQv @@ -110782,19 +110748,19 @@ unP puj baA oma -sij +pAO bWN bWN szv rZj -cPz -dsO +lWz +lev vkp jps -eeJ +lJT bfX bfX -icN +wTU bfX aYu vYM @@ -110839,13 +110805,13 @@ vqh vqh vqh vqh -ukI -ydW -wkB -tDy -oAc -jyH -igy +xBG +glF +wOM +fcb +jyx +cAN +cGs vqh vqh vqh @@ -111009,9 +110975,9 @@ aaa aaa aox rzR -qvB -pWz -sqk +uhU +frC +scT xTq kEv jRw @@ -111048,12 +111014,12 @@ xMa laG iXg jps -dIf +mBy bfX -wWH -aux -hwo -aJi +eTk +qZh +nHN +tIg vYM gaE qvM @@ -111074,12 +111040,12 @@ diY foI caT uzC -fqw +jhT ntb vEr cxl tiZ -ldE +vSQ sRI sRI deP @@ -111266,9 +111232,9 @@ aaa aaa aox rzR -cvd +ymf jyv -wEK +xpb aia wHT jRw @@ -111299,19 +111265,19 @@ oma sRo hGj gvZ -mzU +eDW hrb xMa hoa rBt jps -asf +kSg bfX -nEt +xUJ pZr sLg -qGv -eIX +koC +hfr gaE yln yln @@ -111331,12 +111297,12 @@ eKy fJd caT uzC -rrg +eIo nMw cor aaf scK -wrH +sOz ntx uKH deP @@ -111355,14 +111321,14 @@ hVd qkZ dkp tVr -liD -eAp -hge +duN +aHo +dqV ilk ucP cNu ngS -tBR +tyb xiO vqh aaa @@ -111523,9 +111489,9 @@ aaa aaa aox rzR -sqk -pWz -qvB +scT +frC +uhU szy kEv xro @@ -111559,23 +111525,23 @@ alq alq alq atm -dQj +mON xwN bHU -ozy +cFc bfX -cCv -pxC -jqv -qQv -wjZ -kZW -bOl -dEB -rpw -cWC -asw -vEm +ufy +rpp +wof +dhh +dci +sUa +aFS +kce +fOH +vZn +bqn +rcP qui lye rPG @@ -111588,12 +111554,12 @@ elN fJd qHw gSp -gXC +dsD ine cCG xmT qfd -shx +cCL mTn sRI deP @@ -111613,7 +111579,7 @@ rtc dVf dJj eCr -jMb +aPf plH ies lfQ @@ -111816,22 +111782,22 @@ sWb xih fWF rqM -nqx +nkQ ioR -sAi +iac sLi sLi sLi sLi sLi sLi -jaY -wkM -okx -uXn -mck -qdq -rCJ +vaX +lDl +rPP +aQU +lzg +tAn +ots xov grx rtq @@ -111870,7 +111836,7 @@ cRi vqh xfy mTR -kmQ +uwH gib oTb vqh @@ -112073,22 +112039,22 @@ gSq apc lLs atm -pWL +ixn cRR -gin +pir lCK mXc eqQ hWy mAR pVl -mzJ -rFp -xgl -czb -wIp -sll -xER +tYY +isP +whX +eSU +iEx +tZy +tUb azB grx lye @@ -112102,12 +112068,12 @@ elN fJd bWK gSp -puW +flF tcp gdd oId bge -ssK +dKU iXC iXC deP @@ -112330,22 +112296,22 @@ alr moR aFU atm -qFQ -goa -yez +ufx +dtd +jaw sLi fqN uqu sYC rAv fWM -hIe -vUr -rAW -kex -tBq -sll -xER +oaL +sxU +egS +mPX +aNV +tZy +tUb dZW grx lye @@ -112359,12 +112325,12 @@ elN fJd mzG uzC -rtK +sTk wkj cor aaf scK -hki +ulM wkJ ewV deP @@ -112596,13 +112562,13 @@ jws usW sLi sUz -jOE -ogW -fIk -jjG -tBq -sll -xER +pUa +iKZ +mqO +xHp +aNV +tZy +tUb azB efi grx @@ -112616,12 +112582,12 @@ elN fJd lye ior -oep +kie xuz gdd oId kPx -qFW +fMu hAn iXC deP @@ -112853,26 +112819,26 @@ kFl xCY sLi jAT -jOE -tfk -fWK -plz -ogM -mLY -vsR -dWH -xot -xot -xot -lRW -jec -qcv -qcv -qcv -oUw -lGf -qcv -ltz +pUa +wOj +xxQ +lhr +szT +gEB +kcB +kkn +bMV +bMV +bMV +ivJ +gBn +fXk +fXk +fXk +aJr +kJA +fXk +sXV mFv pTM jMk @@ -113110,13 +113076,13 @@ aOY aOY sLi tUI -uSF -boK -wBI -lwo -pTC -srC -qoh +kEk +bxL +dAD +eqy +nAJ +dtV +fCv lnN fSe lgY @@ -113367,11 +113333,11 @@ lMJ lMJ aaf ack -wjZ -tBx -tIW -tIW -tIW +dci +iBY +xzc +xzc +xzc kvs fJz fJz @@ -113379,14 +113345,14 @@ bRo isG mvS mvS -ePK -iCK -eAf -uCg -npl -xFL -rJr -tWk +rCY +spj +rmt +dyb +rQA +eha +kix +xdN mFv bgp jMk @@ -113644,12 +113610,12 @@ rtq wLr icl uzC -cyI +lLZ pFE fkR xtZ mdw -eqn +hgg mfM mfM deP @@ -113668,9 +113634,9 @@ cSd jsE cSb cSd -eIU -kFL -gTt +iJS +kbe +lxZ cSd dcQ bxB @@ -113901,12 +113867,12 @@ pik mCT pik uzC -vsU +pRX sxZ cor lMJ scK -xrA +odF tGx piV deP @@ -114158,12 +114124,12 @@ cOb wLr pik qah -iTY +cpZ tJu fmR gQf pyC -ekg +vPU tZW mfM deP @@ -114672,12 +114638,12 @@ gKE bzg lye uzC -afL +eDX pFE fkR xtZ mdw -xJP +duG lSa lSa deP @@ -114929,12 +114895,12 @@ dtQ dSC lye kHI -wOD +evv fsc cor lMJ scK -eyf +iNH xuL jiR deP @@ -115186,12 +115152,12 @@ mLX wCh lye txN -eTm +mPJ tJu fmR gQf pyC -bMJ +vof iqk lSa deP @@ -115700,12 +115666,12 @@ ajk vXU lye uzC -kFW +qll pFE fkR xtZ mdw -jsP +iTe beJ beJ deP @@ -115957,12 +115923,12 @@ wCh uzC lye uzC -tIm +rCr sxZ cor lMJ scK -uFF +mld tmf vKn deP @@ -116208,18 +116174,18 @@ dtK dtK idO nuU -mXh +wsw hwW wCh qJL hjv anN -nPe +pdr tJu fmR gQf pyC -cGI +eoM tJD beJ deP @@ -116728,12 +116694,12 @@ riu sMi lyp jFt -sFf +hRj pwF fkR xtZ mdw -yhF +xXU jxI jxI deP @@ -116985,12 +116951,12 @@ uuF lye lye pSO -oKn +wSd sxZ cor lMJ scK -mCQ +jcZ jxI qQV deP @@ -117242,12 +117208,12 @@ peE mwM rUd wIt -pmS +ozI qYx nqh hwg eCP -smw +lPu jeT jxI deP @@ -120296,8 +120262,8 @@ aaa aaa lMJ aMq -run -run +pyP +pyP aOV aMq xct @@ -120553,8 +120519,8 @@ aaa aaa lMJ beq -sAc -rgF +qmR +cUI beq blx iwp @@ -120810,8 +120776,8 @@ aaa aaa lMJ aSD -fBQ -run +xew +pyP aOX bly gMA @@ -121323,7 +121289,7 @@ rHO rHO rHO rHO -chP +mtR aVk aOY aOY @@ -121573,7 +121539,7 @@ rHO rHO rHO rHO -nTf +rGG aVk aOY aOY @@ -121591,14 +121557,14 @@ gCS eNR aaa aMq -neY +vKf rHO rHO rHO rHO kLG kLG -obY +ndb kLG kLG kLG @@ -122098,7 +122064,7 @@ gfU gfU gfU gfU -fbJ +evI abR pfe cok @@ -122355,7 +122321,7 @@ gfU gfU gfU bjP -eDx +omF bnx vjA hOl @@ -122612,7 +122578,7 @@ aTV aTV aTV bjP -blD +tri bny pfe brY @@ -122861,9 +122827,9 @@ gfU aTV aVl oFC -aYy -stR -bbF +phN +jEr +lro odP aVl jGa @@ -123126,7 +123092,7 @@ uUX azv dKG bjQ -hld +hac pQv tSP pce @@ -123376,7 +123342,7 @@ vnm aVn aWN aTV -itC +qeQ aTV aTV tfz @@ -123622,21 +123588,21 @@ aaa aaa rrt gfU -jaz +nFL ddc -uYI -tRn -jVE +dMu +wJv +jZC pan pan wgB nGv aWO aYz -uVm +lup wPo aTV -iQX +rYA kUm nFe bhc @@ -123644,7 +123610,7 @@ mgj piw jvO wNm -oag +dWI qct qct ugu @@ -123663,7 +123629,7 @@ fMJ gPX eNh orU -kmM +ixw gfU rrt aaa @@ -123890,7 +123856,7 @@ vnm xGF iCV aTV -mLk +fUs aTV aTV aWN @@ -124154,7 +124120,7 @@ iCV mCL pIE bjQ -qDr +kxq rNs tSP nMF @@ -124403,9 +124369,9 @@ gfU aTV aVr iZN -jCG -cHT -bbH +pHy +hyZ +rZy iZN aVr qsV @@ -124668,7 +124634,7 @@ aTV aTV aTV ldP -juW +sVx pWR lnX asz @@ -124925,7 +124891,7 @@ gfU gfU gfU ldP -rJR +xgE uFw tXz hTt @@ -125182,7 +125148,7 @@ gfU gfU gfU gfU -aOw +gEv xkw ryJ fMT @@ -125439,7 +125405,7 @@ gfU aaa aaa gfU -dMU +ipR ktW wuM vVE @@ -125685,7 +125651,7 @@ rHO rHO rHO rHO -oTj +mGk aOX aNw aNw @@ -125703,14 +125669,14 @@ gfU gfU aaa aMq -bep +bbO rHO rHO rHO rHO rHO rHO -cnN +wLC kLG kLG kLG @@ -125809,7 +125775,7 @@ aaa aaa aaa aaa -dyx +lMq nNL aaa aaa @@ -125949,7 +125915,7 @@ rHO rHO rHO rHO -jXy +eRF bgn aaa aaa @@ -126065,8 +126031,8 @@ aaa aaa aaa aaa -dyx -cJT +lMq +htS nNL nNL aaa diff --git a/_maps/map_files/tramstation/tramstation.dmm b/_maps/map_files/tramstation/tramstation.dmm index 5335698016a..fe61a7bd257 100644 --- a/_maps/map_files/tramstation/tramstation.dmm +++ b/_maps/map_files/tramstation/tramstation.dmm @@ -2681,6 +2681,11 @@ /obj/item/radio/intercom/directional/south, /turf/open/floor/iron/white, /area/science/research) +"atx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible, +/obj/machinery/meter, +/turf/open/floor/iron, +/area/engineering/atmos) "atG" = ( /obj/effect/turf_decal/trimline/neutral/filled/corner, /obj/structure/cable, @@ -4406,11 +4411,6 @@ }, /turf/open/floor/plating, /area/maintenance/tram/mid) -"aDX" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/space/basic, -/area/solars/starboard) "aDY" = ( /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 8 @@ -4476,12 +4476,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/hallway/primary/tram/right) -"aEi" = ( -/obj/machinery/computer/atmos_control{ - dir = 8 - }, -/turf/open/floor/iron, -/area/engineering/atmos) "aEj" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 10 @@ -7103,15 +7097,6 @@ }, /turf/open/floor/iron/white, /area/science/research) -"bht" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/incinerator_input{ - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) "bhz" = ( /obj/machinery/holopad, /obj/effect/turf_decal/siding/wood{ @@ -7356,6 +7341,13 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/vault, /area/hallway/primary/tram/right) +"bnm" = ( +/obj/machinery/computer/atmos_control/nitrogen_tank{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line, +/turf/open/floor/iron, +/area/engineering/atmos) "bnp" = ( /obj/machinery/door/airlock/maintenance_hatch{ req_one_access_txt = "12" @@ -7959,12 +7951,6 @@ /obj/structure/cable, /turf/open/floor/iron/white, /area/science/xenobiology) -"bzF" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/plasma_output{ - dir = 8 - }, -/turf/open/floor/engine/plasma, -/area/engineering/atmos) "bzU" = ( /obj/effect/turf_decal/trimline/brown/filled/corner{ dir = 4 @@ -8352,11 +8338,6 @@ }, /turf/open/floor/iron/white, /area/science/xenobiology) -"bFU" = ( -/obj/machinery/meter/atmos/atmos_waste_loop, -/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible, -/turf/open/floor/iron, -/area/engineering/atmos) "bFV" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/portable_atmospherics/canister/air, @@ -9153,13 +9134,6 @@ }, /turf/open/floor/plating, /area/ai_monitored/turret_protected/aisat/foyer) -"bUp" = ( -/obj/machinery/computer/atmos_control/tank/air_tank{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/filled/line, -/turf/open/floor/iron, -/area/engineering/atmos) "bUx" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 5 @@ -9371,6 +9345,12 @@ /obj/item/crowbar, /turf/open/floor/plating, /area/maintenance/starboard/lesser) +"bXt" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/mix_input{ + dir = 8 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) "bXz" = ( /obj/effect/turf_decal/trimline/brown/filled/corner, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -10755,10 +10735,6 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/carpet, /area/cargo/miningdock) -"cCq" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/openspace, -/area/solars/port/aft) "cCz" = ( /obj/effect/turf_decal/trimline/yellow/warning, /obj/effect/decal/cleanable/dirt, @@ -11242,12 +11218,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/maintenance/tram/mid) -"cMz" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrogen_input{ - dir = 1 - }, -/turf/open/floor/engine/n2, -/area/engineering/atmos) "cMJ" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 4 @@ -11357,10 +11327,6 @@ "cNT" = ( /turf/open/floor/iron/dark, /area/maintenance/radshelter/civil) -"cNX" = ( -/obj/machinery/air_sensor/atmos/mix_tank, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) "cOy" = ( /obj/machinery/button/door/directional/west{ id = "private_g"; @@ -12146,6 +12112,18 @@ }, /turf/open/floor/iron, /area/engineering/atmos) +"daH" = ( +/obj/machinery/computer/atmos_control/nitrous_tank{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/engineering/atmos) "daI" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -12505,6 +12483,13 @@ /obj/structure/cable, /turf/open/floor/catwalk_floor, /area/maintenance/department/crew_quarters/dorms) +"dht" = ( +/obj/machinery/computer/atmos_control/nocontrol/incinerator{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/turf/open/floor/iron, +/area/maintenance/disposal/incinerator) "dhx" = ( /obj/effect/turf_decal/trimline/neutral/filled/corner, /obj/effect/turf_decal/trimline/neutral/filled/corner{ @@ -13173,6 +13158,13 @@ /obj/structure/cable, /turf/open/floor/iron, /area/engineering/main) +"dtF" = ( +/obj/machinery/computer/atmos_control/oxygen_tank{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/iron, +/area/engineering/atmos) "dtH" = ( /obj/effect/landmark/start/hangover, /obj/machinery/duct, @@ -13678,11 +13670,6 @@ }, /turf/open/floor/iron, /area/hallway/primary/tram/center) -"dEM" = ( -/obj/effect/spawner/random/structure/grille, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) "dEN" = ( /obj/machinery/door/airlock/external{ name = "External Access" @@ -14405,12 +14392,6 @@ /obj/item/stack/ore/glass, /turf/open/floor/plating, /area/maintenance/port/fore) -"dSz" = ( -/obj/machinery/computer/atmos_control/ordnancemix{ - dir = 1 - }, -/turf/open/floor/iron, -/area/science/mixing) "dSI" = ( /obj/effect/turf_decal/trimline/neutral/filled/line, /obj/machinery/light/directional/south, @@ -15453,12 +15434,6 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/iron, /area/commons/lounge) -"ejF" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrous_output{ - dir = 8 - }, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) "ejN" = ( /obj/effect/decal/remains/human, /obj/effect/decal/cleanable/crayon{ @@ -16082,12 +16057,6 @@ }, /turf/open/floor/iron, /area/maintenance/tram/mid) -"euO" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible, -/obj/structure/cable, -/turf/open/floor/iron, -/area/engineering/atmos) "euP" = ( /obj/effect/turf_decal/stripes{ dir = 1 @@ -16505,6 +16474,17 @@ /obj/effect/turf_decal/trimline/neutral/filled/corner, /turf/open/floor/iron, /area/maintenance/tram/right) +"eCv" = ( +/obj/machinery/computer/atmos_control/nocontrol/ordnancemix{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Science - Ordnance Lab South"; + dir = 6; + network = list("ss13","rd") + }, +/turf/open/floor/iron, +/area/science/mixing) "eCx" = ( /obj/effect/turf_decal/trimline/red/filled/line, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -16522,6 +16502,10 @@ }, /turf/open/floor/plating, /area/hallway/secondary/exit/departure_lounge) +"eCI" = ( +/obj/machinery/air_sensor/ordnance_mixing_tank, +/turf/open/floor/engine/vacuum, +/area/science/mixing/chamber) "eCL" = ( /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 8 @@ -16754,6 +16738,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/command/teleporter) +"eFN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/machinery/meter/monitored/waste_loop, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/engineering/atmos/pumproom) "eGl" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 1 @@ -19912,10 +19904,6 @@ }, /turf/open/floor/iron, /area/security/prison) -"fJy" = ( -/obj/machinery/air_sensor/atmos/nitrogen_tank, -/turf/open/floor/engine/n2, -/area/engineering/atmos) "fJG" = ( /obj/machinery/light/directional/east, /obj/machinery/modular_computer/console/preset/engineering{ @@ -20296,6 +20284,12 @@ /obj/structure/cable, /turf/open/floor/catwalk_floor, /area/maintenance/starboard/lesser) +"fPW" = ( +/obj/effect/turf_decal/sand/plating, +/obj/machinery/power/tracker, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/solars/port/aft) "fPZ" = ( /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 8 @@ -20522,15 +20516,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/cargo/miningdock) -"fTg" = ( -/obj/machinery/computer/atmos_control/tank/plasma_tank{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/engineering/atmos) "fTk" = ( /obj/effect/turf_decal/trimline/red/filled/line, /obj/effect/turf_decal/trimline/red/filled/corner{ @@ -21686,6 +21671,10 @@ "goO" = ( /turf/open/floor/iron, /area/commons/fitness) +"gpe" = ( +/obj/machinery/air_sensor/nitrous_tank, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) "gpn" = ( /turf/closed/wall, /area/security/prison/shower) @@ -22544,6 +22533,12 @@ }, /turf/open/floor/iron, /area/maintenance/tram/left) +"gGm" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrous_output{ + dir = 8 + }, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) "gGE" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -23492,6 +23487,10 @@ }, /turf/open/floor/wood/parquet, /area/medical/psychology) +"gYd" = ( +/obj/machinery/air_sensor/plasma_tank, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) "gYp" = ( /obj/structure/chair/stool/bar/directional/north, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -24363,21 +24362,27 @@ }, /turf/open/floor/iron/white, /area/medical/virology) +"hnE" = ( +/obj/structure/lattice, +/obj/effect/spawner/random/structure/grille, +/turf/open/space/basic, +/area/space/nearstation) "hnF" = ( /turf/closed/wall/rock/porous, /area/maintenance/port/fore) -"hnL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/machinery/meter/atmos/atmos_waste_loop, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/turf/open/floor/iron, -/area/engineering/atmos/pumproom) "hof" = ( /obj/structure/floodlight_frame, /turf/open/misc/asteroid, /area/medical/chemistry) +"hou" = ( +/obj/machinery/computer/atmos_control/plasma_tank{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/engineering/atmos) "hoF" = ( /obj/structure/sign/warning/nosmoking, /turf/closed/wall, @@ -25170,12 +25175,6 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/circuit/telecomms/server, /area/science/server) -"hEH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrogen_output{ - dir = 1 - }, -/turf/open/floor/engine/n2, -/area/engineering/atmos) "hET" = ( /obj/machinery/light/small/directional/south, /obj/effect/decal/cleanable/dirt, @@ -25528,6 +25527,12 @@ /obj/structure/cable, /turf/open/floor/iron, /area/security/checkpoint/escape) +"hKI" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/carbon_input{ + dir = 8 + }, +/turf/open/floor/engine/co2, +/area/engineering/atmos) "hKP" = ( /obj/machinery/telecomms/bus/preset_one, /turf/open/floor/iron/dark/telecomms, @@ -25617,6 +25622,12 @@ /obj/structure/cable, /turf/open/floor/iron, /area/construction/mining/aux_base) +"hMl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrogen_output{ + dir = 1 + }, +/turf/open/floor/engine/n2, +/area/engineering/atmos) "hMs" = ( /obj/effect/turf_decal/trimline/purple/filled/corner{ dir = 4 @@ -25989,12 +26000,6 @@ }, /turf/open/floor/iron, /area/security/checkpoint/medical) -"hUe" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/carbon_input{ - dir = 8 - }, -/turf/open/floor/engine/co2, -/area/engineering/atmos) "hUF" = ( /mob/living/simple_animal/slime, /turf/open/floor/engine, @@ -26130,13 +26135,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/science/robotics/lab) -"hXD" = ( -/obj/machinery/computer/atmos_control/tank/nitrogen_tank{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/iron, -/area/engineering/atmos) "hYd" = ( /obj/effect/turf_decal/trimline/brown/filled/corner{ dir = 1 @@ -27212,6 +27210,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/science/genetics) +"isS" = ( +/obj/machinery/air_sensor/carbon_tank, +/turf/open/floor/engine/co2, +/area/engineering/atmos) "isW" = ( /obj/effect/turf_decal/bot, /obj/machinery/portable_atmospherics/scrubber, @@ -29653,6 +29655,11 @@ /obj/effect/spawner/random/trash/food_packaging, /turf/open/floor/iron/smooth, /area/maintenance/department/cargo) +"jnf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/engineering/atmos/pumproom) "jnn" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -29734,6 +29741,10 @@ /obj/structure/cable, /turf/open/floor/circuit, /area/ai_monitored/command/nuke_storage) +"jot" = ( +/obj/machinery/air_sensor/oxygen_tank, +/turf/open/floor/engine/o2, +/area/engineering/atmos) "joC" = ( /turf/closed/wall/r_wall, /area/medical/virology) @@ -29810,12 +29821,6 @@ /obj/effect/turf_decal/trimline/neutral/filled/line, /turf/open/floor/iron, /area/commons/fitness) -"jqa" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrous_input{ - dir = 8 - }, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) "jqb" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -30114,11 +30119,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/hallway/secondary/exit/departure_lounge) -"jxr" = ( -/obj/structure/lattice, -/obj/effect/spawner/random/structure/grille, -/turf/open/space/basic, -/area/space/nearstation) "jxw" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 5 @@ -30171,13 +30171,6 @@ }, /turf/open/floor/iron/white, /area/science/mixing) -"jyY" = ( -/obj/machinery/computer/atmos_control/tank/oxygen_tank{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/blue/filled/line, -/turf/open/floor/iron, -/area/engineering/atmos) "jzd" = ( /obj/effect/turf_decal/trimline/blue/filled/line, /obj/machinery/newscaster/directional/south, @@ -30512,17 +30505,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/ai) -"jDt" = ( -/obj/machinery/computer/atmos_control/ordnancemix{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Science - Ordnance Lab South"; - dir = 6; - network = list("ss13","rd") - }, -/turf/open/floor/iron, -/area/science/mixing) "jDA" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/iron, @@ -30880,6 +30862,15 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat_interior) +"jKT" = ( +/obj/effect/turf_decal/sand/plating, +/obj/structure/cable, +/obj/machinery/power/solar{ + id = "portsolar"; + name = "Port Solar Array" + }, +/turf/open/floor/plating/airless, +/area/solars/port/aft) "jKX" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -32902,6 +32893,11 @@ "kvg" = ( /turf/closed/wall/r_wall, /area/science/lab) +"kvh" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space/basic, +/area/solars/starboard) "kvs" = ( /obj/machinery/light/small/directional/west, /obj/structure/sign/poster/ripped{ @@ -33517,6 +33513,12 @@ }, /turf/open/floor/iron/dark, /area/medical/morgue) +"kGD" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/nitrous_input{ + dir = 8 + }, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) "kGR" = ( /turf/closed/wall, /area/commons/fitness) @@ -35206,6 +35208,16 @@ /obj/machinery/light/small/directional/east, /turf/open/floor/plating, /area/maintenance/starboard/lesser) +"liF" = ( +/obj/machinery/computer/atmos_control/carbon_tank{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/turf/open/floor/iron, +/area/engineering/atmos) "liG" = ( /obj/effect/turf_decal/trimline/purple/filled/corner{ dir = 1 @@ -35237,6 +35249,12 @@ /obj/structure/cable, /turf/open/floor/iron, /area/security/brig) +"ljt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/carbon_output{ + dir = 8 + }, +/turf/open/floor/engine/co2, +/area/engineering/atmos) "ljS" = ( /obj/effect/turf_decal/trimline/yellow/warning, /obj/effect/turf_decal/trimline/neutral/filled/line{ @@ -36944,25 +36962,6 @@ }, /turf/open/floor/plating, /area/maintenance/tram/right) -"lOW" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/carbon_input, -/obj/effect/turf_decal/box/red/corners{ - dir = 4 - }, -/obj/effect/turf_decal/box/red/corners{ - dir = 8 - }, -/obj/effect/turf_decal/box/red/corners{ - dir = 1 - }, -/obj/effect/turf_decal/box/red/corners, -/obj/machinery/camera{ - c_tag = "Science - Cytology Pen"; - dir = 9; - network = list("ss13","rd") - }, -/turf/open/floor/engine, -/area/science/cytology) "lOY" = ( /obj/item/radio/intercom/directional/south, /turf/open/floor/iron, @@ -37029,12 +37028,6 @@ }, /turf/open/floor/iron, /area/engineering/break_room) -"lQy" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/mix_input{ - dir = 8 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) "lQz" = ( /obj/structure/closet/crate/trashcart/laundry, /obj/item/clothing/under/rank/prisoner/skirt, @@ -38244,12 +38237,6 @@ }, /turf/open/floor/iron, /area/cargo/storage) -"moi" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/air_input{ - dir = 1 - }, -/turf/open/floor/engine/air, -/area/engineering/atmos) "moE" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ @@ -38665,16 +38652,6 @@ "mxs" = ( /turf/open/floor/wood/large, /area/service/library) -"mxE" = ( -/obj/machinery/computer/atmos_control/tank/carbon_tank{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/iron, -/area/engineering/atmos) "mxF" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 4 @@ -38706,6 +38683,11 @@ /obj/structure/cable, /turf/open/floor/iron/white, /area/medical/medbay/lobby) +"mxQ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space/openspace, +/area/solars/port/aft) "mxW" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, @@ -39212,6 +39194,12 @@ /obj/machinery/space_heater, /turf/open/floor/iron/smooth, /area/maintenance/department/security) +"mJG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/plasma_output{ + dir = 8 + }, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) "mJH" = ( /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat_interior) @@ -39678,6 +39666,10 @@ /obj/structure/cable, /turf/open/floor/iron/white, /area/medical/treatment_center) +"mRK" = ( +/obj/machinery/air_sensor/nitrogen_tank, +/turf/open/floor/engine/n2, +/area/engineering/atmos) "mRN" = ( /obj/effect/turf_decal/trimline/yellow/warning{ dir = 1 @@ -40349,10 +40341,6 @@ }, /turf/open/floor/iron, /area/security/prison) -"nfp" = ( -/obj/machinery/air_sensor/atmos/carbon_tank, -/turf/open/floor/engine/co2, -/area/engineering/atmos) "nfv" = ( /obj/structure/disposalpipe/junction/flip{ dir = 8 @@ -41231,6 +41219,12 @@ /obj/structure/table/glass, /turf/open/floor/iron/dark, /area/medical/treatment_center) +"nyA" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/nitrogen_input{ + dir = 1 + }, +/turf/open/floor/engine/n2, +/area/engineering/atmos) "nyH" = ( /obj/structure/ladder, /obj/effect/decal/cleanable/dirt, @@ -41531,10 +41525,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/engineering/atmospherics_engine) -"nEN" = ( -/obj/machinery/air_sensor/atmos/plasma_tank, -/turf/open/floor/engine/plasma, -/area/engineering/atmos) "nET" = ( /obj/machinery/airalarm/directional/south, /obj/effect/turf_decal/trimline/yellow/filled/line, @@ -42550,6 +42540,25 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, /area/commons/fitness) +"nYz" = ( +/obj/effect/turf_decal/box/red/corners{ + dir = 4 + }, +/obj/effect/turf_decal/box/red/corners{ + dir = 8 + }, +/obj/effect/turf_decal/box/red/corners{ + dir = 1 + }, +/obj/effect/turf_decal/box/red/corners, +/obj/machinery/camera{ + c_tag = "Science - Cytology Pen"; + dir = 9; + network = list("ss13","rd") + }, +/obj/machinery/atmospherics/components/unary/outlet_injector, +/turf/open/floor/engine, +/area/science/cytology) "nYG" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -42774,17 +42783,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/medical/chemistry) -"odK" = ( -/obj/machinery/air_sensor/atmos/incinerator_tank{ - pixel_x = -32; - pixel_y = -32 - }, -/obj/machinery/igniter{ - id = "Incinerator" - }, -/obj/structure/cable/layer1, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) "odO" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -43295,12 +43293,6 @@ /obj/structure/sign/warning/radiation, /turf/closed/wall/r_wall, /area/engineering/supermatter) -"omu" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/plasma_input{ - dir = 8 - }, -/turf/open/floor/engine/plasma, -/area/engineering/atmos) "omE" = ( /obj/machinery/light/directional/west, /obj/effect/turf_decal/bot, @@ -43323,6 +43315,15 @@ /obj/structure/cable, /turf/open/floor/iron, /area/hallway/primary/central) +"omN" = ( +/obj/effect/turf_decal/sand/plating, +/obj/structure/cable, +/obj/machinery/power/solar{ + id = "forestarboard"; + name = "Starboard Solar Array" + }, +/turf/open/floor/plating/airless, +/area/solars/starboard) "omZ" = ( /obj/effect/turf_decal/siding/thinplating/corner{ dir = 4 @@ -43715,6 +43716,12 @@ /obj/effect/turf_decal/tile/yellow/fourcorners, /turf/open/floor/iron/white, /area/medical/chemistry) +"ouK" = ( +/obj/machinery/computer/atmos_control/nocontrol/master{ + dir = 8 + }, +/turf/open/floor/iron, +/area/engineering/atmos) "ouR" = ( /obj/effect/spawner/structure/window/reinforced/plasma, /turf/open/floor/plating, @@ -43817,6 +43824,12 @@ }, /turf/open/floor/iron, /area/cargo/miningdock) +"own" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/oxygen_input{ + dir = 1 + }, +/turf/open/floor/engine/o2, +/area/engineering/atmos) "owr" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 @@ -43990,12 +44003,6 @@ }, /turf/open/floor/iron, /area/commons/dorms) -"oyz" = ( -/obj/effect/turf_decal/sand/plating, -/obj/machinery/power/tracker, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/solars/starboard) "oyC" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/railing, @@ -44731,6 +44738,10 @@ }, /turf/open/floor/iron/dark, /area/maintenance/radshelter/civil) +"oKU" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/solars/port/aft) "oKW" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/smooth, @@ -47894,6 +47905,12 @@ /obj/effect/spawner/random/structure/grille, /turf/open/floor/plating/airless, /area/space/nearstation) +"pPX" = ( +/obj/effect/turf_decal/sand/plating, +/obj/machinery/power/tracker, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/solars/starboard) "pQv" = ( /obj/effect/turf_decal/siding/thinplating{ dir = 4 @@ -48159,6 +48176,12 @@ }, /turf/open/floor/glass/reinforced, /area/ai_monitored/turret_protected/aisat/hallway) +"pVN" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/air_input{ + dir = 1 + }, +/turf/open/floor/engine/air, +/area/engineering/atmos) "pVU" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 8 @@ -48767,17 +48790,16 @@ /obj/item/folder/yellow, /turf/open/floor/iron, /area/hallway/secondary/exit) -"qih" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/oxygen_output{ - dir = 1 - }, -/turf/open/floor/engine/o2, -/area/engineering/atmos) "qix" = ( /obj/structure/table/wood, /obj/item/food/grown/harebell, /turf/open/floor/iron/dark, /area/service/chapel) +"qiA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, +/obj/machinery/meter/monitored/distro_loop, +/turf/open/floor/iron, +/area/engineering/atmos/pumproom) "qiG" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/trimline/neutral/filled/line{ @@ -49045,12 +49067,6 @@ }, /turf/open/floor/plating, /area/maintenance/department/security) -"qnY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/carbon_output{ - dir = 8 - }, -/turf/open/floor/engine/co2, -/area/engineering/atmos) "qoq" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/landmark/event_spawn, @@ -49137,10 +49153,6 @@ /obj/machinery/light/small/directional/north, /turf/open/floor/engine, /area/science/explab) -"qqf" = ( -/obj/machinery/air_sensor/atmos/oxygen_tank, -/turf/open/floor/engine/o2, -/area/engineering/atmos) "qqh" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -49307,16 +49319,6 @@ /obj/effect/landmark/start/botanist, /turf/open/floor/iron/dark, /area/service/hydroponics) -"qtg" = ( -/obj/machinery/computer/atmos_control/tank/mix_tank{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/iron, -/area/engineering/atmos/pumproom) "qtB" = ( /obj/effect/turf_decal/trimline/yellow/warning{ dir = 1 @@ -49628,12 +49630,6 @@ /obj/structure/chair/plastic, /turf/open/floor/iron, /area/maintenance/tram/mid) -"qBk" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/atmos/air_output{ - dir = 1 - }, -/turf/open/floor/engine/air, -/area/engineering/atmos) "qBr" = ( /obj/effect/turf_decal/trimline/blue/filled/corner{ dir = 4 @@ -49774,10 +49770,6 @@ /obj/item/radio/intercom/directional/north, /turf/open/floor/iron, /area/cargo/miningdock) -"qEY" = ( -/obj/machinery/air_sensor/atmos/nitrous_tank, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) "qFb" = ( /obj/structure/table, /obj/item/analyzer, @@ -50610,11 +50602,6 @@ /obj/structure/cable/layer3, /turf/open/floor/engine, /area/engineering/supermatter/room) -"qSr" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/space/openspace, -/area/solars/port/aft) "qSG" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 @@ -50648,11 +50635,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/catwalk_floor, /area/hallway/primary/tram/left) -"qUc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/meter/atmos/atmos_waste_loop, -/turf/closed/wall/r_wall, -/area/engineering/atmos/pumproom) "qUh" = ( /obj/effect/turf_decal/siding/thinplating, /obj/machinery/light/small/directional/west, @@ -50953,6 +50935,15 @@ /obj/machinery/firealarm/directional/west, /turf/open/floor/iron, /area/hallway/primary/central) +"qXX" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/incinerator_input{ + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) "qYa" = ( /obj/structure/table, /obj/effect/turf_decal/trimline/red/filled/line{ @@ -52964,6 +52955,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/hallway/secondary/command) +"rNI" = ( +/obj/effect/spawner/random/structure/grille, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) "rNN" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -54039,6 +54035,10 @@ /obj/structure/transit_tube, /turf/open/floor/plating, /area/engineering/transit_tube) +"sgb" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/solars/starboard) "sge" = ( /obj/structure/railing/corner{ dir = 1 @@ -54671,6 +54671,11 @@ /obj/machinery/status_display/evac/directional/north, /turf/open/floor/iron/dark, /area/command/bridge) +"sub" = ( +/obj/structure/lattice, +/obj/effect/spawner/random/structure/grille, +/turf/open/space/openspace, +/area/space/nearstation) "suc" = ( /obj/structure/table, /obj/item/paper_bin, @@ -55096,10 +55101,6 @@ }, /turf/open/floor/vault, /area/hallway/primary/tram/center) -"sAP" = ( -/obj/machinery/air_sensor/atmos/ordnance_mixing_tank, -/turf/open/floor/engine/vacuum, -/area/science/mixing/chamber) "sAV" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/neutral/filled/line{ @@ -55169,11 +55170,6 @@ /obj/machinery/newscaster/directional/west, /turf/open/floor/iron/dark, /area/commons/fitness/recreation/entertainment) -"sCF" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/space/basic, -/area/solars/port/aft) "sCR" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 8 @@ -55285,12 +55281,6 @@ /obj/structure/chair/stool/bar/directional/east, /turf/open/floor/iron, /area/security/prison) -"sFT" = ( -/obj/effect/turf_decal/sand/plating, -/obj/machinery/power/tracker, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/solars/port/aft) "sGq" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/item/radio/intercom/directional/north, @@ -55340,12 +55330,6 @@ }, /turf/open/space/openspace, /area/ai_monitored/turret_protected/ai_upload) -"sHz" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/oxygen_input{ - dir = 1 - }, -/turf/open/floor/engine/o2, -/area/engineering/atmos) "sHD" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ @@ -56132,21 +56116,15 @@ /obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/iron/grimy, /area/ai_monitored/turret_protected/aisat/foyer) -"sWu" = ( -/obj/machinery/computer/atmos_control/tank/nitrous_tank{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/engineering/atmos) "sWD" = ( /turf/closed/wall, /area/commons/vacant_room/office) +"sWT" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/ordnance_mixing_input{ + dir = 4 + }, +/turf/open/floor/engine/vacuum, +/area/science/mixing/chamber) "sXt" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -57168,12 +57146,6 @@ "tqR" = ( /turf/open/floor/iron, /area/engineering/atmos/pumproom) -"tqT" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/ordnance_mixing_input{ - dir = 4 - }, -/turf/open/floor/engine/vacuum, -/area/science/mixing/chamber) "tqW" = ( /obj/effect/turf_decal/trimline/purple/filled/line, /obj/effect/turf_decal/trimline/neutral/filled/warning, @@ -57504,10 +57476,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/service/bar) -"tyN" = ( -/obj/machinery/air_sensor/atmos/air_tank, -/turf/open/floor/engine/air, -/area/engineering/atmos) "tzc" = ( /obj/structure/grille, /obj/effect/decal/cleanable/dirt, @@ -57656,6 +57624,10 @@ /obj/effect/turf_decal/tile/blue/fourcorners, /turf/open/floor/iron/dark, /area/command/heads_quarters/cmo) +"tCp" = ( +/obj/machinery/air_sensor/mix_tank, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) "tCw" = ( /obj/effect/spawner/random/trash/mess, /obj/effect/decal/cleanable/dirt, @@ -59122,6 +59094,10 @@ /obj/structure/cable, /turf/open/floor/iron/white, /area/science/research) +"uaT" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/openspace, +/area/solars/port/aft) "uaW" = ( /obj/machinery/mass_driver/ordnance{ dir = 4 @@ -60558,6 +60534,16 @@ /obj/structure/cable, /turf/open/floor/wood/large, /area/service/library) +"uBl" = ( +/obj/machinery/computer/atmos_control/mix_tank{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/open/floor/iron, +/area/engineering/atmos/pumproom) "uBA" = ( /obj/machinery/door/airlock/maintenance_hatch{ req_one_access_txt = "12" @@ -61564,15 +61550,6 @@ }, /turf/open/floor/engine, /area/science/xenobiology) -"uWB" = ( -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "forestarboard"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plating/airless, -/area/solars/starboard) "uWD" = ( /obj/effect/turf_decal/trimline/red/filled/corner{ dir = 1 @@ -61808,6 +61785,12 @@ /obj/structure/cable, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) +"vcc" = ( +/obj/machinery/computer/atmos_control/nocontrol/ordnancemix{ + dir = 1 + }, +/turf/open/floor/iron, +/area/science/mixing) "vcn" = ( /obj/machinery/power/port_gen/pacman, /turf/open/floor/plating, @@ -61921,6 +61904,13 @@ /obj/machinery/keycard_auth/directional/east, /turf/open/floor/carpet, /area/command/heads_quarters/hos) +"vew" = ( +/obj/machinery/computer/atmos_control/air_tank{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line, +/turf/open/floor/iron, +/area/engineering/atmos) "veB" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 8 @@ -62741,15 +62731,6 @@ }, /turf/open/floor/plating, /area/command/heads_quarters/hop) -"vvr" = ( -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "portsolar"; - name = "Port Solar Array" - }, -/turf/open/floor/plating/airless, -/area/solars/port/aft) "vvu" = ( /obj/effect/turf_decal/trimline/red/filled/corner, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -63284,6 +63265,12 @@ }, /turf/open/floor/iron, /area/cargo/storage) +"vHs" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/oxygen_output{ + dir = 1 + }, +/turf/open/floor/engine/o2, +/area/engineering/atmos) "vHw" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -63455,11 +63442,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/hallway/secondary/exit) -"vKS" = ( -/obj/structure/lattice, -/obj/effect/spawner/random/structure/grille, -/turf/open/space/openspace, -/area/space/nearstation) "vKV" = ( /obj/machinery/light/small/directional/north, /obj/effect/turf_decal/trimline/neutral/filled/line{ @@ -63472,10 +63454,6 @@ }, /turf/open/floor/iron, /area/maintenance/tram/mid) -"vKY" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/solars/port/aft) "vLd" = ( /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 1 @@ -64382,6 +64360,11 @@ /obj/effect/spawner/random/engineering/flashlight, /turf/open/floor/iron/smooth, /area/maintenance/department/crew_quarters/dorms) +"weB" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space/basic, +/area/solars/port/aft) "weC" = ( /obj/machinery/camera/emp_proof{ c_tag = "Secure - Telecomms Server Room"; @@ -65218,12 +65201,6 @@ /obj/machinery/vending/coffee, /turf/open/floor/iron, /area/hallway/primary/tram/center) -"wux" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/mix_output{ - dir = 8 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) "wuy" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/stripes/line{ @@ -65956,11 +65933,6 @@ /obj/machinery/light/small/directional/west, /turf/open/floor/engine, /area/maintenance/disposal/incinerator) -"wFL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, -/obj/machinery/meter/atmos/atmos_waste_loop, -/turf/open/floor/iron, -/area/engineering/atmos/pumproom) "wFO" = ( /obj/machinery/door/airlock/engineering{ name = "Power Access Hatch"; @@ -66661,6 +66633,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/catwalk_floor, /area/maintenance/central/greater) +"wTE" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/plasma_input{ + dir = 8 + }, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) "wTM" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 8 @@ -66672,6 +66650,12 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/security/checkpoint/medical) +"wUc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/monitored/air_output{ + dir = 1 + }, +/turf/open/floor/engine/air, +/area/engineering/atmos) "wUd" = ( /obj/machinery/atmospherics/components/trinary/filter{ dir = 8 @@ -67383,6 +67367,10 @@ /obj/structure/cable, /turf/open/floor/iron, /area/hallway/primary/tram/center) +"xih" = ( +/obj/machinery/air_sensor/air_tank, +/turf/open/floor/engine/air, +/area/engineering/atmos) "xim" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, /turf/open/floor/iron, @@ -67494,10 +67482,6 @@ }, /turf/open/floor/iron, /area/engineering/atmos) -"xkt" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/solars/starboard) "xkv" = ( /turf/closed/wall, /area/security/brig) @@ -70038,13 +70022,6 @@ }, /turf/open/floor/iron, /area/commons/fitness/recreation) -"ybU" = ( -/obj/machinery/computer/atmos_control/incinerator{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/iron, -/area/maintenance/disposal/incinerator) "ybW" = ( /obj/effect/turf_decal/trimline/yellow/filled/corner, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -70165,6 +70142,17 @@ }, /turf/open/floor/iron, /area/science/research) +"yeN" = ( +/obj/machinery/air_sensor/incinerator_tank{ + pixel_x = -32; + pixel_y = -32 + }, +/obj/machinery/igniter{ + id = "Incinerator" + }, +/obj/structure/cable/layer1, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) "yeO" = ( /turf/closed/wall/r_wall, /area/security/checkpoint/supply) @@ -70259,6 +70247,12 @@ }, /turf/open/floor/plating, /area/hallway/primary/central) +"yga" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/mix_output{ + dir = 8 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) "ygb" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, @@ -103952,7 +103946,7 @@ pNw mPu iok aPr -cMz +nyA mzN mzN iCR @@ -104205,11 +104199,11 @@ kdy tnL tnL wcU -hXD +bnm tOl jwD ntZ -fJy +mRK xPD usv iCR @@ -104466,7 +104460,7 @@ uKH gfg bNm pEV -hEH +hMl mzN hMd iCR @@ -104980,7 +104974,7 @@ gSr mPu iok aPr -sHz +own aSh aSh iCR @@ -105217,13 +105211,13 @@ dxG qKu vFr jce -hnL +eFN tpU pTE fXj -euO +opw ayl -bFU +atx vaX vaX oRa @@ -105233,11 +105227,11 @@ cuV pIQ cuV wcU -jyY +dtF tOl jwD ntZ -qqf +jot lpr rLX iCR @@ -105472,7 +105466,7 @@ bIu qKu dxG vIv -wFL +qiA tqR uLV mjU @@ -105494,7 +105488,7 @@ iFE gfg bNm pEV -qih +vHs aSh nGf iCR @@ -105720,7 +105714,7 @@ fgP dUF gxX fYx -aEi +ouK fJG one khK @@ -105740,7 +105734,7 @@ oBQ vaX vaX vaX -bFU +atx qIE pTY xim @@ -106008,7 +106002,7 @@ qAv wsh vCI fhh -moi +pVN che che iCR @@ -106261,11 +106255,11 @@ bDu wsP ggU ggU -bUp +vew tOl jwD ntZ -tyN +xih gWm oxX iCR @@ -106522,7 +106516,7 @@ dGw gfg bNm nMl -qBk +wUc che xFU iCR @@ -106759,19 +106753,19 @@ fPV qKu vFu xJc -qtg +uBl pwl pTE xsu -sWu +daH xyV xFM tgv -fTg +hou sRn vOX luc -mxE +liF hmp glg shE @@ -107014,7 +107008,7 @@ fhZ ooY fPV qKu -qUc +jnf epZ pTE jAr @@ -107786,21 +107780,21 @@ ooY fPV cZZ qKu -wux -cNX -lQy +yga +tCp +bXt iCR -ejF -qEY -jqa +gGm +gpe +kGD iCR -bzF -nEN -omu +mJG +gYd +wTE iCR -qnY -nfp -hUe +ljt +isS +hKI one kZV lKA @@ -109348,7 +109342,7 @@ bya eVb ekB poj -ybU +dht dJL wFG cGO @@ -109609,7 +109603,7 @@ yge jrI dgA prU -odK +yeN viQ lxL wWA @@ -109866,7 +109860,7 @@ xDJ cGO kJk cGO -bht +qXX yak yak bVr @@ -110523,7 +110517,7 @@ ajc ajc uwO jwD -jxr +hnE jwD jwD jwD @@ -110780,7 +110774,7 @@ ajc ajc ajc ajc -jxr +hnE ajc ajc ajc @@ -111037,7 +111031,7 @@ ajc ajc ajc ajc -jxr +hnE ajc ajc dDG @@ -111294,7 +111288,7 @@ ajc ajc ajc ajc -jxr +hnE ajc ajc unm @@ -111551,12 +111545,12 @@ ajc ajc ajc ajc -jxr +hnE ajc ajc -xkt +sgb jwD -aDX +kvh jwD unm dDG @@ -111808,12 +111802,12 @@ ajc ajc ajc ajc -jxr +hnE ajc ajc -xkt +sgb jwD -aDX +kvh jwD ajc ajc @@ -112065,12 +112059,12 @@ ajc ajc ajc ajc -jxr +hnE ajc ajc -xkt +sgb jwD -aDX +kvh jwD ajc ajc @@ -112322,12 +112316,12 @@ ajc ajc ajc ajc -jxr +hnE ajc ajc -xkt +sgb jwD -aDX +kvh jwD ajc ajc @@ -112579,12 +112573,12 @@ ajc ajc ajc ajc -jxr +hnE ajc ajc -xkt +sgb jwD -aDX +kvh jwD ajc ajc @@ -112836,12 +112830,12 @@ ajc ajc ajc ajc -jxr +hnE ajc ajc -xkt +sgb jwD -xkt +sgb jwD ajc ajc @@ -113093,12 +113087,12 @@ ajc ajc ajc ajc -jxr +hnE ajc ajc -xkt +sgb jwD -xkt +sgb jwD ajc ajc @@ -113350,21 +113344,21 @@ ajc ajc ajc ajc -jxr +hnE jwD jwD -xkt +sgb jwD -xkt +sgb jwD -jxr -jxr -jxr -jxr -jxr -jxr -jxr -jxr +hnE +hnE +hnE +hnE +hnE +hnE +hnE +hnE jwD dDG dDG @@ -113607,12 +113601,12 @@ ajc ajc ajc ajc -jxr +hnE ajc ajc -xkt +sgb jwD -xkt +sgb jwD ajc ajc @@ -113621,7 +113615,7 @@ ajc ajc ajc ajc -jxr +hnE ajc ajc dDG @@ -113864,12 +113858,12 @@ ajc ajc ajc ajc -jxr +hnE ajc ajc -xkt +sgb jwD -aDX +kvh jwD ajc ajc @@ -113878,7 +113872,7 @@ ajc ajc ajc ajc -jxr +hnE ajc ajc dDG @@ -114121,13 +114115,13 @@ ajc ajc ajc ajc -jxr +hnE jwD -uWB -xkt -uWB -aDX -uWB +omN +sgb +omN +kvh +omN ajc ajc ajc @@ -114135,7 +114129,7 @@ ajc ajc ajc ajc -jxr +hnE ajc ajc unm @@ -114378,21 +114372,21 @@ ajc ajc ajc ajc -jxr +hnE ajc -uWB -xkt -uWB -aDX -uWB +omN +sgb +omN +kvh +omN jwD jwD -xkt -xkt -xkt +sgb +sgb +sgb ajc ajc -jxr +hnE ajc ajc ajc @@ -114635,21 +114629,21 @@ ajc ajc ajc ajc -jxr +hnE jwD -uWB -aDX -xkt -xkt -aDX -aDX -aDX -aDX -oyz -xkt +omN +kvh +sgb +sgb +kvh +kvh +kvh +kvh +pPX +sgb ajc ajc -jxr +hnE ajc ajc ajc @@ -114892,21 +114886,21 @@ ajc ajc ajc ajc -jxr +hnE ajc -uWB -xkt -uWB -xkt -uWB +omN +sgb +omN +sgb +omN ajc ajc -xkt -aDX -xkt +sgb +kvh +sgb ajc ajc -jxr +hnE ajc ajc ajc @@ -115149,21 +115143,21 @@ ajc ajc ajc ajc -jxr +hnE jwD -uWB -xkt -uWB -xkt -aDX -uWB +omN +sgb +omN +sgb +kvh +omN ajc ajc -aDX +kvh jwD ajc ajc -jxr +hnE ajc ajc ajc @@ -115406,21 +115400,21 @@ ajc ajc ajc ajc -jxr +hnE ajc -uWB -xkt -uWB -uWB -xkt -aDX -uWB +omN +sgb +omN +omN +sgb +kvh +omN ajc -xkt +sgb jwD ajc ajc -jxr +hnE ajc ajc ajc @@ -115663,19 +115657,19 @@ ajc ajc ajc ajc -jxr +hnE jwD -uWB -aDX -xkt -uWB -uWB -xkt -aDX -uWB -aDX -uWB -uWB +omN +kvh +sgb +omN +omN +sgb +kvh +omN +kvh +omN +omN jwD jwD jwD @@ -115920,27 +115914,27 @@ ajc ajc ajc ajc -jxr +hnE ajc ajc -uWB -aDX -xkt -uWB -uWB -xkt -xkt -xkt -xkt -aDX -aDX -aDX -aDX -xkt -xkt -aDX -aDX -aDX +omN +kvh +sgb +omN +omN +sgb +sgb +sgb +sgb +kvh +kvh +kvh +kvh +sgb +sgb +kvh +kvh +kvh wgT dDG dDG @@ -116177,19 +116171,19 @@ ajc ajc ajc ajc -jxr +hnE ajc ajc ajc -uWB -aDX -xkt -uWB -uWB -uWB -aDX -uWB -uWB +omN +kvh +sgb +omN +omN +omN +kvh +omN +omN jwD jwD jwD @@ -116434,27 +116428,27 @@ ajc ajc ajc ajc -jxr -jxr +hnE +hnE ajc ajc ajc -uWB -aDX -xkt -xkt -xkt -aDX -xkt -xkt -xkt -xkt -xkt -xkt -xkt -xkt -xkt -xkt +omN +kvh +sgb +sgb +sgb +kvh +sgb +sgb +sgb +sgb +sgb +sgb +sgb +sgb +sgb +sgb unm dDG dDG @@ -116692,18 +116686,18 @@ ajc ajc ajc ajc -jxr -jxr +hnE +hnE ajc ajc ajc -uWB -uWB -uWB -uWB -uWB -uWB -uWB +omN +omN +omN +omN +omN +omN +omN ajc jwD ajc @@ -116950,8 +116944,8 @@ ajc ajc ajc ajc -jxr -jxr +hnE +hnE ajc ajc jwD @@ -117037,8 +117031,8 @@ lgh kbJ neU eUU -sAP -tqT +eCI +sWT uKp yaF jCN @@ -117208,25 +117202,25 @@ ajc ajc ajc ajc -jxr -jxr -jxr -jxr -jxr -jxr -jxr -dEM -jxr -jxr -jxr -jxr -jxr -jxr -jxr -jxr -jxr -jxr -jxr +hnE +hnE +hnE +hnE +hnE +hnE +hnE +rNI +hnE +hnE +hnE +hnE +hnE +hnE +hnE +hnE +hnE +hnE +hnE jwD unm dDG @@ -117291,7 +117285,7 @@ egF cgy uIB jys -dSz +vcc neU gIF xJw @@ -118579,7 +118573,7 @@ igr qnj mqO qTI -jDt +eCv cZl qKu fhZ @@ -155098,23 +155092,23 @@ dDG dDG dDG dDG -vKS -vKS -vKS -vKS -vKS -vKS -vKS -vKS -vKS -vKS -vKS -vKS -vKS -vKS -vKS -vKS -vKS +sub +sub +sub +sub +sub +sub +sub +sub +sub +sub +sub +sub +sub +sub +sub +sub +sub jwD uwO aYr @@ -156648,15 +156642,15 @@ jwD jwD jwD jwD -vvr -cCq -vvr -cCq -vvr -cCq -vvr +jKT +uaT +jKT +uaT +jKT +uaT +jKT gNY -vKS +sub gNY uwO aYr @@ -156905,15 +156899,15 @@ ajc ajc ajc ajc -vvr -cCq -vvr -cCq -vvr -cCq -vvr +jKT +uaT +jKT +uaT +jKT +uaT +jKT aYr -vKS +sub aYr aYr aYr @@ -157162,15 +157156,15 @@ jwD jwD jwD jwD -vvr -cCq -vvr -cCq -vvr -cCq -vvr +jKT +uaT +jKT +uaT +jKT +uaT +jKT gNY -vKS +sub aYr aYr aYr @@ -157413,21 +157407,21 @@ dDG dDG wgT wgT -sCF -sCF -sCF -sCF -sCF -vKY -cCq -cCq -qSr -qSr -qSr -cCq -qSr +weB +weB +weB +weB +weB +oKU +uaT +uaT +mxQ +mxQ +mxQ +uaT +mxQ aYr -vKS +sub aYr aYr aYr @@ -157676,15 +157670,15 @@ dDG jwD jwD jwD -vvr -cCq -vvr -qSr -vvr -cCq -vvr +jKT +uaT +jKT +mxQ +jKT +uaT +jKT gNY -vKS +sub aYr aYr aYr @@ -157933,15 +157927,15 @@ dDG ajc ajc ajc -vvr -cCq -vvr -qSr -vvr -cCq -vvr +jKT +uaT +jKT +mxQ +jKT +uaT +jKT aYr -vKS +sub aYr aYr aYr @@ -158190,15 +158184,15 @@ unm jwD jwD jwD -vvr -cCq -vvr -qSr -vvr -cCq -vvr +jKT +uaT +jKT +mxQ +jKT +uaT +jKT aYr -vKS +sub aYr aYr aYr @@ -158450,12 +158444,12 @@ ajc jwD ajc aYr -qSr +mxQ aYr aYr gNY aYr -vKS +sub aYr aYr aYr @@ -158707,7 +158701,7 @@ ajc ajc ajc ajc -sFT +fPW ajc ajc ajc @@ -158964,12 +158958,12 @@ ajc jwD ajc aYr -qSr +mxQ aYr aYr gNY aYr -vKS +sub aYr aYr aYr @@ -159218,15 +159212,15 @@ dDG dDG jwD jwD -vvr -vKY -vvr -qSr -vvr -cCq -vvr +jKT +oKU +jKT +mxQ +jKT +uaT +jKT aYr -vKS +sub aYr aYr aYr @@ -159475,15 +159469,15 @@ dDG dDG ajc ajc -vvr -vKY -vvr -cCq -vvr -cCq -vvr +jKT +oKU +jKT +uaT +jKT +uaT +jKT aYr -vKS +sub aYr aYr aYr @@ -159732,15 +159726,15 @@ dDG dDG ajc ajc -vvr -vKY -vvr -cCq -vvr -cCq -vvr +jKT +oKU +jKT +uaT +jKT +uaT +jKT gNY -vKS +sub aYr aYr aYr @@ -159988,16 +159982,16 @@ aRN wgT wgT wgT -vKY -vKY -sCF -vKY -qSr -qSr -qSr -qSr +oKU +oKU +weB +oKU +mxQ +mxQ +mxQ +mxQ aYr -vKS +sub aYr aYr aYr @@ -160248,13 +160242,13 @@ dDG ajc ajc ajc -vvr -cCq -vvr -cCq -vvr +jKT +uaT +jKT +uaT +jKT gNY -vKS +sub aYr aYr aYr @@ -160505,13 +160499,13 @@ dDG ajc ajc ajc -vvr -cCq -vvr -cCq -vvr +jKT +uaT +jKT +uaT +jKT aYr -vKS +sub aYr aYr aYr @@ -160762,13 +160756,13 @@ dDG unm jwD jwD -vvr -vKY -vvr -cCq -vvr +jKT +oKU +jKT +uaT +jKT aYr -vKS +sub aYr aYr aYr @@ -161025,7 +161019,7 @@ aYr aYr gNY aYr -vKS +sub aYr aYr aYr @@ -161275,14 +161269,14 @@ dDG dDG dDG unm -jxr -jxr -jxr -vKS -vKS -vKS -vKS -vKS +hnE +hnE +hnE +sub +sub +sub +sub +sub gNY uwO aYr @@ -183104,7 +183098,7 @@ der dhe dhe ubz -lOW +nYz rkq gJJ lmp diff --git a/code/__DEFINES/atmospherics/atmos_mapping_helpers.dm b/code/__DEFINES/atmospherics/atmos_mapping_helpers.dm index 75ad188d8de..94517b21795 100644 --- a/code/__DEFINES/atmospherics/atmos_mapping_helpers.dm +++ b/code/__DEFINES/atmospherics/atmos_mapping_helpers.dm @@ -44,106 +44,6 @@ #define LAVALAND_DEFAULT_ATMOS "LAVALAND_ATMOS" #define ICEMOON_DEFAULT_ATMOS "ICEMOON_ATMOS" -//ATMOSIA GAS MONITOR TAGS -#define ATMOS_GAS_MONITOR_INPUT_O2 "o2_in" -#define ATMOS_GAS_MONITOR_OUTPUT_O2 "o2_out" -#define ATMOS_GAS_MONITOR_SENSOR_O2 "o2_sensor" - -#define ATMOS_GAS_MONITOR_INPUT_PLAS "plas_in" -#define ATMOS_GAS_MONITOR_OUTPUT_PLAS "plas_out" -#define ATMOS_GAS_MONITOR_SENSOR_PLAS "plas_sensor" - -#define ATMOS_GAS_MONITOR_INPUT_AIR "air_in" -#define ATMOS_GAS_MONITOR_OUTPUT_AIR "air_out" -#define ATMOS_GAS_MONITOR_SENSOR_AIR "air_sensor" - -#define ATMOS_GAS_MONITOR_INPUT_MIX "mix_in" -#define ATMOS_GAS_MONITOR_OUTPUT_MIX "mix_out" -#define ATMOS_GAS_MONITOR_SENSOR_MIX "mix_sensor" - -#define ATMOS_GAS_MONITOR_INPUT_N2O "n2o_in" -#define ATMOS_GAS_MONITOR_OUTPUT_N2O "n2o_out" -#define ATMOS_GAS_MONITOR_SENSOR_N2O "n2o_sensor" - -#define ATMOS_GAS_MONITOR_INPUT_N2 "n2_in" -#define ATMOS_GAS_MONITOR_OUTPUT_N2 "n2_out" -#define ATMOS_GAS_MONITOR_SENSOR_N2 "n2_sensor" - -#define ATMOS_GAS_MONITOR_INPUT_CO2 "co2_in" -#define ATMOS_GAS_MONITOR_OUTPUT_CO2 "co2_out" -#define ATMOS_GAS_MONITOR_SENSOR_CO2 "co2_sensor" - -#define ATMOS_GAS_MONITOR_INPUT_BZ "bz_in" -#define ATMOS_GAS_MONITOR_OUTPUT_BZ "bz_out" -#define ATMOS_GAS_MONITOR_SENSOR_BZ "bz_sensor" - -#define ATMOS_GAS_MONITOR_INPUT_FREON "freon_in" -#define ATMOS_GAS_MONITOR_OUTPUT_FREON "freon_out" -#define ATMOS_GAS_MONITOR_SENSOR_FREON "freon_sensor" - -#define ATMOS_GAS_MONITOR_INPUT_HALON "halon_in" -#define ATMOS_GAS_MONITOR_OUTPUT_HALON "halon_out" -#define ATMOS_GAS_MONITOR_SENSOR_HALON "halon_sensor" - -#define ATMOS_GAS_MONITOR_INPUT_HEALIUM "healium_in" -#define ATMOS_GAS_MONITOR_OUTPUT_HEALIUM "healium_out" -#define ATMOS_GAS_MONITOR_SENSOR_HEALIUM "healium_sensor" - -#define ATMOS_GAS_MONITOR_INPUT_H2 "h2_in" -#define ATMOS_GAS_MONITOR_OUTPUT_H2 "h2_out" -#define ATMOS_GAS_MONITOR_SENSOR_H2 "h2_sensor" - -#define ATMOS_GAS_MONITOR_INPUT_HYPERNOBLIUM "hypernoblium_in" -#define ATMOS_GAS_MONITOR_OUTPUT_HYPERNOBLIUM "hypernoblium_out" -#define ATMOS_GAS_MONITOR_SENSOR_HYPERNOBLIUM "hypernoblium_sensor" - -#define ATMOS_GAS_MONITOR_INPUT_MIASMA "miasma_in" -#define ATMOS_GAS_MONITOR_OUTPUT_MIASMA "miasma_out" -#define ATMOS_GAS_MONITOR_SENSOR_MIASMA "miasma_sensor" - -#define ATMOS_GAS_MONITOR_INPUT_NITRIUM "nitrium_in" -#define ATMOS_GAS_MONITOR_OUTPUT_NITRIUM "nitrium_out" -#define ATMOS_GAS_MONITOR_SENSOR_NITRIUM "nitrium_sensor" - -#define ATMOS_GAS_MONITOR_INPUT_PLUOXIUM "pluoxium_in" -#define ATMOS_GAS_MONITOR_OUTPUT_PLUOXIUM "pluoxium_out" -#define ATMOS_GAS_MONITOR_SENSOR_PLUOXIUM "pluoxium_sensor" - -#define ATMOS_GAS_MONITOR_INPUT_PROTO_NITRATE "proto-nitrate_in" -#define ATMOS_GAS_MONITOR_OUTPUT_PROTO_NITRATE "proto-nitrate_out" -#define ATMOS_GAS_MONITOR_SENSOR_PROTO_NITRATE "proto-nitrate_sensor" - -#define ATMOS_GAS_MONITOR_INPUT_TRITIUM "tritium_in" -#define ATMOS_GAS_MONITOR_OUTPUT_TRITIUM "tritium_out" -#define ATMOS_GAS_MONITOR_SENSOR_TRITIUM "tritium_sensor" - -#define ATMOS_GAS_MONITOR_INPUT_H2O "h2o_in" -#define ATMOS_GAS_MONITOR_OUTPUT_H2O "h2o_out" -#define ATMOS_GAS_MONITOR_SENSOR_H2O "h2o_sensor" - -#define ATMOS_GAS_MONITOR_INPUT_ZAUKER "zauker_in" -#define ATMOS_GAS_MONITOR_OUTPUT_ZAUKER "zauker_out" -#define ATMOS_GAS_MONITOR_SENSOR_ZAUKER "zauker_sensor" - -#define ATMOS_GAS_MONITOR_INPUT_HELIUM "helium_in" -#define ATMOS_GAS_MONITOR_OUTPUT_HELIUM "helium_out" -#define ATMOS_GAS_MONITOR_SENSOR_HELIUM "helium_sensor" - -#define ATMOS_GAS_MONITOR_INPUT_ANTINOBLIUM "antinoblium_in" -#define ATMOS_GAS_MONITOR_OUTPUT_ANTINOBLIUM "antinoblium_out" -#define ATMOS_GAS_MONITOR_SENSOR_ANTINOBLIUM "antinoblium_sensor" - -#define ATMOS_GAS_MONITOR_INPUT_INCINERATOR "incinerator_in" -#define ATMOS_GAS_MONITOR_OUTPUT_INCINERATOR "incinerator_out" -#define ATMOS_GAS_MONITOR_SENSOR_INCINERATOR "incinerator_sensor" - -#define ATMOS_GAS_MONITOR_INPUT_ORDNANCE_LAB "ordnancelab_in" -#define ATMOS_GAS_MONITOR_OUTPUT_ORDNANCE_LAB "ordnancelab_out" -#define ATMOS_GAS_MONITOR_SENSOR_ORDNANCE_LAB "ordnancelab_sensor" - -#define ATMOS_GAS_MONITOR_LOOP_DISTRIBUTION "distro-loop_meter" -#define ATMOS_GAS_MONITOR_LOOP_ATMOS_WASTE "atmos-waste_loop_meter" - //AIRLOCK CONTROLLER TAGS //RnD ordnance burn chamber diff --git a/code/__HELPERS/atmospherics.dm b/code/__HELPERS/atmospherics.dm index 9041e1cbec2..331cc437113 100644 --- a/code/__HELPERS/atmospherics.dm +++ b/code/__HELPERS/atmospherics.dm @@ -12,32 +12,49 @@ * - gasmix: [/datum/gas_mixture] * - name: String used to name the list, optional. * Returns: A list parsed_gasmixes with the following structure: - * - parsed_gasmixes - Assoc List - * -- Key: name Value: String Desc: Gasmix Name - * -- Key: temperature Value: Number Desc: Temperature in kelvins - * -- Key: volume Value: Number Desc: Volume in liters - * -- Key: pressure Value: Number Desc: Pressure in kPa - * -- Key: ref Value: Text Desc: The reference for the instantiated gasmix. - * -- Key: gases Value: Assoc list Desc: List of gasses in our gasmix - * --- Key: gas_name Value: Gas Mole Desc: Gas Name - Gas Amount pair + * - parsed_gasmixes Value: Assoc List Desc: The thing we return + * -- Key: name Value: String Desc: Gasmix Name + * -- Key: temperature Value: Number Desc: Temperature in kelvins + * -- Key: volume Value: Number Desc: Volume in liters + * -- Key: pressure Value: Number Desc: Pressure in kPa + * -- Key: ref Value: String Desc: The reference for the instantiated gasmix. + * -- Key: gases Value: Numbered list Desc: List of gasses in our gasmix + * --- Key: 1 Value: String Desc: gas id var from the gas + * --- Key: 2 Value: String Desc: Human readable gas name. + * --- Key: 3 Value: Number Desc: Mol amount of the gas. + * -- Key: gases Value: Numbered list Desc: Assoc list of reactions that occur inside. + * --- Key: 1 Value: String Desc: reaction id var from the gas. + * --- Key: 2 Value: String Desc: Human readable reaction name. + * --- Key: 3 Value: Number Desc: The number associated with the reaction. * Returned list should always be filled with keys even if value are nulls. */ /proc/gas_mixture_parser(datum/gas_mixture/gasmix, name) . = list( "gases" = list(), + "reactions" = list(), "name" = name, "total_moles" = null, "temperature" = null, "volume"= null, "pressure"= null, - "ref" = null, - ) + "reference" = null, + ) if(!gasmix) return - for(var/gas_id in gasmix.gases) - .["gases"][gasmix.gases[gas_id][GAS_META][META_GAS_NAME]] = gasmix.gases[gas_id][MOLES] + for(var/gas_path in gasmix.gases) + .["gases"] += list(list( + gasmix.gases[gas_path][GAS_META][META_GAS_ID], + gasmix.gases[gas_path][GAS_META][META_GAS_NAME], + gasmix.gases[gas_path][MOLES], + )) + for(var/datum/gas_reaction/reaction_result as anything in gasmix.reaction_results) + .["reactions"] += list(list( + initial(reaction_result.id), + initial(reaction_result.name), + gasmix.reaction_results[reaction_result], + )) .["total_moles"] = gasmix.total_moles() .["temperature"] = gasmix.temperature .["volume"] = gasmix.volume .["pressure"] = gasmix.return_pressure() - .["ref"] = REF(gasmix) + .["reference"] = REF(gasmix) diff --git a/code/game/machinery/computer/atmos_computers/__identifiers.dm b/code/game/machinery/computer/atmos_computers/__identifiers.dm new file mode 100644 index 00000000000..3a8bfa5322c --- /dev/null +++ b/code/game/machinery/computer/atmos_computers/__identifiers.dm @@ -0,0 +1,61 @@ +// ATMOSIA GAS MONITOR SUITE TAGS +// Things that use these include atmos control monitors, sensors, inputs, and outlets. +// They last three adds _sensor, _in, and _out respectively to the id_tag variable. +// Dont put underscores here, we use them as delimiters. + +#define ATMOS_GAS_MONITOR_O2 "o2" +#define ATMOS_GAS_MONITOR_PLAS "plas" +#define ATMOS_GAS_MONITOR_AIR "air" +#define ATMOS_GAS_MONITOR_MIX "mix" +#define ATMOS_GAS_MONITOR_N2O "n2o" +#define ATMOS_GAS_MONITOR_N2 "n2" +#define ATMOS_GAS_MONITOR_CO2 "co2" +#define ATMOS_GAS_MONITOR_BZ "bz" +#define ATMOS_GAS_MONITOR_FREON "freon" +#define ATMOS_GAS_MONITOR_HALON "halon" +#define ATMOS_GAS_MONITOR_HEALIUM "healium" +#define ATMOS_GAS_MONITOR_H2 "h2" +#define ATMOS_GAS_MONITOR_HYPERNOBLIUM "hypernoblium" +#define ATMOS_GAS_MONITOR_MIASMA "miasma" +#define ATMOS_GAS_MONITOR_NITRIUM "nitrium" +#define ATMOS_GAS_MONITOR_PLUOXIUM "pluoxium" +#define ATMOS_GAS_MONITOR_PROTO_NITRATE "proto-nitrate" +#define ATMOS_GAS_MONITOR_TRITIUM "tritium" +#define ATMOS_GAS_MONITOR_H2O "h2o" +#define ATMOS_GAS_MONITOR_ZAUKER "zauker" +#define ATMOS_GAS_MONITOR_HELIUM "helium" +#define ATMOS_GAS_MONITOR_ANTINOBLIUM "antinoblium" +#define ATMOS_GAS_MONITOR_INCINERATOR "incinerator" +#define ATMOS_GAS_MONITOR_ORDNANCE_LAB "ordnancelab" +#define ATMOS_GAS_MONITOR_DISTRO "distro" +#define ATMOS_GAS_MONITOR_WASTE "waste" + +// Human-readble names of these funny tags. +GLOBAL_LIST_INIT(station_gas_chambers, list( + ATMOS_GAS_MONITOR_O2 = "Oxygen Supply", + ATMOS_GAS_MONITOR_PLAS = "Plasma Supply", + ATMOS_GAS_MONITOR_AIR = "Mixed Air Supply", + ATMOS_GAS_MONITOR_N2O = "Nitrous Oxide Supply", + ATMOS_GAS_MONITOR_N2 = "Nitrogen Supply", + ATMOS_GAS_MONITOR_CO2 = "Carbon Dioxide Supply", + ATMOS_GAS_MONITOR_BZ = "BZ Supply", + ATMOS_GAS_MONITOR_FREON = "Freon Supply", + ATMOS_GAS_MONITOR_HALON = "Halon Supply", + ATMOS_GAS_MONITOR_HEALIUM = "Healium Supply", + ATMOS_GAS_MONITOR_H2 = "Hydrogen Supply", + ATMOS_GAS_MONITOR_HYPERNOBLIUM = "Hypernoblium Supply", + ATMOS_GAS_MONITOR_MIASMA = "Miasma Supply", + ATMOS_GAS_MONITOR_NITRIUM = "Nitrium Supply", + ATMOS_GAS_MONITOR_PLUOXIUM = "Pluoxium Supply", + ATMOS_GAS_MONITOR_PROTO_NITRATE = "Proto-Nitrate Supply", + ATMOS_GAS_MONITOR_TRITIUM = "Tritium Supply", + ATMOS_GAS_MONITOR_H2O = "Water Vapor Supply", + ATMOS_GAS_MONITOR_ZAUKER = "Zauker Supply", + ATMOS_GAS_MONITOR_HELIUM = "Helium Supply", + ATMOS_GAS_MONITOR_ANTINOBLIUM = "Antinoblium Supply", + ATMOS_GAS_MONITOR_MIX = "Mix Chamber", + ATMOS_GAS_MONITOR_INCINERATOR = "Incinerator Chamber", + ATMOS_GAS_MONITOR_ORDNANCE_LAB = "Ordnance Chamber", + ATMOS_GAS_MONITOR_DISTRO = "Distribution Loop", + ATMOS_GAS_MONITOR_WASTE = "Waste Loop", +)) diff --git a/code/game/machinery/computer/atmos_computers/_air_sensor.dm b/code/game/machinery/computer/atmos_computers/_air_sensor.dm new file mode 100644 index 00000000000..72a3df3153e --- /dev/null +++ b/code/game/machinery/computer/atmos_computers/_air_sensor.dm @@ -0,0 +1,53 @@ +/// Gas tank air sensor. +/// These always hook to monitors, be mindful of them +/obj/machinery/air_sensor + name = "gas sensor" + icon = 'icons/obj/stationobjs.dmi' + icon_state = "gsensor1" + resistance_flags = FIRE_PROOF + + var/on = TRUE + + var/frequency = FREQ_ATMOS_STORAGE + var/datum/radio_frequency/radio_connection + + /// The unique string that represents which atmos chamber to associate with. + var/chamber_id + +/obj/machinery/air_sensor/Initialize(mapload) + id_tag = chamber_id + "_sensor" + SSair.start_processing_machine(src) + radio_connection = SSradio.add_object(src, frequency, RADIO_ATMOSIA) + return ..() + +/obj/machinery/air_sensor/Destroy() + INVOKE_ASYNC(src, .proc/broadcast_destruction, src.frequency) + SSair.stop_processing_machine(src) + SSradio.remove_object(src, frequency) + return ..() + +/obj/machinery/air_sensor/proc/broadcast_destruction(frequency) + var/datum/signal/signal = new(list( + "sigtype" = "destroyed", + "tag" = id_tag, + "timestamp" = world.time, + )) + var/datum/radio_frequency/connection = SSradio.return_frequency(frequency) + connection.post_signal(null, signal, filter = RADIO_ATMOSIA) + +/obj/machinery/air_sensor/update_icon_state() + icon_state = "gsensor[on]" + return ..() + +/obj/machinery/air_sensor/process_atmos() + if(!on) + return + + var/datum/gas_mixture/air_sample = return_air() + var/datum/signal/signal = new(list( + "sigtype" = "status", + "tag" = id_tag, + "timestamp" = world.time, + "gasmix" = gas_mixture_parser(air_sample), + )) + radio_connection.post_signal(src, signal, filter = RADIO_ATMOSIA) diff --git a/code/game/machinery/computer/atmos_computers/_atmos_control.dm b/code/game/machinery/computer/atmos_computers/_atmos_control.dm new file mode 100644 index 00000000000..1ed034872b0 --- /dev/null +++ b/code/game/machinery/computer/atmos_computers/_atmos_control.dm @@ -0,0 +1,208 @@ +///////////////////////////////////////////////////////////// +// GENERAL AIR CONTROL (a.k.a atmos computer) +///////////////////////////////////////////////////////////// +GLOBAL_LIST_EMPTY(atmos_air_controllers) + +/obj/machinery/computer/atmos_control + name = "atmospherics monitoring" + desc = "Used to monitor the station's atmospherics sensors." + icon_screen = "tank" + icon_keyboard = "atmos_key" + circuit = /obj/item/circuitboard/computer/atmos_control + light_color = LIGHT_COLOR_CYAN + + var/frequency = FREQ_ATMOS_STORAGE + var/datum/radio_frequency/radio_connection + + /// Which sensors/input/outlets do we want to listen to. + /// Assoc of list[chamber_id] = readable_chamber_name + var/list/atmos_chambers + + // The list where received signals about devices are written into. + // Assoc of list[atmos_chambers_string] + var/list/sensor_info + var/list/input_info + var/list/output_info + + /// Whether we can actually adjust the chambers or not. + var/control = TRUE + /// Whether we are allowed to reconnect. + var/reconnecting = TRUE + +/obj/machinery/computer/atmos_control/Initialize(mapload) + . = ..() + + GLOB.atmos_air_controllers += src + set_frequency(frequency) + + sensor_info = list() + input_info = list() + output_info = list() + +/obj/machinery/computer/atmos_control/Destroy() + GLOB.atmos_air_controllers -= src + SSradio.remove_object(src, frequency) + return ..() + +/obj/machinery/computer/atmos_control/receive_signal(datum/signal/signal) + if(!signal) + return + + /// The tag of the signal data should be the id_tag var of the atmos object. Format is chamber_role. + /// Where chamber is the chamber name and role is one of "sensor", "in", and "out". + var/list/tag_data = splittext(signal.data["tag"], "_") + + if(length(tag_data) < 2) + return + + if(!(tag_data[1] in atmos_chambers)) + return + + var/list/info_list + switch(tag_data[2]) + if("sensor") + info_list = sensor_info + if("in") + info_list = input_info + if("out") + info_list = output_info + else + return + + if(signal.data["sigtype"] == "status") + info_list[tag_data[1]] = signal.data + + if(signal.data["sigtype"] == "destroyed") + info_list[tag_data[1]] = null + +/obj/machinery/computer/atmos_control/proc/set_frequency(new_frequency) + SSradio.remove_object(src, frequency) + frequency = new_frequency + radio_connection = SSradio.add_object(src, frequency, RADIO_ATMOSIA) + +/// Reconnect only works for station based chambers. +/obj/machinery/computer/atmos_control/proc/reconnect(mob/user) + if(!reconnecting) + return FALSE + + // We only prompt the user with the sensors that are actually available. + var/available_devices = list() + for(var/datum/weakref/device_ref as anything in radio_connection.devices[RADIO_ATMOSIA]) + var/obj/machinery/machine = device_ref.resolve() + if(istype(machine, /obj/machinery/computer/atmos_control)) // Skip if we are a listener. Make this a list if you add devices that work similarly to this comp. + continue + var/chamber_identifier = splittext(machine.id_tag, "_")[1] + if(!GLOB.station_gas_chambers[chamber_identifier]) + continue + available_devices[GLOB.station_gas_chambers[chamber_identifier]] = chamber_identifier + + // As long as we dont put any funny chars in the strings it should match. + var/new_name = tgui_input_list(user, "Select the device set", "Reconnect", available_devices) + var/new_id = available_devices[new_name] + + if(isnull(new_id)) + return FALSE + + atmos_chambers = list() + atmos_chambers[new_id] = new_name + sensor_info = list() + input_info = list() + output_info = list() + + name = new_name + (control ? " Control" : " Monitor") + + // Ask things around us to update. + // Due to how signal datums work this is unoptimized but as long as our freq isnt terribly populated we should be fine. + // Also, we dont need to prompt sensors and meters since they already broadcast every process_atmos(). + var/datum/signal/update_request = new(list("sigtype" = "command", "user" = usr, "status" = TRUE ,"tag" = "[new_id]_in")) + radio_connection.post_signal(src, update_request, filter = RADIO_ATMOSIA) + update_request = new(list("sigtype" = "command", "user" = usr, "status" = TRUE ,"tag" = "[new_id]_out")) + radio_connection.post_signal(src, update_request, filter = RADIO_ATMOSIA) + + return TRUE + +/obj/machinery/computer/atmos_control/ui_interact(mob/user, datum/tgui/ui) + ui = SStgui.try_update_ui(user, src, ui) + if(!ui) + ui = new(user, src, "AtmosControlConsole", name) + ui.open() + +/obj/machinery/computer/atmos_control/ui_static_data(mob/user) + var/data = list() + data["maxInput"] = MAX_TRANSFER_RATE + data["maxOutput"] = MAX_OUTPUT_PRESSURE + data["control"] = control + data["reconnecting"] = reconnecting + return data + +/obj/machinery/computer/atmos_control/ui_data(mob/user) + var/data = list() + + data["chambers"] = list() + for(var/chamber_id in atmos_chambers) + var/list/chamber_info = list() + chamber_info["id"] = chamber_id + chamber_info["name"] = atmos_chambers[chamber_id] + if(sensor_info[chamber_id]) + chamber_info["gasmix"] = sensor_info[chamber_id]["gasmix"] + if(input_info[chamber_id]) + chamber_info["input_info"] = list() + chamber_info["input_info"]["active"] = input_info[chamber_id]["power"] + chamber_info["input_info"]["amount"] = input_info[chamber_id]["volume_rate"] + if(output_info[chamber_id]) + chamber_info["output_info"] = list() + chamber_info["output_info"]["active"] = output_info[chamber_id]["power"] + chamber_info["output_info"]["amount"] = output_info[chamber_id]["internal"] + data["chambers"] += list(chamber_info) + return data + +/obj/machinery/computer/atmos_control/ui_act(action, params) + . = ..() + if(. || !radio_connection || !(control || reconnecting)) + return + + var/datum/signal/signal = new(list("sigtype" = "command", "user" = usr)) + switch(action) + if("reconnect") + return reconnect(usr) + if("toggle_input") + if(!(params["chamber"] in atmos_chambers)) + return FALSE + signal.data += list("tag" = params["chamber"] + "_in", "power_toggle" = TRUE) + if("toggle_output") + if(!(params["chamber"] in atmos_chambers)) + return FALSE + signal.data += list("tag" = params["chamber"] + "_out", "power_toggle" = TRUE) + if("adjust_input") + if(!(params["chamber"] in atmos_chambers)) + return FALSE + var/target = text2num(params["rate"]) + if(isnull(target)) + return FALSE + target = clamp(target, 0, MAX_TRANSFER_RATE) + signal.data += list("tag" = params["chamber"] + "_in", "set_volume_rate" = target) + if("adjust_output") + if(!(params["chamber"] in atmos_chambers)) + return FALSE + var/target = text2num(params["rate"]) + if(isnull(target)) + return FALSE + target = clamp(target, 0, MAX_OUTPUT_PRESSURE) + signal.data += list("tag" = params["chamber"] + "_out", "set_internal_pressure" = target) + + radio_connection.post_signal(src, signal, filter = RADIO_ATMOSIA) + return TRUE + +/obj/machinery/computer/atmos_control/nocontrol + control = FALSE + circuit = /obj/item/circuitboard/computer/atmos_control/nocontrol + +/obj/machinery/computer/atmos_control/noreconnect + reconnecting = FALSE + circuit = /obj/item/circuitboard/computer/atmos_control/noreconnect + +/// Vegetable +/obj/machinery/computer/atmos_control/fixed + control = FALSE + reconnecting = FALSE + circuit = /obj/item/circuitboard/computer/atmos_control/fixed diff --git a/code/game/machinery/computer/atmos_computers/air_sensors.dm b/code/game/machinery/computer/atmos_computers/air_sensors.dm new file mode 100644 index 00000000000..429389473ee --- /dev/null +++ b/code/game/machinery/computer/atmos_computers/air_sensors.dm @@ -0,0 +1,95 @@ +/obj/machinery/air_sensor/plasma_tank + name = "plasma tank gas sensor" + chamber_id = ATMOS_GAS_MONITOR_PLAS + +/obj/machinery/air_sensor/ordnance_mixing_tank + name = "ordnance mixing gas sensor" + chamber_id = ATMOS_GAS_MONITOR_ORDNANCE_LAB + +/obj/machinery/air_sensor/oxygen_tank + name = "oxygen tank gas sensor" + chamber_id = ATMOS_GAS_MONITOR_O2 + +/obj/machinery/air_sensor/nitrogen_tank + name = "nitrogen tank gas sensor" + chamber_id = ATMOS_GAS_MONITOR_N2 + +/obj/machinery/air_sensor/mix_tank + name = "mix tank gas sensor" + chamber_id = ATMOS_GAS_MONITOR_MIX + +/obj/machinery/air_sensor/nitrous_tank + name = "nitrous oxide tank gas sensor" + chamber_id = ATMOS_GAS_MONITOR_N2O + +/obj/machinery/air_sensor/air_tank + name = "air mix tank gas sensor" + chamber_id = ATMOS_GAS_MONITOR_AIR + +/obj/machinery/air_sensor/carbon_tank + name = "carbon dioxide tank gas sensor" + chamber_id = ATMOS_GAS_MONITOR_CO2 + +/obj/machinery/air_sensor/bz_tank + name = "bz tank gas sensor" + chamber_id = ATMOS_GAS_MONITOR_BZ + +/obj/machinery/air_sensor/freon_tank + name = "freon tank gas sensor" + chamber_id = ATMOS_GAS_MONITOR_FREON + +/obj/machinery/air_sensor/halon_tank + name = "halon tank gas sensor" + chamber_id = ATMOS_GAS_MONITOR_HALON + +/obj/machinery/air_sensor/healium_tank + name = "healium tank gas sensor" + chamber_id = ATMOS_GAS_MONITOR_HEALIUM + +/obj/machinery/air_sensor/hydrogen_tank + name = "hydrogen tank gas sensor" + chamber_id = ATMOS_GAS_MONITOR_H2 + +/obj/machinery/air_sensor/hypernoblium_tank + name = "hypernoblium tank gas sensor" + chamber_id = ATMOS_GAS_MONITOR_HYPERNOBLIUM + +/obj/machinery/air_sensor/miasma_tank + name = "miasma tank gas sensor" + chamber_id = ATMOS_GAS_MONITOR_MIASMA + +/obj/machinery/air_sensor/nitrium_tank + name = "nitrium tank gas sensor" + chamber_id = ATMOS_GAS_MONITOR_NITRIUM + +/obj/machinery/air_sensor/pluoxium_tank + name = "pluoxium tank gas sensor" + chamber_id = ATMOS_GAS_MONITOR_PLUOXIUM + +/obj/machinery/air_sensor/proto_nitrate_tank + name = "proto-nitrate tank gas sensor" + chamber_id = ATMOS_GAS_MONITOR_PROTO_NITRATE + +/obj/machinery/air_sensor/tritium_tank + name = "tritium tank gas sensor" + chamber_id = ATMOS_GAS_MONITOR_TRITIUM + +/obj/machinery/air_sensor/water_vapor_tank + name = "water vapor tank gas sensor" + chamber_id = ATMOS_GAS_MONITOR_H2O + +/obj/machinery/air_sensor/zauker_tank + name = "zauker tank gas sensor" + chamber_id = ATMOS_GAS_MONITOR_ZAUKER + +/obj/machinery/air_sensor/helium_tank + name = "helium tank gas sensor" + chamber_id = ATMOS_GAS_MONITOR_HELIUM + +/obj/machinery/air_sensor/antinoblium_tank + name = "antinoblium tank gas sensor" + chamber_id = ATMOS_GAS_MONITOR_ANTINOBLIUM + +/obj/machinery/air_sensor/incinerator_tank + name = "incinerator chamber gas sensor" + chamber_id = ATMOS_GAS_MONITOR_INCINERATOR diff --git a/code/game/machinery/computer/atmos_computers/atmos_controls.dm b/code/game/machinery/computer/atmos_computers/atmos_controls.dm new file mode 100644 index 00000000000..6aa45f7c234 --- /dev/null +++ b/code/game/machinery/computer/atmos_computers/atmos_controls.dm @@ -0,0 +1,124 @@ +/obj/machinery/computer/atmos_control/nocontrol/master + name = "station atmospherics monitoring" + circuit = /obj/item/circuitboard/computer/atmos_control/nocontrol/master + atmos_chambers = list(ATMOS_GAS_MONITOR_DISTRO = "Distribution Loop", ATMOS_GAS_MONITOR_WASTE = "Waste Loop") + +/obj/machinery/computer/atmos_control/oxygen_tank + name = "Oxygen Supply Control" + circuit = /obj/item/circuitboard/computer/atmos_control/oxygen_tank + atmos_chambers = list(ATMOS_GAS_MONITOR_O2 = "Oxygen Supply") + +/obj/machinery/computer/atmos_control/plasma_tank + name = "Plasma Supply Control" + circuit = /obj/item/circuitboard/computer/atmos_control/plasma_tank + atmos_chambers = list(ATMOS_GAS_MONITOR_PLAS = "Plasma Supply") + +/obj/machinery/computer/atmos_control/air_tank + name = "Mixed Air Supply Control" + circuit = /obj/item/circuitboard/computer/atmos_control/air_tank + atmos_chambers = list(ATMOS_GAS_MONITOR_AIR = "Mixed Air Supply") + +/obj/machinery/computer/atmos_control/nitrous_tank + name = "Nitrous Oxide Supply Control" + circuit = /obj/item/circuitboard/computer/atmos_control/nitrous_tank + atmos_chambers = list(ATMOS_GAS_MONITOR_N2O = "Nitrous Oxide Supply") + +/obj/machinery/computer/atmos_control/nitrogen_tank + name = "Nitrogen Supply Control" + circuit = /obj/item/circuitboard/computer/atmos_control/nitrogen_tank + atmos_chambers = list(ATMOS_GAS_MONITOR_N2 = "Nitrogen Supply") + +/obj/machinery/computer/atmos_control/carbon_tank + name = "Carbon Dioxide Supply Control" + circuit = /obj/item/circuitboard/computer/atmos_control/carbon_tank + atmos_chambers = list(ATMOS_GAS_MONITOR_CO2 = "Carbon Dioxide Supply") + +/obj/machinery/computer/atmos_control/bz_tank + name = "BZ Supply Control" + circuit = /obj/item/circuitboard/computer/atmos_control/bz_tank + atmos_chambers = list(ATMOS_GAS_MONITOR_BZ = "BZ Supply") + +/obj/machinery/computer/atmos_control/freon_tank + name = "Freon Supply Control" + circuit = /obj/item/circuitboard/computer/atmos_control/freon_tank + atmos_chambers = list(ATMOS_GAS_MONITOR_FREON = "Freon Supply") + +/obj/machinery/computer/atmos_control/halon_tank + name = "Halon Supply Control" + circuit = /obj/item/circuitboard/computer/atmos_control/halon_tank + atmos_chambers = list(ATMOS_GAS_MONITOR_HALON = "Halon Supply") + +/obj/machinery/computer/atmos_control/healium_tank + name = "Healium Supply Control" + circuit = /obj/item/circuitboard/computer/atmos_control/healium_tank + atmos_chambers = list(ATMOS_GAS_MONITOR_HEALIUM = "Healium Supply") + +/obj/machinery/computer/atmos_control/hydrogen_tank + name = "Hydrogen Supply Control" + circuit = /obj/item/circuitboard/computer/atmos_control/hydrogen_tank + atmos_chambers = list(ATMOS_GAS_MONITOR_H2 = "Hydrogen Supply") + +/obj/machinery/computer/atmos_control/hypernoblium_tank + name = "Hypernoblium Supply Control" + circuit = /obj/item/circuitboard/computer/atmos_control/hypernoblium_tank + atmos_chambers = list(ATMOS_GAS_MONITOR_HYPERNOBLIUM = "Hypernoblium Supply") + +/obj/machinery/computer/atmos_control/miasma_tank + name = "Miasma Supply Control" + circuit = /obj/item/circuitboard/computer/atmos_control/miasma_tank + atmos_chambers = list(ATMOS_GAS_MONITOR_MIASMA = "Miasma Supply") + +/obj/machinery/computer/atmos_control/nitrium_tank + name = "Nitrium Supply Control" + circuit = /obj/item/circuitboard/computer/atmos_control/nitrium_tank + atmos_chambers = list(ATMOS_GAS_MONITOR_NITRIUM = "Nitrium Supply") + +/obj/machinery/computer/atmos_control/pluoxium_tank + name = "Pluoxium Supply Control" + circuit = /obj/item/circuitboard/computer/atmos_control/pluoxium_tank + atmos_chambers = list(ATMOS_GAS_MONITOR_PLUOXIUM = "Pluoxium Supply") + +/obj/machinery/computer/atmos_control/proto_nitrate_tank + name = "Proto-Nitrate Supply Control" + circuit = /obj/item/circuitboard/computer/atmos_control/proto_nitrate_tank + atmos_chambers = list(ATMOS_GAS_MONITOR_PROTO_NITRATE = "Proto-Nitrate Supply") + +/obj/machinery/computer/atmos_control/tritium_tank + name = "Tritium Supply Control" + circuit = /obj/item/circuitboard/computer/atmos_control/tritium_tank + atmos_chambers = list(ATMOS_GAS_MONITOR_TRITIUM = "Tritium Supply") + +/obj/machinery/computer/atmos_control/water_vapor + name = "Water Vapor Supply Control" + circuit = /obj/item/circuitboard/computer/atmos_control/water_vapor + atmos_chambers = list(ATMOS_GAS_MONITOR_H2O = "Water Vapor Supply") + +/obj/machinery/computer/atmos_control/zauker_tank + name = "Zauker Supply Control" + circuit = /obj/item/circuitboard/computer/atmos_control/zauker_tank + atmos_chambers = list(ATMOS_GAS_MONITOR_ZAUKER = "Zauker Supply") + +/obj/machinery/computer/atmos_control/helium_tank + name = "Helium Supply Control" + circuit = /obj/item/circuitboard/computer/atmos_control/helium_tank + atmos_chambers = list(ATMOS_GAS_MONITOR_HELIUM = "Helium Supply") + +/obj/machinery/computer/atmos_control/antinoblium_tank + name = "Antinoblium Supply Control" + circuit = /obj/item/circuitboard/computer/atmos_control/antinoblium_tank + atmos_chambers = list(ATMOS_GAS_MONITOR_ANTINOBLIUM = "Antinoblium Supply") + +/obj/machinery/computer/atmos_control/mix_tank + name = "Mix Chamber Control" + circuit = /obj/item/circuitboard/computer/atmos_control/mix_tank + atmos_chambers = list(ATMOS_GAS_MONITOR_MIX = "Mix Chamber") + +/obj/machinery/computer/atmos_control/nocontrol/incinerator + name = "Incinerator Chamber Monitor" + circuit = /obj/item/circuitboard/computer/atmos_control/nocontrol/incinerator + atmos_chambers = list(ATMOS_GAS_MONITOR_INCINERATOR = "Incinerator Chamber") + +/obj/machinery/computer/atmos_control/nocontrol/ordnancemix + name = "Ordnance Chamber Monitor" + circuit = /obj/item/circuitboard/computer/atmos_control/nocontrol/ordnancemix + atmos_chambers = list(ATMOS_GAS_MONITOR_ORDNANCE_LAB = "Ordnance Chamber") diff --git a/code/game/machinery/computer/atmos_computers/inlets.dm b/code/game/machinery/computer/atmos_computers/inlets.dm new file mode 100644 index 00000000000..934d128f1aa --- /dev/null +++ b/code/game/machinery/computer/atmos_computers/inlets.dm @@ -0,0 +1,166 @@ +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored + on = TRUE + volume_rate = MAX_TRANSFER_RATE + /// The unique string that represents which atmos chamber to associate with. + var/chamber_id + var/frequency = FREQ_ATMOS_STORAGE + var/datum/radio_frequency/radio_connection + +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/Initialize(mapload) + id_tag = chamber_id + "_in" + radio_connection = SSradio.add_object(src, frequency, RADIO_ATMOSIA) + return ..() + +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/atmos_init() + . = ..() + broadcast_status() + +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/Destroy() + SSradio.remove_object(src, frequency) + return ..() + +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/on_deconstruction() + . = ..() + INVOKE_ASYNC(src, .proc/broadcast_destruction, src.frequency) + +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/ui_act(action, params) + . = ..() + if(.) + broadcast_status() + +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/proc/broadcast_status() + if(!radio_connection) + return + + var/datum/signal/signal = new(list( + "tag" = id_tag, + "sigtype" = "status", + "device" = "AO", + "power" = on, + "volume_rate" = volume_rate, + "timestamp" = world.time, + )) + radio_connection.post_signal(src, signal) + +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/proc/broadcast_destruction(frequency) + var/datum/signal/signal = new(list( + "sigtype" = "destroyed", + "tag" = id_tag, + "timestamp" = world.time, + )) + var/datum/radio_frequency/connection = SSradio.return_frequency(frequency) + connection.post_signal(null, signal, filter = RADIO_ATMOSIA) + +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/receive_signal(datum/signal/signal) + if(!signal.data["tag"] || (signal.data["tag"] != id_tag) || (signal.data["sigtype"]!="command")) + return + + if("power" in signal.data) + on = text2num(signal.data["power"]) + + if("power_toggle" in signal.data) + on = !on + + if("set_volume_rate" in signal.data) + var/number = text2num(signal.data["set_volume_rate"]) + var/datum/gas_mixture/air_contents = airs[1] + volume_rate = clamp(number, 0, air_contents.volume) + + broadcast_status() + update_appearance() + +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/plasma_input + name = "plasma tank input injector" + chamber_id = ATMOS_GAS_MONITOR_PLAS + +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/oxygen_input + name = "oxygen tank input injector" + chamber_id = ATMOS_GAS_MONITOR_O2 + +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/nitrogen_input + name = "nitrogen tank input injector" + chamber_id = ATMOS_GAS_MONITOR_N2 + +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/mix_input + name = "mix tank input injector" + chamber_id = ATMOS_GAS_MONITOR_MIX + +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/nitrous_input + name = "nitrous oxide tank input injector" + chamber_id = ATMOS_GAS_MONITOR_N2O + +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/air_input + name = "air mix tank input injector" + chamber_id = ATMOS_GAS_MONITOR_AIR + +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/carbon_input + name = "carbon dioxide tank input injector" + chamber_id = ATMOS_GAS_MONITOR_CO2 + +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/bz_input + name = "bz tank input injector" + chamber_id = ATMOS_GAS_MONITOR_BZ + +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/freon_input + name = "freon tank input injector" + chamber_id = ATMOS_GAS_MONITOR_FREON + +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/halon_input + name = "halon tank input injector" + chamber_id = ATMOS_GAS_MONITOR_HALON + +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/healium_input + name = "healium tank input injector" + chamber_id = ATMOS_GAS_MONITOR_HEALIUM + +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/hydrogen_input + name = "hydrogen tank input injector" + chamber_id = ATMOS_GAS_MONITOR_H2 + +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/hypernoblium_input + name = "hypernoblium tank input injector" + chamber_id = ATMOS_GAS_MONITOR_HYPERNOBLIUM + +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/miasma_input + name = "miasma tank input injector" + chamber_id = ATMOS_GAS_MONITOR_MIASMA + +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/nitrium_input + name = "nitrium tank input injector" + chamber_id = ATMOS_GAS_MONITOR_NITRIUM + +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/pluoxium_input + name = "pluoxium tank input injector" + chamber_id = ATMOS_GAS_MONITOR_PLUOXIUM + +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/proto_nitrate_input + name = "proto-nitrate tank input injector" + chamber_id = ATMOS_GAS_MONITOR_PROTO_NITRATE + +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/tritium_input + name = "tritium tank input injector" + chamber_id = ATMOS_GAS_MONITOR_TRITIUM + +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/water_vapor_input + name = "water vapor tank input injector" + chamber_id = ATMOS_GAS_MONITOR_H2O + +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/zauker_input + name = "zauker tank input injector" + chamber_id = ATMOS_GAS_MONITOR_ZAUKER + +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/helium_input + name = "helium tank input injector" + chamber_id = ATMOS_GAS_MONITOR_HELIUM + +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/antinoblium_input + name = "antinoblium tank input injector" + chamber_id = ATMOS_GAS_MONITOR_ANTINOBLIUM + +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/incinerator_input + name = "incinerator chamber input injector" + chamber_id = ATMOS_GAS_MONITOR_INCINERATOR + +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/ordnance_mixing_input + name = "ordnance mixing input injector" + chamber_id = ATMOS_GAS_MONITOR_ORDNANCE_LAB diff --git a/code/game/machinery/computer/atmos_computers/meters.dm b/code/game/machinery/computer/atmos_computers/meters.dm new file mode 100644 index 00000000000..59100c9478d --- /dev/null +++ b/code/game/machinery/computer/atmos_computers/meters.dm @@ -0,0 +1,56 @@ +/obj/machinery/meter/monitored + /// The unique string that represents which atmos chamber to associate with. + var/chamber_id + + var/frequency = FREQ_ATMOS_STORAGE + var/datum/radio_frequency/radio_connection + +/obj/machinery/meter/monitored/Initialize() + id_tag = chamber_id + "_sensor" + radio_connection = SSradio.add_object(src, frequency, RADIO_ATMOSIA) + return ..() + +/obj/machinery/meter/monitored/Destroy() + SSradio.remove_object(src, frequency) + return ..() + +/obj/machinery/meter/monitored/on_deconstruction() + . = ..() + INVOKE_ASYNC(src, .proc/broadcast_destruction, src.frequency) + +/obj/machinery/meter/monitored/proc/broadcast_destruction(frequency) + var/datum/signal/signal = new(list( + "sigtype" = "destroyed", + "tag" = id_tag, + "timestamp" = world.time, + )) + var/datum/radio_frequency/connection = SSradio.return_frequency(frequency) + connection.post_signal(null, signal, filter = RADIO_ATMOSIA) + +/obj/machinery/meter/monitored/process_atmos() + . = ..() + if(!radio_connection) + return + + var/datum/signal/signal = new(list( + "tag" = id_tag, + "device" = "AM", + "sigtype" = "status", + "timestamp" = world.time, + "gasmix" = gas_mixture_parser(target.return_air()), + )) + radio_connection.post_signal(src, signal) + +/obj/machinery/meter/monitored/layer2 + target_layer = 2 + +/obj/machinery/meter/monitored/layer4 + target_layer = 4 + +/obj/machinery/meter/monitored/waste_loop + name = "waste loop gas flow meter" + chamber_id = ATMOS_GAS_MONITOR_WASTE + +/obj/machinery/meter/monitored/distro_loop + name = "distribution loop gas flow meter" + chamber_id = ATMOS_GAS_MONITOR_DISTRO diff --git a/code/game/machinery/computer/atmos_computers/outlets.dm b/code/game/machinery/computer/atmos_computers/outlets.dm new file mode 100644 index 00000000000..5b7dac9a176 --- /dev/null +++ b/code/game/machinery/computer/atmos_computers/outlets.dm @@ -0,0 +1,164 @@ +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored + frequency = FREQ_ATMOS_STORAGE + on = TRUE + icon_state = "vent_map_siphon_on-3" + /// The unique string that represents which atmos chamber to associate with. + var/chamber_id + +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/Initialize(mapload) + id_tag = chamber_id + "_out" + return ..() + +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/Destroy() + SSradio.remove_object(src, frequency) + return ..() + +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/on_deconstruction() + . = ..() + INVOKE_ASYNC(src, .proc/broadcast_destruction, src.frequency) + +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/set_frequency(new_frequency) + SSradio.remove_object(src, frequency) + frequency = new_frequency + if(new_frequency) + radio_connection = SSradio.add_object(src, new_frequency, RADIO_ATMOSIA) + +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/proc/broadcast_destruction(frequency) + var/datum/signal/signal = new(list( + "sigtype" = "destroyed", + "tag" = id_tag, + "timestamp" = world.time, + )) + var/datum/radio_frequency/connection = SSradio.return_frequency(frequency) + connection.post_signal(null, signal, filter = RADIO_ATMOSIA) + +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/plasma_output + name = "plasma tank output inlet" + chamber_id = ATMOS_GAS_MONITOR_PLAS + +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/oxygen_output + name = "oxygen tank output inlet" + chamber_id = ATMOS_GAS_MONITOR_O2 + +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrogen_output + name = "nitrogen tank output inlet" + chamber_id = ATMOS_GAS_MONITOR_N2 + +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/mix_output + name = "mix tank output inlet" + chamber_id = ATMOS_GAS_MONITOR_MIX + +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrous_output + name = "nitrous oxide tank output inlet" + chamber_id = ATMOS_GAS_MONITOR_N2O + +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/carbon_output + name = "carbon dioxide tank output inlet" + chamber_id = ATMOS_GAS_MONITOR_CO2 + +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/bz_output + name = "bz tank output inlet" + chamber_id = ATMOS_GAS_MONITOR_BZ + +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/freon_output + name = "freon tank output inlet" + chamber_id = ATMOS_GAS_MONITOR_FREON + +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/halon_output + name = "halon tank output inlet" + chamber_id = ATMOS_GAS_MONITOR_HALON + +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/healium_output + name = "healium tank output inlet" + chamber_id = ATMOS_GAS_MONITOR_HEALIUM + +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/hydrogen_output + name = "hydrogen tank output inlet" + chamber_id = ATMOS_GAS_MONITOR_H2 + +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/hypernoblium_output + name = "hypernoblium tank output inlet" + chamber_id = ATMOS_GAS_MONITOR_HYPERNOBLIUM + +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/miasma_output + name = "miasma tank output inlet" + chamber_id = ATMOS_GAS_MONITOR_MIASMA + +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrium_output + name = "nitrium tank output inlet" + chamber_id = ATMOS_GAS_MONITOR_NITRIUM + +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/pluoxium_output + name = "pluoxium tank output inlet" + chamber_id = ATMOS_GAS_MONITOR_PLUOXIUM + +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/proto_nitrate_output + name = "proto-nitrate tank output inlet" + chamber_id = ATMOS_GAS_MONITOR_PROTO_NITRATE + +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/tritium_output + name = "tritium tank output inlet" + chamber_id = ATMOS_GAS_MONITOR_TRITIUM + +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/water_vapor_output + name = "water vapor tank output inlet" + chamber_id = ATMOS_GAS_MONITOR_H2O + +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/zauker_output + name = "zauker tank output inlet" + chamber_id = ATMOS_GAS_MONITOR_ZAUKER + +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/helium_output + name = "helium tank output inlet" + chamber_id = ATMOS_GAS_MONITOR_HELIUM + +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/antinoblium_output + name = "antinoblium tank output inlet" + chamber_id = ATMOS_GAS_MONITOR_ANTINOBLIUM + +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/incinerator_output + name = "incinerator chamber output inlet" + chamber_id = ATMOS_GAS_MONITOR_INCINERATOR + +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/ordnance_mixing_output + name = "ordnance mixing output inlet" + chamber_id = ATMOS_GAS_MONITOR_ORDNANCE_LAB + +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/monitored + frequency = FREQ_ATMOS_STORAGE + on = TRUE + icon_state = "vent_map_siphon_on-3" + var/chamber_id + +// Same as the rest, but bigger volume. +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/monitored/Initialize(mapload) + id_tag = chamber_id + "_out" + return ..() + +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/monitored/Destroy() + INVOKE_ASYNC(src, .proc/broadcast_destruction, src.frequency) + SSradio.remove_object(src, frequency) + return ..() + +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/monitored/on_deconstruction() + . = ..() + INVOKE_ASYNC(src, .proc/broadcast_destruction, src.frequency) + +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/monitored/set_frequency(new_frequency) + SSradio.remove_object(src, frequency) + frequency = new_frequency + if(new_frequency) + radio_connection = SSradio.add_object(src, new_frequency, RADIO_ATMOSIA) + +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/monitored/proc/broadcast_destruction(frequency) + var/datum/signal/signal = new(list( + "sigtype" = "destroyed", + "tag" = id_tag, + "timestamp" = world.time, + )) + var/datum/radio_frequency/connection = SSradio.return_frequency(frequency) + connection.post_signal(null, signal, filter = RADIO_ATMOSIA) + +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/monitored/air_output + name = "air mix tank output inlet" + chamber_id = ATMOS_GAS_MONITOR_AIR diff --git a/code/game/machinery/computer/atmos_control.dm b/code/game/machinery/computer/atmos_control.dm deleted file mode 100644 index 8d522d6602d..00000000000 --- a/code/game/machinery/computer/atmos_control.dm +++ /dev/null @@ -1,494 +0,0 @@ -///////////////////////////////////////////////////////////// -// AIR SENSOR (found in gas tanks) -///////////////////////////////////////////////////////////// - -/obj/machinery/air_sensor - name = "gas sensor" - icon = 'icons/obj/stationobjs.dmi' - icon_state = "gsensor1" - resistance_flags = FIRE_PROOF - - var/on = TRUE - - var/frequency = FREQ_ATMOS_STORAGE - var/datum/radio_frequency/radio_connection - -/obj/machinery/air_sensor/atmos/plasma_tank - name = "plasma tank gas sensor" - id_tag = ATMOS_GAS_MONITOR_SENSOR_PLAS -/obj/machinery/air_sensor/atmos/ordnance_mixing_tank - name = "ordnance mixing gas sensor" - id_tag = ATMOS_GAS_MONITOR_SENSOR_ORDNANCE_LAB -/obj/machinery/air_sensor/atmos/oxygen_tank - name = "oxygen tank gas sensor" - id_tag = ATMOS_GAS_MONITOR_SENSOR_O2 -/obj/machinery/air_sensor/atmos/nitrogen_tank - name = "nitrogen tank gas sensor" - id_tag = ATMOS_GAS_MONITOR_SENSOR_N2 -/obj/machinery/air_sensor/atmos/mix_tank - name = "mix tank gas sensor" - id_tag = ATMOS_GAS_MONITOR_SENSOR_MIX -/obj/machinery/air_sensor/atmos/nitrous_tank - name = "nitrous oxide tank gas sensor" - id_tag = ATMOS_GAS_MONITOR_SENSOR_N2O -/obj/machinery/air_sensor/atmos/air_tank - name = "air mix tank gas sensor" - id_tag = ATMOS_GAS_MONITOR_SENSOR_AIR -/obj/machinery/air_sensor/atmos/carbon_tank - name = "carbon dioxide tank gas sensor" - id_tag = ATMOS_GAS_MONITOR_SENSOR_CO2 -/obj/machinery/air_sensor/atmos/bz_tank - name = "bz tank gas sensor" - id_tag = ATMOS_GAS_MONITOR_SENSOR_BZ -/obj/machinery/air_sensor/atmos/freon_tank - name = "freon tank gas sensor" - id_tag = ATMOS_GAS_MONITOR_SENSOR_FREON -/obj/machinery/air_sensor/atmos/halon_tank - name = "halon tank gas sensor" - id_tag = ATMOS_GAS_MONITOR_SENSOR_HALON -/obj/machinery/air_sensor/atmos/healium_tank - name = "healium tank gas sensor" - id_tag = ATMOS_GAS_MONITOR_SENSOR_HEALIUM -/obj/machinery/air_sensor/atmos/hydrogen_tank - name = "hydrogen tank gas sensor" - id_tag = ATMOS_GAS_MONITOR_SENSOR_H2 -/obj/machinery/air_sensor/atmos/hypernoblium_tank - name = "hypernoblium tank gas sensor" - id_tag = ATMOS_GAS_MONITOR_SENSOR_HYPERNOBLIUM -/obj/machinery/air_sensor/atmos/miasma_tank - name = "miasma tank gas sensor" - id_tag = ATMOS_GAS_MONITOR_SENSOR_MIASMA -/obj/machinery/air_sensor/atmos/nitrium_tank - name = "nitrium tank gas sensor" - id_tag = ATMOS_GAS_MONITOR_SENSOR_NITRIUM -/obj/machinery/air_sensor/atmos/pluoxium_tank - name = "pluoxium tank gas sensor" - id_tag = ATMOS_GAS_MONITOR_SENSOR_PLUOXIUM -/obj/machinery/air_sensor/atmos/proto_nitrate_tank - name = "proto-nitrate tank gas sensor" - id_tag = ATMOS_GAS_MONITOR_SENSOR_PROTO_NITRATE -/obj/machinery/air_sensor/atmos/tritium_tank - name = "tritium tank gas sensor" - id_tag = ATMOS_GAS_MONITOR_SENSOR_TRITIUM -/obj/machinery/air_sensor/atmos/water_vapor_tank - name = "water vapor tank gas sensor" - id_tag = ATMOS_GAS_MONITOR_SENSOR_H2O -/obj/machinery/air_sensor/atmos/zauker_tank - name = "zauker tank gas sensor" - id_tag = ATMOS_GAS_MONITOR_SENSOR_ZAUKER -/obj/machinery/air_sensor/atmos/helium_tank - name = "helium tank gas sensor" - id_tag = ATMOS_GAS_MONITOR_SENSOR_HELIUM -/obj/machinery/air_sensor/atmos/antinoblium_tank - name = "antinoblium tank gas sensor" - id_tag = ATMOS_GAS_MONITOR_SENSOR_ANTINOBLIUM -/obj/machinery/air_sensor/atmos/incinerator_tank - name = "incinerator chamber gas sensor" - id_tag = ATMOS_GAS_MONITOR_SENSOR_INCINERATOR - -/obj/machinery/air_sensor/update_icon_state() - icon_state = "gsensor[on]" - return ..() - -/obj/machinery/air_sensor/process_atmos() - if(on) - var/datum/gas_mixture/air_sample = return_air() - - var/datum/signal/signal = new(list( - "sigtype" = "status", - "id_tag" = id_tag, - "timestamp" = world.time, - "pressure" = air_sample.return_pressure(), - "temperature" = air_sample.temperature, - "gases" = list() - )) - var/total_moles = air_sample.total_moles() - if(total_moles) - for(var/gas_id in air_sample.gases) - var/gas_name = air_sample.gases[gas_id][GAS_META][META_GAS_NAME] - signal.data["gases"][gas_name] = air_sample.gases[gas_id][MOLES] / total_moles * 100 - - radio_connection.post_signal(src, signal, filter = RADIO_ATMOSIA) - - -/obj/machinery/air_sensor/proc/set_frequency(new_frequency) - SSradio.remove_object(src, frequency) - frequency = new_frequency - radio_connection = SSradio.add_object(src, frequency, RADIO_ATMOSIA) - -/obj/machinery/air_sensor/Initialize(mapload) - . = ..() - SSair.start_processing_machine(src) - set_frequency(frequency) - -/obj/machinery/air_sensor/Destroy() - SSair.stop_processing_machine(src) - SSradio.remove_object(src, frequency) - return ..() - -///////////////////////////////////////////////////////////// -// GENERAL AIR CONTROL (a.k.a atmos computer) -///////////////////////////////////////////////////////////// -GLOBAL_LIST_EMPTY(atmos_air_controllers) - -/obj/machinery/computer/atmos_control - name = "atmospherics monitoring" - desc = "Used to monitor the station's atmospherics sensors." - icon_screen = "tank" - icon_keyboard = "atmos_key" - circuit = /obj/item/circuitboard/computer/atmos_control - light_color = LIGHT_COLOR_CYAN - - var/frequency = FREQ_ATMOS_STORAGE - var/list/sensors = list( - ATMOS_GAS_MONITOR_SENSOR_N2 = "Nitrogen Tank", - ATMOS_GAS_MONITOR_SENSOR_O2 = "Oxygen Tank", - ATMOS_GAS_MONITOR_SENSOR_CO2 = "Carbon Dioxide Tank", - ATMOS_GAS_MONITOR_SENSOR_PLAS = "Plasma Tank", - ATMOS_GAS_MONITOR_SENSOR_N2O = "Nitrous Oxide Tank", - ATMOS_GAS_MONITOR_SENSOR_AIR = "Mixed Air Tank", - ATMOS_GAS_MONITOR_SENSOR_MIX = "Mix Tank", - ATMOS_GAS_MONITOR_SENSOR_BZ = "BZ Tank", - ATMOS_GAS_MONITOR_SENSOR_FREON = "Freon Tank", - ATMOS_GAS_MONITOR_SENSOR_HALON = "Halon Tank", - ATMOS_GAS_MONITOR_SENSOR_HEALIUM = "Healium Tank", - ATMOS_GAS_MONITOR_SENSOR_H2 = "Hydrogen Tank", - ATMOS_GAS_MONITOR_SENSOR_HYPERNOBLIUM = "Hypernoblium Tank", - ATMOS_GAS_MONITOR_SENSOR_MIASMA = "Miasma Tank", - ATMOS_GAS_MONITOR_SENSOR_NITRIUM = "Nitrium Tank", - ATMOS_GAS_MONITOR_SENSOR_PLUOXIUM = "Pluoxium Tank", - ATMOS_GAS_MONITOR_SENSOR_PROTO_NITRATE = "Proto-Nitrate Tank", - ATMOS_GAS_MONITOR_SENSOR_TRITIUM = "Tritium Tank", - ATMOS_GAS_MONITOR_SENSOR_H2O = "Water Vapor Tank", - ATMOS_GAS_MONITOR_SENSOR_ZAUKER = "Zauker Tank", - ATMOS_GAS_MONITOR_LOOP_DISTRIBUTION = "Distribution Loop", - ATMOS_GAS_MONITOR_LOOP_ATMOS_WASTE = "Atmos Waste Loop", - ATMOS_GAS_MONITOR_SENSOR_INCINERATOR = "Incinerator Chamber", - ATMOS_GAS_MONITOR_SENSOR_ORDNANCE_LAB = "Ordnance Mixing Chamber" - ) - var/list/sensor_information = list() - var/datum/radio_frequency/radio_connection - - -/obj/machinery/computer/atmos_control/Initialize(mapload) - . = ..() - GLOB.atmos_air_controllers += src - set_frequency(frequency) - -/obj/machinery/computer/atmos_control/Destroy() - GLOB.atmos_air_controllers -= src - SSradio.remove_object(src, frequency) - return ..() - -/obj/machinery/computer/atmos_control/ui_interact(mob/user, datum/tgui/ui) - ui = SStgui.try_update_ui(user, src, ui) - if(!ui) - ui = new(user, src, "AtmosControlConsole", name) - ui.open() - -/obj/machinery/computer/atmos_control/ui_data(mob/user) - var/data = list() - - data["sensors"] = list() - for(var/id_tag in sensors) - var/long_name = sensors[id_tag] - var/list/info = sensor_information[id_tag] - if(!info) - continue - data["sensors"] += list(list( - "id_tag" = id_tag, - "long_name" = sanitize(long_name), - "pressure" = info["pressure"], - "temperature" = info["temperature"], - "gases" = info["gases"] - )) - return data - -/obj/machinery/computer/atmos_control/receive_signal(datum/signal/signal) - if(!signal) - return - - var/id_tag = signal.data["id_tag"] - if(!id_tag || !sensors.Find(id_tag)) - return - - sensor_information[id_tag] = signal.data - -/obj/machinery/computer/atmos_control/proc/set_frequency(new_frequency) - SSradio.remove_object(src, frequency) - frequency = new_frequency - radio_connection = SSradio.add_object(src, frequency, RADIO_ATMOSIA) - -//Incinerator sensor only -/obj/machinery/computer/atmos_control/incinerator - name = "Incinerator Air Control" - sensors = list(ATMOS_GAS_MONITOR_SENSOR_INCINERATOR = "Incinerator Chamber") - circuit = /obj/item/circuitboard/computer/atmos_control/incinerator - -//Ordnance mix sensor only -/obj/machinery/computer/atmos_control/ordnancemix - name = "Ordnance Mixing Air Control" - sensors = list(ATMOS_GAS_MONITOR_SENSOR_ORDNANCE_LAB = "Ordnance Mixing Chamber") - circuit = /obj/item/circuitboard/computer/atmos_control/ordnancemix - -///////////////////////////////////////////////////////////// -// LARGE TANK CONTROL -///////////////////////////////////////////////////////////// - -/obj/machinery/computer/atmos_control/tank - var/input_tag - var/output_tag - frequency = FREQ_ATMOS_STORAGE - circuit = /obj/item/circuitboard/computer/atmos_control/tank - var/list/input_info - var/list/output_info - -/obj/machinery/computer/atmos_control/tank/oxygen_tank - name = "Oxygen Supply Control" - input_tag = ATMOS_GAS_MONITOR_INPUT_O2 - output_tag = ATMOS_GAS_MONITOR_OUTPUT_O2 - sensors = list(ATMOS_GAS_MONITOR_SENSOR_O2 = "Oxygen Tank") - circuit = /obj/item/circuitboard/computer/atmos_control/tank/oxygen_tank - -/obj/machinery/computer/atmos_control/tank/plasma_tank - name = "Plasma Supply Control" - input_tag = ATMOS_GAS_MONITOR_INPUT_PLAS - output_tag = ATMOS_GAS_MONITOR_OUTPUT_PLAS - sensors = list(ATMOS_GAS_MONITOR_SENSOR_PLAS = "Plasma Tank") - circuit = /obj/item/circuitboard/computer/atmos_control/tank/plasma_tank - -/obj/machinery/computer/atmos_control/tank/air_tank - name = "Mixed Air Supply Control" - input_tag = ATMOS_GAS_MONITOR_INPUT_AIR - output_tag = ATMOS_GAS_MONITOR_OUTPUT_AIR - sensors = list(ATMOS_GAS_MONITOR_SENSOR_AIR = "Air Mix Tank") - circuit = /obj/item/circuitboard/computer/atmos_control/tank/air_tank - -/obj/machinery/computer/atmos_control/tank/mix_tank - name = "Gas Mix Tank Control" - input_tag = ATMOS_GAS_MONITOR_INPUT_MIX - output_tag = ATMOS_GAS_MONITOR_OUTPUT_MIX - sensors = list(ATMOS_GAS_MONITOR_SENSOR_MIX = "Gas Mix Tank") - circuit = /obj/item/circuitboard/computer/atmos_control/tank/mix_tank - -/obj/machinery/computer/atmos_control/tank/nitrous_tank - name = "Nitrous Oxide Supply Control" - input_tag = ATMOS_GAS_MONITOR_INPUT_N2O - output_tag = ATMOS_GAS_MONITOR_OUTPUT_N2O - sensors = list(ATMOS_GAS_MONITOR_SENSOR_N2O = "Nitrous Oxide Tank") - circuit = /obj/item/circuitboard/computer/atmos_control/tank/nitrous_tank - -/obj/machinery/computer/atmos_control/tank/nitrogen_tank - name = "Nitrogen Supply Control" - input_tag = ATMOS_GAS_MONITOR_INPUT_N2 - output_tag = ATMOS_GAS_MONITOR_OUTPUT_N2 - sensors = list(ATMOS_GAS_MONITOR_SENSOR_N2 = "Nitrogen Tank") - circuit = /obj/item/circuitboard/computer/atmos_control/tank/nitrogen_tank - -/obj/machinery/computer/atmos_control/tank/carbon_tank - name = "Carbon Dioxide Supply Control" - input_tag = ATMOS_GAS_MONITOR_INPUT_CO2 - output_tag = ATMOS_GAS_MONITOR_OUTPUT_CO2 - sensors = list(ATMOS_GAS_MONITOR_SENSOR_CO2 = "Carbon Dioxide Tank") - circuit = /obj/item/circuitboard/computer/atmos_control/tank/carbon_tank - -/obj/machinery/computer/atmos_control/tank/bz_tank - name = "BZ Supply Control" - input_tag = ATMOS_GAS_MONITOR_INPUT_BZ - output_tag = ATMOS_GAS_MONITOR_OUTPUT_BZ - sensors = list(ATMOS_GAS_MONITOR_SENSOR_BZ = "BZ Tank") - circuit = /obj/item/circuitboard/computer/atmos_control/tank/bz_tank - -/obj/machinery/computer/atmos_control/tank/freon_tank - name = "Freon Supply Control" - input_tag = ATMOS_GAS_MONITOR_INPUT_FREON - output_tag = ATMOS_GAS_MONITOR_OUTPUT_FREON - sensors = list(ATMOS_GAS_MONITOR_SENSOR_FREON = "Freon Tank") - circuit = /obj/item/circuitboard/computer/atmos_control/tank/freon_tank - -/obj/machinery/computer/atmos_control/tank/halon_tank - name = "Halon Supply Control" - input_tag = ATMOS_GAS_MONITOR_INPUT_HALON - output_tag = ATMOS_GAS_MONITOR_OUTPUT_HALON - sensors = list(ATMOS_GAS_MONITOR_SENSOR_HALON = "Halon Tank") - circuit = /obj/item/circuitboard/computer/atmos_control/tank/halon_tank - -/obj/machinery/computer/atmos_control/tank/healium_tank - name = "Healium Supply Control" - input_tag = ATMOS_GAS_MONITOR_INPUT_HEALIUM - output_tag = ATMOS_GAS_MONITOR_OUTPUT_HEALIUM - sensors = list(ATMOS_GAS_MONITOR_SENSOR_HEALIUM = "Healium Tank") - circuit = /obj/item/circuitboard/computer/atmos_control/tank/healium_tank - -/obj/machinery/computer/atmos_control/tank/hydrogen_tank - name = "Hydrogen Supply Control" - input_tag = ATMOS_GAS_MONITOR_INPUT_H2 - output_tag = ATMOS_GAS_MONITOR_OUTPUT_H2 - sensors = list(ATMOS_GAS_MONITOR_SENSOR_H2 = "Hydrogen Tank") - circuit = /obj/item/circuitboard/computer/atmos_control/tank/hydrogen_tank - -/obj/machinery/computer/atmos_control/tank/hypernoblium_tank - name = "Hypernoblium Supply Control" - input_tag = ATMOS_GAS_MONITOR_INPUT_HYPERNOBLIUM - output_tag = ATMOS_GAS_MONITOR_OUTPUT_HYPERNOBLIUM - sensors = list(ATMOS_GAS_MONITOR_SENSOR_HYPERNOBLIUM = "Hypernoblium Tank") - circuit = /obj/item/circuitboard/computer/atmos_control/tank/hypernoblium_tank - -/obj/machinery/computer/atmos_control/tank/miasma_tank - name = "Miasma Supply Control" - input_tag = ATMOS_GAS_MONITOR_INPUT_MIASMA - output_tag = ATMOS_GAS_MONITOR_OUTPUT_MIASMA - sensors = list(ATMOS_GAS_MONITOR_SENSOR_MIASMA = "Miasma Tank") - circuit = /obj/item/circuitboard/computer/atmos_control/tank/miasma_tank - -/obj/machinery/computer/atmos_control/tank/nitrium_tank - name = "Nitrium Supply Control" - input_tag = ATMOS_GAS_MONITOR_INPUT_NITRIUM - output_tag = ATMOS_GAS_MONITOR_OUTPUT_NITRIUM - sensors = list(ATMOS_GAS_MONITOR_SENSOR_NITRIUM = "Nitrium Tank") - circuit = /obj/item/circuitboard/computer/atmos_control/tank/nitrium_tank - -/obj/machinery/computer/atmos_control/tank/pluoxium_tank - name = "Pluoxium Supply Control" - input_tag = ATMOS_GAS_MONITOR_INPUT_PLUOXIUM - output_tag = ATMOS_GAS_MONITOR_OUTPUT_PLUOXIUM - sensors = list(ATMOS_GAS_MONITOR_SENSOR_PLUOXIUM = "Pluoxium Tank") - circuit = /obj/item/circuitboard/computer/atmos_control/tank/pluoxium_tank - -/obj/machinery/computer/atmos_control/tank/proto_nitrate_tank - name = "Proto-Nitrate Supply Control" - input_tag = ATMOS_GAS_MONITOR_INPUT_PROTO_NITRATE - output_tag = ATMOS_GAS_MONITOR_OUTPUT_PROTO_NITRATE - sensors = list(ATMOS_GAS_MONITOR_SENSOR_PROTO_NITRATE = "Proto-Nitrate Tank") - circuit = /obj/item/circuitboard/computer/atmos_control/tank/proto_nitrate_tank - -/obj/machinery/computer/atmos_control/tank/tritium_tank - name = "Tritium Supply Control" - input_tag = ATMOS_GAS_MONITOR_INPUT_TRITIUM - output_tag = ATMOS_GAS_MONITOR_OUTPUT_TRITIUM - sensors = list(ATMOS_GAS_MONITOR_SENSOR_TRITIUM = "Tritium Tank") - circuit = /obj/item/circuitboard/computer/atmos_control/tank/tritium_tank - -/obj/machinery/computer/atmos_control/tank/water_vapor - name = "Water Vapor Supply Control" - input_tag = ATMOS_GAS_MONITOR_INPUT_H2O - output_tag = ATMOS_GAS_MONITOR_OUTPUT_H2O - sensors = list(ATMOS_GAS_MONITOR_SENSOR_H2O = "Water Vapor Tank") - circuit = /obj/item/circuitboard/computer/atmos_control/tank/water_vapor - -/obj/machinery/computer/atmos_control/tank/zauker_tank - name = "Zauker Supply Control" - input_tag = ATMOS_GAS_MONITOR_INPUT_ZAUKER - output_tag = ATMOS_GAS_MONITOR_OUTPUT_ZAUKER - sensors = list(ATMOS_GAS_MONITOR_SENSOR_ZAUKER = "Zauker Tank") - circuit = /obj/item/circuitboard/computer/atmos_control/tank/zauker_tank - -/obj/machinery/computer/atmos_control/tank/helium_tank - name = "Helium Supply Control" - input_tag = ATMOS_GAS_MONITOR_INPUT_HELIUM - output_tag = ATMOS_GAS_MONITOR_OUTPUT_HELIUM - sensors = list(ATMOS_GAS_MONITOR_SENSOR_HELIUM = "Helium Tank") - circuit = /obj/item/circuitboard/computer/atmos_control/tank/helium_tank - -/obj/machinery/computer/atmos_control/tank/antinoblium_tank - name = "Antinoblium Supply Control" - input_tag = ATMOS_GAS_MONITOR_INPUT_ANTINOBLIUM - output_tag = ATMOS_GAS_MONITOR_OUTPUT_ANTINOBLIUM - sensors = list(ATMOS_GAS_MONITOR_SENSOR_ANTINOBLIUM = "Antinoblium Tank") - circuit = /obj/item/circuitboard/computer/atmos_control/tank/antinoblium_tank - -// This hacky madness is the evidence of the fact that a lot of machines were never meant to be constructable, im so sorry you had to see this -/obj/machinery/computer/atmos_control/tank/proc/reconnect(mob/user) - var/list/IO = list() - var/datum/radio_frequency/freq = SSradio.return_frequency(frequency) - - var/list/devices = list() - var/list/device_refs = freq.devices["_default"] - for(var/datum/weakref/device_ref as anything in device_refs) - var/atom/device = device_ref.resolve() - if(!device) - device_refs -= device_ref - continue - devices += device - - for(var/obj/machinery/atmospherics/components/unary/vent_pump/U in devices) - var/list/text = splittext(U.id_tag, "_") - IO |= text[1] - for(var/obj/machinery/atmospherics/components/unary/outlet_injector/U in devices) - var/list/text = splittext(U.id, "_") - IO |= text[1] - if(!IO.len) - to_chat(user, span_alert("No machinery detected.")) - var/S = tgui_input_list(user, "Select the device set", "Reconnect", sort_list(IO)) - if(isnull(S)) - return - if(src) - src.input_tag = "[S]_in" - src.output_tag = "[S]_out" - name = "[uppertext(S)] Supply Control" - var/list/new_devices = freq.devices["atmosia"] - sensors.Cut() - for(var/obj/machinery/air_sensor/U in new_devices) - var/list/text = splittext(U.id_tag, "_") - if(text[1] == S) - sensors = list("[S]_sensor" = "[S] Tank") - break - - for(var/obj/machinery/atmospherics/components/unary/outlet_injector/U in devices) - U.broadcast_status() - for(var/obj/machinery/atmospherics/components/unary/vent_pump/U in devices) - U.broadcast_status() - -/obj/machinery/computer/atmos_control/tank/ui_data(mob/user) - var/list/data = ..() - data["tank"] = TRUE - data["inputting"] = input_info ? input_info["power"] : FALSE - data["inputRate"] = input_info ? input_info["volume_rate"] : 0 - data["maxInputRate"] = input_info ? MAX_TRANSFER_RATE : 0 - data["outputting"] = output_info ? output_info["power"] : FALSE - data["outputPressure"] = output_info ? output_info["internal"] : 0 - data["maxOutputPressure"] = output_info ? MAX_OUTPUT_PRESSURE : 0 - return data - -/obj/machinery/computer/atmos_control/tank/ui_act(action, params) - . = ..() - - if(. || !radio_connection) - return - var/datum/signal/signal = new(list("sigtype" = "command", "user" = usr)) - switch(action) - if("reconnect") - reconnect(usr) - . = TRUE - if("input") - signal.data += list("tag" = input_tag, "power_toggle" = TRUE) - . = TRUE - if("rate") - var/target = text2num(params["rate"]) - if(!isnull(target)) - target = clamp(target, 0, MAX_TRANSFER_RATE) - signal.data += list("tag" = input_tag, "set_volume_rate" = target) - . = TRUE - if("output") - signal.data += list("tag" = output_tag, "power_toggle" = TRUE) - . = TRUE - if("pressure") - var/target = text2num(params["pressure"]) - if(!isnull(target)) - target = clamp(target, 0, MAX_OUTPUT_PRESSURE) - signal.data += list("tag" = output_tag, "set_internal_pressure" = target) - . = TRUE - radio_connection.post_signal(src, signal, filter = RADIO_ATMOSIA) - -/obj/machinery/computer/atmos_control/tank/receive_signal(datum/signal/signal) - if(!signal) - return - - var/id_tag = signal.data["tag"] - - if(input_tag == id_tag) - input_info = signal.data - else if(output_tag == id_tag) - output_info = signal.data - else - ..(signal) diff --git a/code/game/objects/items/circuitboards/computer_circuitboards.dm b/code/game/objects/items/circuitboards/computer_circuitboards.dm index b4ebabb55f7..58730584d7a 100644 --- a/code/game/objects/items/circuitboards/computer_circuitboards.dm +++ b/code/game/objects/items/circuitboards/computer_circuitboards.dm @@ -32,109 +32,121 @@ build_path = /obj/machinery/computer/atmos_alert /obj/item/circuitboard/computer/atmos_control - name = "Atmospheric Monitor (Computer Board)" + name = "Atmospheric Control (Computer Board)" greyscale_colors = CIRCUIT_COLOR_ENGINEERING build_path = /obj/machinery/computer/atmos_control -/obj/item/circuitboard/computer/atmos_control/incinerator - name = "Incinerator Air Control (Computer Board)" - build_path = /obj/machinery/computer/atmos_control/incinerator +/obj/item/circuitboard/computer/atmos_control/nocontrol + name = "Atmospheric Monitor (Computer Board)" + build_path = /obj/machinery/computer/atmos_control/nocontrol -/obj/item/circuitboard/computer/atmos_control/ordnancemix - name = "Ordnance Mixing Air Control (Computer Board)" - build_path = /obj/machinery/computer/atmos_control/ordnancemix +/obj/item/circuitboard/computer/atmos_control/noreconnect + name = "Atmospheric Control (Computer Board)" + build_path = /obj/machinery/computer/atmos_control/noreconnect -/obj/item/circuitboard/computer/atmos_control/tank - name = "Tank Control (Computer Board)" - build_path = /obj/machinery/computer/atmos_control/tank +/obj/item/circuitboard/computer/atmos_control/fixed + name = "Atmospheric Monitor (Computer Board)" + build_path = /obj/machinery/computer/atmos_control/fixed -/obj/item/circuitboard/computer/atmos_control/tank/oxygen_tank +/obj/item/circuitboard/computer/atmos_control/nocontrol/master + name = "Station Atmospheric Monitor (Computer Board)" + build_path = /obj/machinery/computer/atmos_control/nocontrol/master + +/obj/item/circuitboard/computer/atmos_control/nocontrol/incinerator + name = "Incinerator Chamber Monitor (Computer Board)" + build_path = /obj/machinery/computer/atmos_control/nocontrol/incinerator + +/obj/item/circuitboard/computer/atmos_control/nocontrol/ordnancemix + name = "Ordnance Chamber Monitor (Computer Board)" + build_path = /obj/machinery/computer/atmos_control/nocontrol/ordnancemix + +/obj/item/circuitboard/computer/atmos_control/oxygen_tank name = "Oxygen Supply Control (Computer Board)" - build_path = /obj/machinery/computer/atmos_control/tank/oxygen_tank + build_path = /obj/machinery/computer/atmos_control/oxygen_tank -/obj/item/circuitboard/computer/atmos_control/tank/plasma_tank +/obj/item/circuitboard/computer/atmos_control/plasma_tank name = "Plasma Supply Control (Computer Board)" - build_path = /obj/machinery/computer/atmos_control/tank/plasma_tank + build_path = /obj/machinery/computer/atmos_control/plasma_tank -/obj/item/circuitboard/computer/atmos_control/tank/air_tank +/obj/item/circuitboard/computer/atmos_control/air_tank name = "Mixed Air Supply Control (Computer Board)" - build_path = /obj/machinery/computer/atmos_control/tank/air_tank + build_path = /obj/machinery/computer/atmos_control/air_tank -/obj/item/circuitboard/computer/atmos_control/tank/mix_tank +/obj/item/circuitboard/computer/atmos_control/mix_tank name = "Gas Mix Supply Control (Computer Board)" - build_path = /obj/machinery/computer/atmos_control/tank/mix_tank + build_path = /obj/machinery/computer/atmos_control/mix_tank -/obj/item/circuitboard/computer/atmos_control/tank/nitrous_tank +/obj/item/circuitboard/computer/atmos_control/nitrous_tank name = "Nitrous Oxide Supply Control (Computer Board)" - build_path = /obj/machinery/computer/atmos_control/tank/nitrous_tank + build_path = /obj/machinery/computer/atmos_control/nitrous_tank -/obj/item/circuitboard/computer/atmos_control/tank/nitrogen_tank +/obj/item/circuitboard/computer/atmos_control/nitrogen_tank name = "Nitrogen Supply Control (Computer Board)" - build_path = /obj/machinery/computer/atmos_control/tank/nitrogen_tank + build_path = /obj/machinery/computer/atmos_control/nitrogen_tank -/obj/item/circuitboard/computer/atmos_control/tank/carbon_tank +/obj/item/circuitboard/computer/atmos_control/carbon_tank name = "Carbon Dioxide Supply Control (Computer Board)" - build_path = /obj/machinery/computer/atmos_control/tank/carbon_tank + build_path = /obj/machinery/computer/atmos_control/carbon_tank -/obj/item/circuitboard/computer/atmos_control/tank/bz_tank +/obj/item/circuitboard/computer/atmos_control/bz_tank name = "BZ Supply Control (Computer Board)" - build_path = /obj/machinery/computer/atmos_control/tank/bz_tank + build_path = /obj/machinery/computer/atmos_control/bz_tank -/obj/item/circuitboard/computer/atmos_control/tank/freon_tank +/obj/item/circuitboard/computer/atmos_control/freon_tank name = "Freon Supply Control (Computer Board)" - build_path = /obj/machinery/computer/atmos_control/tank/freon_tank + build_path = /obj/machinery/computer/atmos_control/freon_tank -/obj/item/circuitboard/computer/atmos_control/tank/halon_tank +/obj/item/circuitboard/computer/atmos_control/halon_tank name = "Halon Supply Control (Computer Board)" - build_path = /obj/machinery/computer/atmos_control/tank/halon_tank + build_path = /obj/machinery/computer/atmos_control/halon_tank -/obj/item/circuitboard/computer/atmos_control/tank/healium_tank +/obj/item/circuitboard/computer/atmos_control/healium_tank name = "Healium Supply Control (Computer Board)" - build_path = /obj/machinery/computer/atmos_control/tank/healium_tank + build_path = /obj/machinery/computer/atmos_control/healium_tank -/obj/item/circuitboard/computer/atmos_control/tank/hydrogen_tank +/obj/item/circuitboard/computer/atmos_control/hydrogen_tank name = "Hydrogen Supply Control (Computer Board)" - build_path = /obj/machinery/computer/atmos_control/tank/hydrogen_tank + build_path = /obj/machinery/computer/atmos_control/hydrogen_tank -/obj/item/circuitboard/computer/atmos_control/tank/hypernoblium_tank +/obj/item/circuitboard/computer/atmos_control/hypernoblium_tank name = "Hypernoblium Supply Control (Computer Board)" - build_path = /obj/machinery/computer/atmos_control/tank/hypernoblium_tank + build_path = /obj/machinery/computer/atmos_control/hypernoblium_tank -/obj/item/circuitboard/computer/atmos_control/tank/miasma_tank +/obj/item/circuitboard/computer/atmos_control/miasma_tank name = "Miasma Supply Control (Computer Board)" - build_path = /obj/machinery/computer/atmos_control/tank/miasma_tank + build_path = /obj/machinery/computer/atmos_control/miasma_tank -/obj/item/circuitboard/computer/atmos_control/tank/nitrium_tank +/obj/item/circuitboard/computer/atmos_control/nitrium_tank name = "Nitrium Supply Control (Computer Board)" - build_path = /obj/machinery/computer/atmos_control/tank/nitrium_tank + build_path = /obj/machinery/computer/atmos_control/nitrium_tank -/obj/item/circuitboard/computer/atmos_control/tank/pluoxium_tank +/obj/item/circuitboard/computer/atmos_control/pluoxium_tank name = "Pluoxium Supply Control (Computer Board)" - build_path = /obj/machinery/computer/atmos_control/tank/pluoxium_tank + build_path = /obj/machinery/computer/atmos_control/pluoxium_tank -/obj/item/circuitboard/computer/atmos_control/tank/proto_nitrate_tank +/obj/item/circuitboard/computer/atmos_control/proto_nitrate_tank name = "Proto-Nitrate Supply Control (Computer Board)" - build_path = /obj/machinery/computer/atmos_control/tank/proto_nitrate_tank + build_path = /obj/machinery/computer/atmos_control/proto_nitrate_tank -/obj/item/circuitboard/computer/atmos_control/tank/tritium_tank +/obj/item/circuitboard/computer/atmos_control/tritium_tank name = "Tritium Supply Control (Computer Board)" - build_path = /obj/machinery/computer/atmos_control/tank/tritium_tank + build_path = /obj/machinery/computer/atmos_control/tritium_tank -/obj/item/circuitboard/computer/atmos_control/tank/water_vapor +/obj/item/circuitboard/computer/atmos_control/water_vapor name = "Water Vapor Supply Control (Computer Board)" - build_path = /obj/machinery/computer/atmos_control/tank/water_vapor + build_path = /obj/machinery/computer/atmos_control/water_vapor -/obj/item/circuitboard/computer/atmos_control/tank/zauker_tank +/obj/item/circuitboard/computer/atmos_control/zauker_tank name = "Zauker Supply Control (Computer Board)" - build_path = /obj/machinery/computer/atmos_control/tank/zauker_tank + build_path = /obj/machinery/computer/atmos_control/zauker_tank -/obj/item/circuitboard/computer/atmos_control/tank/helium_tank +/obj/item/circuitboard/computer/atmos_control/helium_tank name = "Helium Supply Control (Computer Board)" - build_path = /obj/machinery/computer/atmos_control/tank/helium_tank + build_path = /obj/machinery/computer/atmos_control/helium_tank -/obj/item/circuitboard/computer/atmos_control/tank/antinoblium_tank +/obj/item/circuitboard/computer/atmos_control/antinoblium_tank name = "Antinoblium Supply Control (Computer Board)" - build_path = /obj/machinery/computer/atmos_control/tank/antinoblium_tank + build_path = /obj/machinery/computer/atmos_control/antinoblium_tank /obj/item/circuitboard/computer/auxiliary_base name = "Auxiliary Base Management Console (Computer Board)" diff --git a/code/modules/admin/verbs/debug.dm b/code/modules/admin/verbs/debug.dm index 4e192d6a9fb..c811894944f 100644 --- a/code/modules/admin/verbs/debug.dm +++ b/code/modules/admin/verbs/debug.dm @@ -206,42 +206,6 @@ But you can call procs that are of type /mob/living/carbon/human/proc/ for that log_admin("[key_name(usr)] gave away direct control of [M] to [newkey].") SSblackbox.record_feedback("tally", "admin_verb", 1, "Give Direct Control") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! -/client/proc/cmd_admin_test_atmos_controllers() - set category = "Mapping" - set name = "Test Atmos Monitoring Consoles" - - var/list/dat = list() - - if(SSticker.current_state == GAME_STATE_STARTUP) - to_chat(usr, "Game still loading, please hold!", confidential = TRUE) - return - - message_admins(span_adminnotice("[key_name_admin(usr)] used the Test Atmos Monitor debug command.")) - log_admin("[key_name(usr)] used the Test Atmos Monitor debug command.") - - var/bad_shit = 0 - for(var/obj/machinery/computer/atmos_control/tank/console in GLOB.atmos_air_controllers) - dat += "

[console] at [AREACOORD(console)]:


" - if(console.input_tag == console.output_tag) - dat += "Error: input_tag is the same as the output_tag, \"[console.input_tag]\"!
" - bad_shit++ - if(!LAZYLEN(console.input_info)) - dat += "Failed to find a valid outlet injector as an input with the tag [console.input_tag].
" - bad_shit++ - if(!LAZYLEN(console.output_info)) - dat += "Failed to find a valid siphon pump as an outlet with the tag [console.output_tag].
" - bad_shit++ - if(!bad_shit) - dat += "STATUS: NORMAL" - else - bad_shit = 0 - dat += "
" - CHECK_TICK - - var/datum/browser/popup = new(usr, "testatmoscontroller", "Test Atmos Monitoring Consoles", 500, 750) - popup.set_content(dat.Join()) - popup.open() - /client/proc/cmd_admin_areatest(on_station) set category = "Mapping" set name = "Test Areas" diff --git a/code/modules/admin/verbs/mapping.dm b/code/modules/admin/verbs/mapping.dm index 8e182665292..b59d684de94 100644 --- a/code/modules/admin/verbs/mapping.dm +++ b/code/modules/admin/verbs/mapping.dm @@ -38,7 +38,6 @@ GLOBAL_LIST_INIT(admin_verbs_debug_mapping, list( #ifdef TESTING /client/proc/see_dirty_varedits, #endif - /client/proc/cmd_admin_test_atmos_controllers, /client/proc/cmd_admin_rejuvenate, /datum/admins/proc/show_traitor_panel, /client/proc/disable_communication, @@ -54,6 +53,7 @@ GLOBAL_LIST_INIT(admin_verbs_debug_mapping, list( /client/proc/place_ruin, /client/proc/station_food_debug, /client/proc/station_stack_debug, + /client/proc/check_atmos_controls, )) GLOBAL_PROTECT(admin_verbs_debug_mapping) @@ -422,3 +422,97 @@ GLOBAL_VAR_INIT(say_disabled, FALSE) popup.set_content(page_contents) popup.open() +/// Checks the atmos monitor, sensors, meters, vents, and injectors, and makes sure they dont overlap or do nothing. +/client/proc/check_atmos_controls() + set name = "Check Atmos Chamber Devices" + set category = "Mapping" + + if(SSticker.current_state == GAME_STATE_STARTUP) + to_chat(usr, "Game still loading, please run this again later!", confidential = TRUE) + return + + message_admins(span_adminnotice("[key_name_admin(usr)] used the Test Atmos Controls debug command.")) + log_admin("[key_name(usr)] used the Test Atmos Controls debug command.") + + var/datum/radio_frequency/frequency = SSradio.return_frequency(FREQ_ATMOS_STORAGE) + + /// broadcaster[id_tag] = machine + var/list/broadcasters = list() + /// listened_to[atmos_chamber_entry] = bool + /// TRUE means we have the corresponding id_tag being listened to by an atmos control computer. + var/list/listened_to = list() + /// broadcasted_to[id_tag[1]] = bool + /// TRUE means we have the corresponding id_tag being broadcasted to by a device, be it meter, sensors, etc. + var/list/broadcasted_to = list() + + /// How many things dont fit the recognized subtypes. + var/invalid_machine = 0 + /// How many things have invalid (messes with our delimiter) tags. + var/invalid_tag = 0 + /// How many things have empty tags, invalids but much worse. + var/tagless = 0 + /// How many things have duped id_tag. + var/duplicate_tag = 0 + /// How many things are broadcasting without an atmos computer listening + var/not_heard = 0 + /// How many atmos computers are listening to an empty tag. + var/not_told = 0 + + var/list/valid_device_types = typecacheof(list( + /obj/machinery/computer/atmos_control, + /obj/machinery/air_sensor, + /obj/machinery/atmospherics/components/unary/outlet_injector/monitored, + /obj/machinery/meter/monitored, + /obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored, + /obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/monitored + )) + var/list/valid_tag_endings = list("sensor", "in", "out") + + for (var/datum/weakref/device_ref as anything in frequency.devices[RADIO_ATMOSIA]) + var/obj/machinery/machine = device_ref.resolve() + if(!machine) + continue + if(!valid_device_types[machine.type]) + to_chat(usr, "Unrecognized machine [ADMIN_VERBOSEJMP(machine)] under type [machine.type] in FREQ_ATMOS_STORAGE ([FREQ_ATMOS_STORAGE]) frequency.", confidential=TRUE) + invalid_machine += 1 + continue + if(istype(machine,/obj/machinery/computer/atmos_control)) + var/obj/machinery/computer/atmos_control/atmos_comp = machine + for(var/listened_tags in atmos_comp.atmos_chambers) + LAZYINITLIST(listened_to[listened_tags]) + listened_to[listened_tags] += atmos_comp + continue + // Code below is for valid machineries that are not atmos control. + var/list/tags = splittext(machine.id_tag, "_") + if(tags.len == 0 || length(tags[1]) == 0) + to_chat(usr, "Machine [ADMIN_VERBOSEJMP(machine)] under type [machine.type] does not have a tag or have an empty identifier tag: [machine.id_tag]", confidential=TRUE) + tagless += 1 + continue + if(tags.len != 2 || !(tags[2] in valid_tag_endings)) + to_chat(usr, "Invalid tag for machine [ADMIN_VERBOSEJMP(machine)] under type [machine.type]. Tag = [machine.id_tag]", confidential=TRUE) + invalid_tag += 1 + continue + if(broadcasters[machine.id_tag]) + var/obj/original_machine = broadcasters[machine.id_tag] + to_chat(usr, "Duplicate machine id_tag ([machine.id_tag]) detected. Implicated machineries: [ADMIN_VERBOSEJMP(machine)] under [machine.type] and [ADMIN_VERBOSEJMP(original_machine)] under [original_machine.type]", confidential=TRUE) + duplicate_tag += 1 + continue + broadcasters[machine.id_tag] = machine + LAZYINITLIST(broadcasted_to[tags[1]]) + broadcasted_to[tags[1]] += machine + + for (var/tag in listened_to) + if(!broadcasted_to[tag]) + for (var/obj/computer in listened_to[tag]) + to_chat(usr, "A computer [ADMIN_VERBOSEJMP(computer)] is listening to tag: [tag] yet it no devices is broadcasting there.", confidential=TRUE) + not_told += 1 + for (var/tag in broadcasted_to) + if(!listened_to[tag]) + for (var/obj/machine in broadcasted_to[tag]) + to_chat(usr, "A machinery [ADMIN_VERBOSEJMP(machine)] is broadcasting in tag: [tag] yet there are no listeners. Are you sure you want to use a monitored atmos device?", confidential=TRUE) + not_heard += 1 + + if(!(invalid_machine || invalid_tag || tagless || duplicate_tag || not_heard || not_told)) + to_chat(usr, "Atmos control frequency check passed without encountering problems.", confidential=TRUE) + else + to_chat(usr, "Total errors: [invalid_machine + invalid_tag + tagless + duplicate_tag + not_heard + not_told]", confidential=TRUE) diff --git a/code/modules/atmospherics/machinery/components/unary_devices/outlet_injector.dm b/code/modules/atmospherics/machinery/components/unary_devices/outlet_injector.dm index 068de9ac27d..a4883ada87c 100644 --- a/code/modules/atmospherics/machinery/components/unary_devices/outlet_injector.dm +++ b/code/modules/atmospherics/machinery/components/unary_devices/outlet_injector.dm @@ -12,18 +12,9 @@ pipe_state = "injector" resistance_flags = FIRE_PROOF | UNACIDABLE | ACID_PROOF //really helpful in building gas chambers for xenomorphs - ///Variable used for radio frequency injection - var/injecting = FALSE ///Rate of operation of the device var/volume_rate = 50 - ///Frequency id for connecting to the NTNet - var/frequency = 0 - ///Reference to the radio datum - var/datum/radio_frequency/radio_connection - ///Id of the radio connection - var/id = null - /obj/machinery/atmospherics/components/unary/outlet_injector/CtrlClick(mob/user) if(can_interact(user)) on = !on @@ -39,10 +30,6 @@ update_appearance() return ..() -/obj/machinery/atmospherics/components/unary/outlet_injector/Destroy() - SSradio.remove_object(src,frequency) - return ..() - /obj/machinery/atmospherics/components/unary/outlet_injector/update_icon_nopipes() cut_overlays() if(showpipe) @@ -56,9 +43,6 @@ /obj/machinery/atmospherics/components/unary/outlet_injector/process_atmos() ..() - - injecting = 0 - if(!on || !is_operational) return @@ -80,78 +64,6 @@ update_parents() -/obj/machinery/atmospherics/components/unary/outlet_injector/proc/inject() - - if(on || injecting || !is_operational) - return - - var/datum/gas_mixture/air_contents = airs[1] - - injecting = 1 - flick("inje_inject", src) - - if(air_contents.temperature > 0) - var/transfer_moles = (air_contents.return_pressure() * volume_rate) / (air_contents.temperature * R_IDEAL_GAS_EQUATION) - - if(!transfer_moles) - return - - var/datum/gas_mixture/removed = air_contents.remove(transfer_moles) - loc.assume_air(removed) - update_parents() - -/obj/machinery/atmospherics/components/unary/outlet_injector/proc/set_frequency(new_frequency) - SSradio.remove_object(src, frequency) - frequency = new_frequency - if(frequency) - radio_connection = SSradio.add_object(src, frequency) - -/obj/machinery/atmospherics/components/unary/outlet_injector/proc/broadcast_status() - - if(!radio_connection) - return - - var/datum/signal/signal = new(list( - "tag" = id, - "device" = "AO", - "power" = on, - "volume_rate" = volume_rate, - //"timestamp" = world.time, - "sigtype" = "status" - )) - radio_connection.post_signal(src, signal) - -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos_init() - set_frequency(frequency) - broadcast_status() - ..() - -/obj/machinery/atmospherics/components/unary/outlet_injector/receive_signal(datum/signal/signal) - - if(!signal.data["tag"] || (signal.data["tag"] != id) || (signal.data["sigtype"]!="command")) - return - - if("power" in signal.data) - on = text2num(signal.data["power"]) - - if("power_toggle" in signal.data) - on = !on - - if("inject" in signal.data) - INVOKE_ASYNC(src, .proc/inject) - return - - if("set_volume_rate" in signal.data) - var/number = text2num(signal.data["set_volume_rate"]) - var/datum/gas_mixture/air_contents = airs[1] - volume_rate = clamp(number, 0, air_contents.volume) - - addtimer(CALLBACK(src, .proc/broadcast_status), 2) - - if(!("status" in signal.data)) //do not update_icon - update_appearance() - - /obj/machinery/atmospherics/components/unary/outlet_injector/ui_interact(mob/user, datum/tgui/ui) ui = SStgui.try_update_ui(user, src, ui) if(!ui) @@ -187,7 +99,6 @@ volume_rate = clamp(rate, 0, MAX_TRANSFER_RATE) investigate_log("was set to [volume_rate] L/s by [key_name(usr)]", INVESTIGATE_ATMOS) update_appearance() - broadcast_status() /obj/machinery/atmospherics/components/unary/outlet_injector/can_unwrench(mob/user) . = ..() @@ -215,81 +126,3 @@ /obj/machinery/atmospherics/components/unary/outlet_injector/on/layer4 piping_layer = 4 icon_state = "inje_map-4" - -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos - frequency = FREQ_ATMOS_STORAGE - on = TRUE - volume_rate = MAX_TRANSFER_RATE - -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/plasma_input - name = "plasma tank input injector" - id = ATMOS_GAS_MONITOR_INPUT_PLAS -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/oxygen_input - name = "oxygen tank input injector" - id = ATMOS_GAS_MONITOR_INPUT_O2 -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrogen_input - name = "nitrogen tank input injector" - id = ATMOS_GAS_MONITOR_INPUT_N2 -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/mix_input - name = "mix tank input injector" - id = ATMOS_GAS_MONITOR_INPUT_MIX -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrous_input - name = "nitrous oxide tank input injector" - id = ATMOS_GAS_MONITOR_INPUT_N2O -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/air_input - name = "air mix tank input injector" - id = ATMOS_GAS_MONITOR_INPUT_AIR -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/carbon_input - name = "carbon dioxide tank input injector" - id = ATMOS_GAS_MONITOR_INPUT_CO2 -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/bz_input - name = "bz tank input injector" - id = ATMOS_GAS_MONITOR_INPUT_BZ -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/freon_input - name = "freon tank input injector" - id = ATMOS_GAS_MONITOR_INPUT_FREON -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/halon_input - name = "halon tank input injector" - id = ATMOS_GAS_MONITOR_INPUT_HALON -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/healium_input - name = "healium tank input injector" - id = ATMOS_GAS_MONITOR_INPUT_HEALIUM -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/hydrogen_input - name = "hydrogen tank input injector" - id = ATMOS_GAS_MONITOR_INPUT_H2 -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/hypernoblium_input - name = "hypernoblium tank input injector" - id = ATMOS_GAS_MONITOR_INPUT_HYPERNOBLIUM -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/miasma_input - name = "miasma tank input injector" - id = ATMOS_GAS_MONITOR_INPUT_MIASMA -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrium_input - name = "nitrium tank input injector" - id = ATMOS_GAS_MONITOR_INPUT_NITRIUM -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/pluoxium_input - name = "pluoxium tank input injector" - id = ATMOS_GAS_MONITOR_INPUT_PLUOXIUM -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/proto_nitrate_input - name = "proto-nitrate tank input injector" - id = ATMOS_GAS_MONITOR_INPUT_PROTO_NITRATE -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/tritium_input - name = "tritium tank input injector" - id = ATMOS_GAS_MONITOR_INPUT_TRITIUM -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/water_vapor_input - name = "water vapor tank input injector" - id = ATMOS_GAS_MONITOR_INPUT_H2O -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/zauker_input - name = "zauker tank input injector" - id = ATMOS_GAS_MONITOR_INPUT_ZAUKER -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/helium_input - name = "helium tank input injector" - id = ATMOS_GAS_MONITOR_INPUT_HELIUM -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/antinoblium_input - name = "antinoblium tank input injector" - id = ATMOS_GAS_MONITOR_INPUT_ANTINOBLIUM -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/incinerator_input - name = "incinerator chamber input injector" - id = ATMOS_GAS_MONITOR_INPUT_INCINERATOR -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/ordnance_mixing_input - name = "ordnance mixing input injector" - id = ATMOS_GAS_MONITOR_INPUT_ORDNANCE_LAB diff --git a/code/modules/atmospherics/machinery/components/unary_devices/vent_pump.dm b/code/modules/atmospherics/machinery/components/unary_devices/vent_pump.dm index d82b0388b53..94880577f26 100644 --- a/code/modules/atmospherics/machinery/components/unary_devices/vent_pump.dm +++ b/code/modules/atmospherics/machinery/components/unary_devices/vent_pump.dm @@ -150,7 +150,7 @@ SSradio.remove_object(src, frequency) frequency = new_frequency if(frequency) - radio_connection = SSradio.add_object(src, frequency,radio_filter_in) + radio_connection = SSradio.add_object(src, frequency, radio_filter_in) /obj/machinery/atmospherics/components/unary/vent_pump/proc/broadcast_status() if(!radio_connection) @@ -369,83 +369,6 @@ piping_layer = 4 icon_state = "vent_map_siphon_on-4" -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos - frequency = FREQ_ATMOS_STORAGE - on = TRUE - icon_state = "vent_map_siphon_on-3" - -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/plasma_output - name = "plasma tank output inlet" - id_tag = ATMOS_GAS_MONITOR_OUTPUT_PLAS -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/oxygen_output - name = "oxygen tank output inlet" - id_tag = ATMOS_GAS_MONITOR_OUTPUT_O2 -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrogen_output - name = "nitrogen tank output inlet" - id_tag = ATMOS_GAS_MONITOR_OUTPUT_N2 -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/mix_output - name = "mix tank output inlet" - id_tag = ATMOS_GAS_MONITOR_OUTPUT_MIX -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrous_output - name = "nitrous oxide tank output inlet" - id_tag = ATMOS_GAS_MONITOR_OUTPUT_N2O -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/carbon_output - name = "carbon dioxide tank output inlet" - id_tag = ATMOS_GAS_MONITOR_OUTPUT_CO2 -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/bz_output - name = "bz tank output inlet" - id_tag = ATMOS_GAS_MONITOR_OUTPUT_BZ -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/freon_output - name = "freon tank output inlet" - id_tag = ATMOS_GAS_MONITOR_OUTPUT_FREON -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/halon_output - name = "halon tank output inlet" - id_tag = ATMOS_GAS_MONITOR_OUTPUT_HALON -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/healium_output - name = "healium tank output inlet" - id_tag = ATMOS_GAS_MONITOR_OUTPUT_HEALIUM -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/hydrogen_output - name = "hydrogen tank output inlet" - id_tag = ATMOS_GAS_MONITOR_OUTPUT_H2 -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/hypernoblium_output - name = "hypernoblium tank output inlet" - id_tag = ATMOS_GAS_MONITOR_OUTPUT_HYPERNOBLIUM -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/miasma_output - name = "miasma tank output inlet" - id_tag = ATMOS_GAS_MONITOR_OUTPUT_MIASMA -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrium_output - name = "nitrium tank output inlet" - id_tag = ATMOS_GAS_MONITOR_OUTPUT_NITRIUM -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/pluoxium_output - name = "pluoxium tank output inlet" - id_tag = ATMOS_GAS_MONITOR_OUTPUT_PLUOXIUM -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/proto_nitrate_output - name = "proto-nitrate tank output inlet" - id_tag = ATMOS_GAS_MONITOR_OUTPUT_PROTO_NITRATE -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/tritium_output - name = "tritium tank output inlet" - id_tag = ATMOS_GAS_MONITOR_OUTPUT_TRITIUM -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/water_vapor_output - name = "water vapor tank output inlet" - id_tag = ATMOS_GAS_MONITOR_OUTPUT_H2O -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/zauker_output - name = "zauker tank output inlet" - id_tag = ATMOS_GAS_MONITOR_OUTPUT_ZAUKER -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/helium_output - name = "helium tank output inlet" - id_tag = ATMOS_GAS_MONITOR_OUTPUT_HELIUM -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/antinoblium_output - name = "antinoblium tank output inlet" - id_tag = ATMOS_GAS_MONITOR_OUTPUT_ANTINOBLIUM -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/incinerator_output - name = "incinerator chamber output inlet" - id_tag = ATMOS_GAS_MONITOR_OUTPUT_INCINERATOR - frequency = FREQ_ATMOS_CONTROL -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/ordnance_mixing_output - name = "ordnance mixing output inlet" - id_tag = ATMOS_GAS_MONITOR_OUTPUT_ORDNANCE_LAB - frequency = FREQ_ATMOS_CONTROL - /obj/machinery/atmospherics/components/unary/vent_pump/high_volume/layer2 piping_layer = 2 icon_state = "vent_map-2" @@ -492,15 +415,6 @@ piping_layer = 4 icon_state = "vent_map_siphon_on-4" -/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/atmos - frequency = FREQ_ATMOS_STORAGE - on = TRUE - icon_state = "vent_map_siphon_on-3" - -/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/atmos/air_output - name = "air mix tank output inlet" - id_tag = ATMOS_GAS_MONITOR_OUTPUT_AIR - #undef INT_BOUND #undef EXT_BOUND #undef NO_BOUND diff --git a/code/modules/atmospherics/machinery/other/meter.dm b/code/modules/atmospherics/machinery/other/meter.dm index 4def7bfa2ef..b16231fe75e 100644 --- a/code/modules/atmospherics/machinery/other/meter.dm +++ b/code/modules/atmospherics/machinery/other/meter.dm @@ -12,30 +12,11 @@ armor = list(MELEE = 0, BULLET = 0, LASER = 0, ENERGY = 100, BOMB = 0, BIO = 100, FIRE = 40, ACID = 0) greyscale_config = /datum/greyscale_config/meter greyscale_colors = COLOR_GRAY - ///To connect to the ntnet - var/frequency = 0 ///The pipe we are attaching to var/atom/target ///The piping layer of the target var/target_layer = PIPING_LAYER_DEFAULT -/obj/machinery/meter/atmos - frequency = FREQ_ATMOS_STORAGE - -/obj/machinery/meter/atmos/layer2 - target_layer = 2 - -/obj/machinery/meter/atmos/layer4 - target_layer = 4 - -/obj/machinery/meter/atmos/atmos_waste_loop - name = "waste loop gas flow meter" - id_tag = ATMOS_GAS_MONITOR_LOOP_ATMOS_WASTE - -/obj/machinery/meter/atmos/distro_loop - name = "distribution loop gas flow meter" - id_tag = ATMOS_GAS_MONITOR_LOOP_DISTRIBUTION - /obj/machinery/meter/Destroy() SSair.stop_processing_machine(src) target = null @@ -117,20 +98,6 @@ greyscale_colors = COLOR_VIOLET set_greyscale(colors=greyscale_colors) - if(frequency) - var/datum/radio_frequency/radio_connection = SSradio.return_frequency(frequency) - - if(!radio_connection) - return - - var/datum/signal/signal = new(list( - "id_tag" = id_tag, - "device" = "AM", - "pressure" = round(env_pressure), - "sigtype" = "status" - )) - radio_connection.post_signal(src, signal) - /obj/machinery/meter/proc/status() if (target) var/datum/gas_mixture/environment = target.return_air() @@ -159,7 +126,7 @@ /obj/machinery/meter/deconstruct(disassembled = TRUE) if(!(flags_1 & NODECONSTRUCT_1)) new /obj/item/pipe_meter(loc) - qdel(src) + . = ..() /obj/machinery/meter/interact(mob/user) if(machine_stat & (NOPOWER|BROKEN)) @@ -216,3 +183,9 @@ /obj/machinery/meter/turf/reattach_to_layer() target = loc + +/obj/machinery/meter/layer2 + target_layer = 2 + +/obj/machinery/meter/layer4 + target_layer = 4 diff --git a/code/modules/atmospherics/machinery/pipes/color_adapter.dm b/code/modules/atmospherics/machinery/pipes/color_adapter.dm index 2468b3f943e..26ea67c45b2 100644 --- a/code/modules/atmospherics/machinery/pipes/color_adapter.dm +++ b/code/modules/atmospherics/machinery/pipes/color_adapter.dm @@ -52,12 +52,16 @@ /obj/machinery/atmospherics/pipe/color_adapter/layer1 icon_state = "adapter_map-1" + piping_layer = 1 /obj/machinery/atmospherics/pipe/color_adapter/layer2 icon_state = "adapter_map-2" + piping_layer = 2 /obj/machinery/atmospherics/pipe/color_adapter/layer4 icon_state = "adapter_map-4" + piping_layer = 4 /obj/machinery/atmospherics/pipe/color_adapter/layer5 icon_state = "adapter_map-5" + piping_layer = 5 diff --git a/tgstation.dme b/tgstation.dme index e0c3d38b983..821ced213a8 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -1244,7 +1244,6 @@ #include "code\game\machinery\computer\apc_control.dm" #include "code\game\machinery\computer\arena.dm" #include "code\game\machinery\computer\atmos_alert.dm" -#include "code\game\machinery\computer\atmos_control.dm" #include "code\game\machinery\computer\buildandrepair.dm" #include "code\game\machinery\computer\camera.dm" #include "code\game\machinery\computer\camera_advanced.dm" @@ -1266,6 +1265,14 @@ #include "code\game\machinery\computer\arcade\arcade.dm" #include "code\game\machinery\computer\arcade\orion.dm" #include "code\game\machinery\computer\arcade\orion_event.dm" +#include "code\game\machinery\computer\atmos_computers\__identifiers.dm" +#include "code\game\machinery\computer\atmos_computers\_air_sensor.dm" +#include "code\game\machinery\computer\atmos_computers\_atmos_control.dm" +#include "code\game\machinery\computer\atmos_computers\air_sensors.dm" +#include "code\game\machinery\computer\atmos_computers\atmos_controls.dm" +#include "code\game\machinery\computer\atmos_computers\inlets.dm" +#include "code\game\machinery\computer\atmos_computers\meters.dm" +#include "code\game\machinery\computer\atmos_computers\outlets.dm" #include "code\game\machinery\computer\chef_orders\chef_order.dm" #include "code\game\machinery\computer\chef_orders\order_datum.dm" #include "code\game\machinery\computer\prisoner\_prisoner.dm" diff --git a/tgui/packages/tgui/interfaces/AnomalyRefinery.js b/tgui/packages/tgui/interfaces/AnomalyRefinery.js index 3bd96534d59..4e793d45baa 100644 --- a/tgui/packages/tgui/interfaces/AnomalyRefinery.js +++ b/tgui/packages/tgui/interfaces/AnomalyRefinery.js @@ -193,7 +193,7 @@ const BombProcessorContent = (props, context) => { {!gasList[2].total_moles && ( {'No Gas Present'} )} - + @@ -209,7 +209,7 @@ const BombProcessorContent = (props, context) => { {!individualGasmix.total_moles && ( {'No Gas Present'} )} - + ))} diff --git a/tgui/packages/tgui/interfaces/AtmosControlConsole.js b/tgui/packages/tgui/interfaces/AtmosControlConsole.js deleted file mode 100644 index 932f147ef35..00000000000 --- a/tgui/packages/tgui/interfaces/AtmosControlConsole.js +++ /dev/null @@ -1,102 +0,0 @@ -import { map } from 'common/collections'; -import { toFixed } from 'common/math'; -import { useBackend } from '../backend'; -import { Button, LabeledList, NumberInput, Section } from '../components'; -import { Window } from '../layouts'; - -export const AtmosControlConsole = (props, context) => { - const { act, data } = useBackend(context); - const sensors = data.sensors || []; - return ( - - -
- {sensors.map(sensor => { - const gases = sensor.gases || {}; - return ( -
- - - {toFixed(sensor.pressure, 2) + ' kPa'} - - {!!sensor.temperature && ( - - {toFixed(sensor.temperature, 2) + ' K'} - - )} - {map((gasPercent, gasId) => ( - - {toFixed(gasPercent, 2) + '%'} - - ))(gases)} - -
- ); - })} -
- {data.tank && ( -
act('reconnect')} /> - )}> - - -
- )} -
-
- ); -}; diff --git a/tgui/packages/tgui/interfaces/AtmosControlConsole.tsx b/tgui/packages/tgui/interfaces/AtmosControlConsole.tsx new file mode 100644 index 00000000000..c87c8d091f9 --- /dev/null +++ b/tgui/packages/tgui/interfaces/AtmosControlConsole.tsx @@ -0,0 +1,168 @@ +import { useBackend, useLocalState } from '../backend'; +import { + Box, + Button, + LabeledList, + NumberInput, + Dropdown, + Section, + Stack, +} from '../components'; +import { Window } from '../layouts'; +import { Gasmix, GasmixParser } from './common/GasmixParser'; + +type Chamber = { + id: string; + name: string; + gasmix?: Gasmix; + input_info?: { active: boolean; amount: number }; + output_info?: { active: boolean; amount: number }; +}; + +export const AtmosControlConsole = (props, context) => { + const { act, data } = useBackend<{ + chambers: Chamber[]; + maxInput: number; + maxOutput: number; + reconnecting: boolean; + control: boolean; + }>(context); + const chambers = data.chambers || []; + const [chamberId, setChamberId] = useLocalState( + context, + 'chamberId', + chambers[0]?.id + ); + const selectedChamber + = chambers.length === 1 + ? chambers[0] + : chambers.find((chamber) => chamber.id === chamberId); + return ( + + + {chambers.length > 1 && ( +
+ chamber.name)} + selected={selectedChamber?.name} + onSelected={(value) => + setChamberId( + chambers.find((chamber) => chamber.name === value)?.id + || chambers[0].id)} + /> +
+ )} +
act('reconnect')} + />) + }> + {!!selectedChamber && !!selectedChamber.gasmix ? ( + + ) : ( + {'No Sensors Detected!'} + )} +
+ {!!selectedChamber && !!data.control && ( +
+ + + {selectedChamber.input_info ? ( + + +
+ )} +
+
+ ); +}; diff --git a/tgui/packages/tgui/interfaces/TankCompressor.js b/tgui/packages/tgui/interfaces/TankCompressor.js index 629d21c2d2b..d78c4116199 100644 --- a/tgui/packages/tgui/interfaces/TankCompressor.js +++ b/tgui/packages/tgui/interfaces/TankCompressor.js @@ -220,13 +220,13 @@ const TankCompressorControls = (props, context) => {
{!inputData.total_moles && {'No Gas Present'}} - +
{!outputData.inputData && {'No Gas Present'}} - +
@@ -241,7 +241,7 @@ const TankCompressorControls = (props, context) => { /> }> {!bufferData.total_moles && {'No Gas Present'}} - + diff --git a/tgui/packages/tgui/interfaces/common/GasmixParser.js b/tgui/packages/tgui/interfaces/common/GasmixParser.js deleted file mode 100644 index 26b37b2724f..00000000000 --- a/tgui/packages/tgui/interfaces/common/GasmixParser.js +++ /dev/null @@ -1,25 +0,0 @@ - -import { useBackend } from '../../backend'; -import { LabeledList } from '../../components'; - -export const GasmixParser = (props, context) => { - const { act, data } = useBackend(context); - const { gases=[], temperature, volume, pressure, total_moles } = props; - return ( - - {Object.keys(gases).map((gas_name) => ( - - {gases[gas_name].toFixed(2) - + ' mol (' - + ((gases[gas_name] / total_moles) * 100).toFixed(2) - + ' %)'} - - ))} - - {(total_moles ? temperature.toFixed(2) : "-")+ ' K'} - - {(total_moles ? volume.toFixed(2) : "-") + ' L'} - {(total_moles ? pressure.toFixed(2) : "-") + ' kPa'} - - ); -}; diff --git a/tgui/packages/tgui/interfaces/common/GasmixParser.tsx b/tgui/packages/tgui/interfaces/common/GasmixParser.tsx new file mode 100644 index 00000000000..22fe029a0e4 --- /dev/null +++ b/tgui/packages/tgui/interfaces/common/GasmixParser.tsx @@ -0,0 +1,120 @@ +import { LabeledList, Box, Button } from '../../components'; + +export type Gasmix = { + name?: string; + gases: [string, string, number][]; // ID, name, and amount. + temperature: number; + volume: number; + pressure: number; + total_moles: number; + reactions: [string, string, number][]; // ID, name, and amount. + reference: string; +}; + +type GasmixParserProps = { + gasmix: Gasmix; + gasesOnClick?: (gas_id: string) => void; + temperatureOnClick?: () => void; + volumeOnClick?: () => void; + pressureOnClick?: () => void; + reactionOnClick?: (reaction_id: string) => void; + // Whether we need to show the number of the reaction or not + detailedReactions?: boolean; +}; + +export const GasmixParser = (props: GasmixParserProps, context) => { + const { + gasmix, + gasesOnClick, + temperatureOnClick, + volumeOnClick, + pressureOnClick, + reactionOnClick, + detailedReactions, + ...rest + } = props; + + const { gases, temperature, volume, pressure, total_moles, reactions } + = gasmix; + + return !total_moles ? ( + + {'No Gas Detected!'} + + ) : ( + + {gases.map((gas) => ( + gasesOnClick(gas[0])} /> + ) : (gas[1]) + } + key={gas[1]}> + {gas[2].toFixed(2) + + ' mol (' + + ((gas[2] / total_moles) * 100).toFixed(2) + + ' %)'} + + ))} + temperatureOnClick()} + /> + ) : ('Temperature') + }> + {(total_moles ? temperature.toFixed(2) : '-') + ' K'} + + volumeOnClick()} /> + ) : ('Volume') + }> + {(total_moles ? volume.toFixed(2) : '-') + ' L'} + + pressureOnClick()} /> + ) : ('Pressure') + }> + {(total_moles ? pressure.toFixed(2) : '-') + ' kPa'} + + {detailedReactions ? ( + reactions.map((reaction) => ( + + ) : (reaction[1]) + }> + {reaction[2]} + + )) + ) : ( + + {reactions.length + ? reactions.map((reaction) => + reactionOnClick ? ( + +