From 0212e798b8685d164ebe3dad4908cc68b2ca8a69 Mon Sep 17 00:00:00 2001 From: Lucy Date: Mon, 1 Jul 2024 00:31:38 -0400 Subject: [PATCH] [PORT] Adds a unit test for typepaths that are required to be mapped onto each station map (#2346) * [MDB Ignore] Adds a unit test for typepaths that are required to be mapped onto each station map (#74985) Inspired by #74967 and #68459 , and the fact that Tramstation regresses very often - Adds a unit test, `required_map_items`, which ensures that certain typepaths which should definitely be mapped onto every map is mapped onto every map It can also be used to ensure that items which should not be mapped in multiple times are not, among other things. I included a few examples - - Min 1, max inf of each head of staff stamps - Min 1, max 1 departmental order consoles - Min 1, max inf comms console - Min 1, max 1 Pun Pun - Min 1, max 1 Poly - Min 1, max 1 Ian If, in the future, a mapper decides they (for some reason) do not want a certain previously-required item on their map, the test can be adjusted such that it allows excluding or something, but currently it should be for items which require conscious thought about. I attempted to make this a linter before realizing two things 1. Someone might make a spawner which spawns the items, or they might get placed in a locker, in any case this accounts for everything on init 2. Linters run on every map, non-station maps included So I went with a test Why is it always the CMO stamp? Not necessary (unless I find a map missing something, then this will be updated) * byeah * bwoh * fixup * Bweh * Add CMO stamp to Tram * Add holomaps * AAAAAAAAAAAAAAAAAAAA * guh * me when * Update stamps on Blueshift, shoddily map missing stuff into Kilo * Directional ATMs, re-add holomaps * Whoopsie daisy * Wait shit * Add a generous amount of holomaps to blueshift --------- Co-authored-by: MrMelbert <51863163+MrMelbert@users.noreply.github.com> --- .../SpaceRuins/hilbertresearchfacility.dmm | 2 +- _maps/RandomRuins/SpaceRuins/waystation.dmm | 2 +- _maps/RandomZLevels/moonoutpost19.dmm | 2 +- _maps/RandomZLevels/undergroundoutpost45.dmm | 4 +- _maps/map_files/Blueshift/Blueshift.dmm | 10456 ++++++++-------- _maps/map_files/BoxStation/BoxStation.dmm | 838 +- .../map_files/Deltastation/DeltaStation2.dmm | 2382 ++-- .../map_files/IceBoxStation/IceBoxStation.dmm | 1298 +- _maps/map_files/KiloStation/KiloStation.dmm | 1456 ++- _maps/map_files/MetaStation/MetaStation.dmm | 1316 +- _maps/map_files/NorthStar/north_star.dmm | 756 +- _maps/map_files/generic/CentCom.dmm | 2 +- _maps/map_files/tramstation/tramstation.dmm | 823 +- _maps/multiz_debug.json | 3 + _maps/northstar.json | 3 + _maps/runtimestation.json | 3 + _maps/shuttles/emergency_cruise.dmm | 2 +- _maps/shuttles/emergency_tranquility.dmm | 2 +- .../RandomBars/Icebox/Drunkopsbar.dmm | 2 +- .../RandomBars/Icebox/Magbar.dmm | 2 +- .../RandomBars/Icebox/clockwork_icebox.dmm | 2 +- .../RandomBars/Icebox/cultbar_icebox.dmm | 6 +- .../RandomBars/Icebox/green_bar_disco.dmm | 2 +- .../RandomBars/Icebox/icebox_bar_abductor.dmm | 2 +- .../RandomBars/Icebox/icebox_bar_arcade.dmm | 2 +- .../RandomBars/Icebox/icebox_bar_base.dmm | 2 +- .../RandomBars/Icebox/junglebar.dmm | 2 +- .../RandomBars/Icebox/mime_bar.dmm | 2 +- .../RandomBars/Tram/tram_bar_base.dmm | 4 +- .../RandomBars/Tram/tram_bar_beachside.dmm | 2 +- .../RandomBars/Tram/tram_bar_biodome.dmm | 4 +- .../RandomBars/Tram/tram_bar_cult.dmm | 9 +- .../RandomBars/Tram/tram_bar_maints_grape.dmm | 4 +- .../RandomBars/Tram/tram_bar_ocean.dmm | 2 +- .../RandomBars/Tram/tram_rvb_bar.dmm | 10 +- code/__DEFINES/unit_tests.dm | 31 + .../~monkestation-helpers/mapping.dm | 10 + code/_globalvars/phobias.dm | 18 +- code/datums/components/crafting/misc.dm | 2 +- code/datums/map_config.dm | 13 + .../game/machinery/computer/communications.dm | 3 + code/modules/cargo/department_order.dm | 2 + code/modules/jobs/job_types/captain.dm | 2 +- code/modules/jobs/job_types/chief_engineer.dm | 2 +- .../jobs/job_types/chief_medical_officer.dm | 2 +- .../jobs/job_types/head_of_personnel.dm | 2 +- .../jobs/job_types/head_of_security.dm | 2 +- code/modules/jobs/job_types/quartermaster.dm | 2 +- .../jobs/job_types/research_director.dm | 2 +- .../mob/living/basic/pets/dog/corgi.dm | 1 + .../mob/living/basic/pets/parrot/poly.dm | 1 + .../mob/living/carbon/human/monkey/monkey.dm | 2 + .../mob/living/simple_animal/friendly/cat.dm | 1 + code/modules/paperwork/paperwork.dm | 14 +- code/modules/paperwork/stamps.dm | 29 +- code/modules/unit_tests/_unit_tests.dm | 7 + code/modules/unit_tests/required_map_items.dm | 77 + code/modules/unit_tests/unit_test.dm | 54 +- .../cassettes/machines/cassette_rack.dm | 1 + .../modules/cassettes/machines/dj_station.dm | 1 + .../modules/cassettes/machines/postbox.dm | 4 + .../modules/cassettes/machines/radio_mic.dm | 2 + .../cassettes/machines/stationary_mixer.dm | 4 + .../code/modules/cryopods/_cryopod.dm | 1 + .../code/modules/holomaps/machinery.dm | 5 +- monkestation/code/modules/store/atm/_atm.dm | 5 +- tools/UpdatePaths/Scripts/74985_stamps.txt | 7 + ...varedited_atms_to_subtype_directionals.txt | 5 + 68 files changed, 10022 insertions(+), 9701 deletions(-) create mode 100644 code/modules/unit_tests/required_map_items.dm create mode 100644 tools/UpdatePaths/Scripts/74985_stamps.txt create mode 100644 tools/UpdatePaths/Scripts/monkestation/2346_varedited_atms_to_subtype_directionals.txt diff --git a/_maps/RandomRuins/SpaceRuins/hilbertresearchfacility.dmm b/_maps/RandomRuins/SpaceRuins/hilbertresearchfacility.dmm index 50cdbe733db9..2d06c716c2f8 100644 --- a/_maps/RandomRuins/SpaceRuins/hilbertresearchfacility.dmm +++ b/_maps/RandomRuins/SpaceRuins/hilbertresearchfacility.dmm @@ -1187,7 +1187,7 @@ "BL" = ( /obj/structure/table/wood, /obj/item/folder/white, -/obj/item/stamp/rd, +/obj/item/stamp/head/rd, /turf/open/floor/iron/grimy, /area/ruin/space/has_grav/powered/hilbertresearchfacility) "BM" = ( diff --git a/_maps/RandomRuins/SpaceRuins/waystation.dmm b/_maps/RandomRuins/SpaceRuins/waystation.dmm index 4e92c32d61eb..e62ea1e36e76 100644 --- a/_maps/RandomRuins/SpaceRuins/waystation.dmm +++ b/_maps/RandomRuins/SpaceRuins/waystation.dmm @@ -29,7 +29,7 @@ pixel_x = 7; pixel_y = 4 }, -/obj/item/stamp/qm{ +/obj/item/stamp/head/qm{ pixel_x = 7; pixel_y = -2 }, diff --git a/_maps/RandomZLevels/moonoutpost19.dmm b/_maps/RandomZLevels/moonoutpost19.dmm index 6a8be5f8c6e2..e93c32049931 100644 --- a/_maps/RandomZLevels/moonoutpost19.dmm +++ b/_maps/RandomZLevels/moonoutpost19.dmm @@ -2904,7 +2904,7 @@ /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/window/reinforced/spawner/directional/west, /obj/item/folder/white, -/obj/item/stamp/rd{ +/obj/item/stamp/head/rd{ pixel_x = 3; pixel_y = -2 }, diff --git a/_maps/RandomZLevels/undergroundoutpost45.dmm b/_maps/RandomZLevels/undergroundoutpost45.dmm index 850824bc4336..049d4ef2470f 100644 --- a/_maps/RandomZLevels/undergroundoutpost45.dmm +++ b/_maps/RandomZLevels/undergroundoutpost45.dmm @@ -5519,7 +5519,7 @@ /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/window/reinforced/spawner/directional/west, /obj/item/folder/white, -/obj/item/stamp/rd{ +/obj/item/stamp/head/rd{ pixel_x = 3; pixel_y = -2 }, @@ -10161,7 +10161,7 @@ /obj/item/clothing/glasses/meson{ pixel_y = 4 }, -/obj/item/stamp/ce, +/obj/item/stamp/head/ce, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron{ heat_capacity = 1e+006 diff --git a/_maps/map_files/Blueshift/Blueshift.dmm b/_maps/map_files/Blueshift/Blueshift.dmm index babcd80842a1..42de3d0ab59d 100644 --- a/_maps/map_files/Blueshift/Blueshift.dmm +++ b/_maps/map_files/Blueshift/Blueshift.dmm @@ -44,18 +44,6 @@ /mob/living/basic/mothroach, /turf/open/floor/iron, /area/station/maintenance/starboard/fore) -"aaR" = ( -/obj/machinery/camera/directional/north{ - c_tag = " Prison - East"; - dir = 2; - network = list("ss13","prison") - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/turf_decal/trimline/red/line{ - dir = 1 - }, -/turf/open/floor/iron/dark/side, -/area/station/security/prison) "aaU" = ( /obj/structure/railing/wrestling{ dir = 8 @@ -71,6 +59,11 @@ /obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/medical/morgue) +"aaZ" = ( +/obj/structure/closet, +/obj/effect/spawner/random/medical/medkit, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) "abj" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -531,18 +524,6 @@ /obj/structure/cable, /turf/open/floor/iron/large, /area/station/cargo/lobby) -"afI" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/line{ - dir = 8 - }, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/security/prison) "afL" = ( /obj/structure/reagent_dispensers/wall/peppertank/directional/west, /obj/machinery/light/directional/west, @@ -561,6 +542,7 @@ dir = 1 }, /obj/machinery/light_switch/directional/west, +/obj/machinery/station_map/engineering/directional/south, /turf/open/floor/carpet/black, /area/station/commons/dorms/room5) "aga" = ( @@ -673,11 +655,6 @@ /obj/effect/mapping_helpers/airlock/access/all/command/hop, /turf/open/floor/wood, /area/station/command/heads_quarters/hop) -"agZ" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/computer/order_console/bitrunning, -/turf/open/floor/iron, -/area/station/security/prison) "ahd" = ( /obj/effect/turf_decal/delivery/blue, /obj/structure/cable, @@ -797,6 +774,9 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) +"ais" = ( +/turf/closed/wall/r_wall, +/area/station/security/bitden) "ait" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -809,6 +789,12 @@ }, /turf/open/floor/iron/dark, /area/station/security/prison/garden) +"aiw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/mess, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark/small, +/area/station/security/bitden) "aiC" = ( /obj/machinery/suit_storage_unit/engine, /turf/open/floor/iron/dark, @@ -837,6 +823,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 }, +/obj/machinery/station_map/engineering/directional/west, /turf/open/floor/iron/white, /area/station/commons/toilet/restrooms) "aiN" = ( @@ -873,25 +860,6 @@ /obj/effect/mapping_helpers/airlock/access/all/command/general, /turf/open/floor/iron, /area/station/security/checkpoint/customs/auxiliary) -"aiV" = ( -/obj/machinery/airalarm/directional/east, -/obj/machinery/light/cold/directional/east, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/obj/structure/rack, -/obj/item/storage/medkit/regular, -/obj/item/clothing/gloves/latex, -/obj/item/reagent_containers/cup/bottle/epinephrine, -/obj/item/reagent_containers/cup/bottle/multiver, -/obj/item/reagent_containers/syringe, -/obj/item/storage/box/bodybags, -/obj/item/storage/medkit/regular, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white/corner{ - dir = 8 - }, -/area/station/security/medical) "ajc" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, @@ -1082,11 +1050,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/upper) -"akv" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/security/prison/upper) "akw" = ( /obj/structure/chair/sofa/bench/right{ dir = 8; @@ -1296,6 +1259,12 @@ /obj/structure/flora/grass/jungle, /turf/open/floor/grass, /area/station/service/hydroponics) +"anf" = ( +/obj/structure/closet/secure_closet/brig/genpop, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced/spawner/directional/west, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) "ani" = ( /obj/structure/cable, /turf/open/floor/circuit/telecomms/mainframe, @@ -1393,6 +1362,11 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/security/prison/mess) +"aod" = ( +/obj/structure/chair/sofa/bench/right, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "aoh" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 @@ -1470,15 +1444,6 @@ dir = 8 }, /area/station/security/prison/workout) -"aoI" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark/side{ - dir = 6 - }, -/area/station/security/execution/transfer) "aoK" = ( /obj/structure/closet/emcloset, /obj/effect/decal/cleanable/cobweb/cobweb2, @@ -1512,13 +1477,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/cmo) -"aoU" = ( -/obj/effect/decal/remains/human, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison) "apa" = ( /obj/machinery/vending/coffee, /obj/structure/cable, @@ -1600,19 +1558,9 @@ }, /obj/machinery/status_display/evac/directional/south, /obj/effect/landmark/start/hangover, +/obj/machinery/atm/directional/south, /turf/open/floor/iron/dark, /area/station/hallway/secondary/command) -"aqa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/red/filled/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/line, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/security/prison) "aqb" = ( /obj/item/kirbyplants/random, /turf/open/floor/iron/dark, @@ -1751,6 +1699,14 @@ /obj/effect/landmark/start/hangover, /turf/open/water/overlay, /area/station/hallway/primary/central) +"arx" = ( +/obj/machinery/airalarm/directional/east, +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/security/prison) "arA" = ( /turf/open/floor/iron/smooth_edge{ dir = 4 @@ -2020,6 +1976,10 @@ dir = 4 }, /area/station/security/range) +"aub" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "auv" = ( /obj/effect/turf_decal/bot_white/left, /obj/effect/spawner/random/structure/crate, @@ -2041,14 +2001,6 @@ /obj/machinery/light/directional/east, /turf/open/floor/iron, /area/station/hallway/primary/central) -"auR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/duct, -/obj/effect/turf_decal/trimline/red, -/turf/open/floor/iron/dark/small, -/area/station/security/prison) "auS" = ( /obj/structure/table, /obj/item/stack/package_wrap, @@ -2543,6 +2495,17 @@ "azk" = ( /turf/closed/wall/r_wall, /area/station/maintenance/department/crew_quarters/bar) +"azm" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted, +/obj/machinery/recharge_station, +/obj/machinery/light_switch/directional/south, +/obj/machinery/button/door/directional/east{ + name = "Security Mech Garage Door Controls"; + id = "SecMech"; + req_access = list("security") + }, +/turf/open/floor/iron/dark, +/area/station/security/mechbay) "azu" = ( /obj/structure/bed/double, /obj/item/bedsheet/captain/double, @@ -2578,6 +2541,18 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/stairs/old, /area/station/cargo/warehouse) +"azM" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/random/entertainment/money, +/obj/item/storage/pill_bottle/maintenance_pill/full, +/obj/item/coin/adamantine, +/obj/item/clothing/glasses/sunglasses, +/obj/effect/mapping_helpers/broken_floor, +/obj/item/storage/belt/utility/full/engi, +/obj/item/clothing/suit/armor/vest/old, +/obj/effect/spawner/random/contraband/plus, +/turf/open/floor/plating, +/area/station/security/prison) "azU" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/trash/moisture_trap, @@ -2632,6 +2607,19 @@ /obj/machinery/chem_dispenser/drinks, /turf/closed/wall/r_wall, /area/station/command/heads_quarters/nt_rep) +"aAC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/duct, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/prison) "aAF" = ( /obj/structure/chair{ dir = 4 @@ -2674,6 +2662,9 @@ /obj/effect/spawner/random/entertainment/arcade, /turf/open/floor/eighties/red, /area/station/common/arcade) +"aAZ" = ( +/turf/open/floor/plating, +/area/station/security/prison/upper) "aBf" = ( /turf/open/floor/plating, /area/station/engineering/atmos/test_chambers) @@ -2844,10 +2835,6 @@ "aCA" = ( /turf/closed/wall/r_wall, /area/station/science/ordnance/storage) -"aCD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/smooth, -/area/station/security/bitden) "aCJ" = ( /obj/item/kirbyplants/random, /turf/open/floor/plating, @@ -2873,15 +2860,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/upper) -"aCT" = ( -/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{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/prison/upper) "aCY" = ( /obj/structure/table/wood/fancy, /obj/item/reagent_containers/cup/bowl{ @@ -2908,6 +2886,14 @@ }, /turf/open/floor/wood, /area/station/security/courtroom) +"aDf" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/security/execution/transfer) "aDi" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -2915,6 +2901,12 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/plating, /area/station/maintenance/department/medical) +"aDo" = ( +/obj/effect/turf_decal/siding/dark_red, +/obj/machinery/defibrillator_mount/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark, +/area/station/security/medical) "aDt" = ( /obj/machinery/door/airlock/highsecurity{ name = "Gravity Generator Room" @@ -3089,10 +3081,6 @@ /obj/effect/spawner/random/structure/closet_maintenance, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"aFg" = ( -/obj/structure/bed/maint, -/turf/open/floor/plating, -/area/station/security/prison) "aFk" = ( /obj/structure/window/reinforced/spawner/directional/north, /obj/effect/turf_decal/siding/thinplating/dark{ @@ -3128,6 +3116,21 @@ /obj/item/screwdriver, /turf/open/floor/plating, /area/station/maintenance/department/medical) +"aFN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/red/corner, +/obj/effect/turf_decal/trimline/red/filled/line{ + color = "#DE3A3A"; + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/security/execution/transfer) "aFO" = ( /obj/machinery/power/shuttle_engine/heater, /obj/effect/turf_decal/stripes{ @@ -3169,6 +3172,13 @@ /obj/machinery/camera/autoname/directional/north, /turf/open/floor/iron/dark, /area/station/engineering/atmos/office) +"aFX" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/station_map/engineering/directional/north, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) "aGc" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -3400,11 +3410,11 @@ /obj/structure/cable, /turf/open/floor/iron/white, /area/station/science/ordnance/storage) -"aHZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) +"aId" = ( +/obj/machinery/netpod, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/small, +/area/station/security/bitden) "aIe" = ( /obj/structure/railing/wooden_fencing{ dir = 8 @@ -3421,6 +3431,15 @@ /obj/structure/window/reinforced/spawner/directional/north, /turf/open/floor/plating, /area/station/maintenance/port/upper) +"aIm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/security/execution/transfer) "aIv" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Science Maintenance" @@ -3438,11 +3457,6 @@ "aIC" = ( /turf/closed/wall/r_wall, /area/station/maintenance/eva_shed/starboard) -"aIF" = ( -/obj/structure/table, -/obj/item/wrench, -/turf/open/floor/iron, -/area/station/security/prison/upper) "aIH" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -3660,6 +3674,12 @@ }, /turf/open/floor/iron, /area/station/science/research) +"aKW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/red, +/turf/open/floor/iron/dark/small, +/area/station/security/prison) "aLa" = ( /obj/structure/closet/crate, /obj/effect/turf_decal/bot, @@ -3721,6 +3741,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/ai_monitored/command/storage/eva/upper) +"aLE" = ( +/obj/machinery/computer/records/security{ + dir = 4 + }, +/obj/structure/window/spawner/directional/south, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "aLP" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/neutral{ @@ -3775,6 +3802,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/security/courtroom) +"aMk" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "aMl" = ( /obj/item/kirbyplants/random, /obj/machinery/camera/autoname/directional/east, @@ -3957,6 +3991,7 @@ }, /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/station/commons/dorms) "aOC" = ( @@ -4025,6 +4060,7 @@ /obj/machinery/light/directional/east, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atm/directional/east, /turf/open/floor/iron, /area/station/commons/dorms) "aPq" = ( @@ -4210,6 +4246,12 @@ }, /turf/open/floor/wood, /area/station/maintenance/abandon_art_studio) +"aQX" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) "aQY" = ( /turf/closed/wall, /area/station/medical/psychology) @@ -4260,6 +4302,20 @@ /obj/structure/railing, /turf/open/floor/plating, /area/station/maintenance/department/science/xenobiology) +"aRP" = ( +/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/security/glass{ + id_tag = "permainner"; + name = "Permabrig Transfer" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "perma-transfer" + }, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) "aSc" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -4347,9 +4403,14 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/station/engineering/atmos/test_chambers) -"aSL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/dark, +"aSJ" = ( +/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/red{ + dir = 4 + }, +/turf/open/floor/iron, /area/station/security/prison/upper) "aSV" = ( /obj/effect/turf_decal/bot, @@ -4359,10 +4420,6 @@ }, /turf/open/floor/iron/dark, /area/station/hallway/primary/port) -"aSZ" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/plating, -/area/station/security/prison/upper) "aTe" = ( /obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ dir = 8 @@ -4534,6 +4591,7 @@ /obj/effect/turf_decal/arrows/white{ dir = 1 }, +/obj/machinery/atm/directional/west, /turf/open/floor/iron/dark, /area/station/hallway/secondary/entry) "aUY" = ( @@ -4562,12 +4620,6 @@ "aVs" = ( /turf/closed/wall/mineral/titanium, /area/station/science/ordnance/bomb) -"aVv" = ( -/obj/structure/sink/directional/east, -/turf/open/floor/iron/kitchen{ - dir = 1 - }, -/area/station/security/prison) "aVy" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -4627,6 +4679,14 @@ dir = 1 }, /area/station/hallway/primary/upper) +"aWf" = ( +/obj/item/kirbyplants/random, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison/upper) "aWh" = ( /obj/structure/chair/pew/left{ dir = 1 @@ -4868,6 +4928,13 @@ }, /turf/open/floor/iron/dark, /area/station/security/warden) +"aYv" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/security/execution/transfer) "aYz" = ( /obj/machinery/light/small/directional/south, /turf/open/floor/engine, @@ -4952,15 +5019,6 @@ dir = 8 }, /area/station/common/gaskiosk) -"aZo" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/line, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/security/prison) "aZq" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -5043,6 +5101,12 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/engineering/supermatter/room) +"bag" = ( +/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/station/security/prison/upper) "baj" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ @@ -5133,10 +5197,6 @@ /obj/effect/spawner/random/trash/mess, /turf/open/floor/plating, /area/station/maintenance/central) -"bba" = ( -/obj/structure/closet/crate, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "bbi" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -5195,8 +5255,8 @@ /area/station/maintenance/fore/upper) "bbG" = ( /obj/structure/table/reinforced, -/obj/item/binoculars, /obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/machinery/station_map/engineering, /turf/open/floor/iron/dark, /area/station/command/bridge) "bbH" = ( @@ -5220,6 +5280,11 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/secondary/command) +"bbZ" = ( +/obj/structure/decorative/shelf/crates, +/obj/machinery/light/directional/south, +/turf/open/floor/iron, +/area/station/security/prison/upper) "bcb" = ( /obj/machinery/conveyor{ dir = 9; @@ -5245,6 +5310,17 @@ /obj/item/circular_saw, /turf/open/floor/iron/dark, /area/station/maintenance/department/security/prison_upper) +"bci" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/razor{ + pixel_x = -8 + }, +/obj/item/razor, +/obj/machinery/camera/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/execution/transfer) "bcl" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -5406,21 +5482,6 @@ dir = 1 }, /area/station/hallway/secondary/command) -"bdt" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison/upper) "bdu" = ( /obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, @@ -5534,31 +5595,6 @@ }, /turf/open/floor/catwalk_floor/iron, /area/station/engineering/atmos/office) -"beF" = ( -/obj/structure/table/wood, -/obj/item/paper_bin/carbon{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/item/stamp{ - pixel_x = -3; - pixel_y = 9 - }, -/obj/item/stamp/hop{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/item/stamp/denied{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/structure/cable, -/obj/machinery/recharger{ - pixel_x = 8; - pixel_y = 5 - }, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hop) "beI" = ( /obj/structure/lattice, /obj/structure/billboard/nanotrasen, @@ -5591,6 +5627,10 @@ name = "Ultra Reinforced Glass Floor" }, /area/station/ai_monitored/turret_protected/aisat_interior) +"bfk" = ( +/obj/structure/ore_box, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "bfo" = ( /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood, @@ -5643,6 +5683,25 @@ }, /turf/open/floor/iron, /area/station/cargo/sorting) +"bfU" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Prison Wing" + }, +/obj/machinery/door/poddoor/preopen{ + id = "Prison Gate"; + name = "Prison Blast Door" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery/blue, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + 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/mapping_helpers/airlock/access/all/security/brig, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) "bga" = ( /obj/structure/chair/office, /obj/effect/decal/cleanable/dirt, @@ -5744,6 +5803,12 @@ /obj/structure/sign/departments/chemistry/pharmacy/directional/east, /turf/open/floor/iron, /area/station/hallway/primary/upper) +"bhs" = ( +/obj/effect/turf_decal/vg_decals/numbers/one, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "bhB" = ( /obj/machinery/door/airlock/external{ space_dir = 1 @@ -5883,25 +5948,6 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, /area/station/maintenance/fore/upper) -"biV" = ( -/obj/structure/table, -/obj/item/clothing/suit/jacket/straight_jacket, -/obj/item/clothing/suit/jacket/straight_jacket, -/obj/item/clothing/mask/muzzle, -/obj/item/clothing/mask/muzzle, -/obj/item/clothing/glasses/blindfold, -/obj/item/clothing/glasses/blindfold, -/obj/item/restraints/legcuffs, -/obj/item/restraints/legcuffs, -/obj/item/storage/box/prisoner, -/obj/item/storage/box/prisoner{ - pixel_y = 8 - }, -/obj/item/paper/fluff/genpop_instructions, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/security/execution/transfer) "biW" = ( /obj/structure/table, /obj/item/paper_bin{ @@ -5950,6 +5996,11 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/security/checkpoint/escape) +"bjD" = ( +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/security/execution/transfer) "bjE" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/stripes, @@ -6075,12 +6126,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/maintenance/clown_chamber) -"bkC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/security/prison) "bkG" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/delivery, @@ -6234,6 +6279,7 @@ }, /obj/effect/turf_decal/siding/wood/corner, /obj/effect/landmark/start/hangover, +/obj/machinery/atm/directional/east, /turf/open/floor/wood, /area/station/hallway/primary/central) "bmu" = ( @@ -6332,18 +6378,6 @@ }, /turf/open/floor/iron/dark/small, /area/station/security/brig) -"bng" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/fans/tiny/forcefield, -/obj/machinery/door/poddoor/preopen{ - id = "securityblast2"; - name = "Shuttle Bay Blast Door" - }, -/turf/open/floor/plating, -/area/station/security/prison/upper) "bnj" = ( /turf/open/floor/iron/dark/side{ dir = 6 @@ -6517,18 +6551,6 @@ /obj/item/computer_disk, /turf/open/floor/iron, /area/station/science/ordnance) -"bop" = ( -/obj/structure/table, -/obj/item/poster/random_official{ - pixel_y = 10 - }, -/obj/item/poster/random_official, -/obj/machinery/firealarm/directional/north, -/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/mechbay) "bos" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt, @@ -6626,14 +6648,6 @@ /obj/effect/spawner/random/maintenance/two, /turf/open/floor/plating, /area/station/maintenance/port/central) -"boS" = ( -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/radio/intercom/directional/south, -/obj/structure/cable, -/turf/open/floor/iron/dark/side, -/area/station/security/execution/transfer) "boW" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -6832,18 +6846,6 @@ /obj/item/stack/sheet/cardboard, /turf/open/floor/plating, /area/station/maintenance/department/medical/morgue) -"bqH" = ( -/obj/structure/table/reinforced, -/obj/item/folder/blue{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/folder/yellow, -/obj/item/lighter, -/obj/item/stamp/ce, -/obj/effect/turf_decal/tile/yellow/full, -/turf/open/floor/iron/large, -/area/station/command/heads_quarters/ce) "bqI" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 8 @@ -6875,6 +6877,13 @@ }, /turf/open/floor/carpet/blue, /area/station/command/heads_quarters/captain/private) +"bqY" = ( +/obj/effect/decal/remains/human, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison) "brg" = ( /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, @@ -7083,17 +7092,6 @@ "bsG" = ( /turf/closed/wall/r_wall, /area/space/nearstation) -"bsN" = ( -/obj/item/radio/intercom/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera/directional/south{ - c_tag = "Security - Shuttle Bay East" - }, -/turf/open/floor/iron/stairs/medium{ - dir = 8 - }, -/area/station/security/prison/upper) "bsR" = ( /obj/structure/railing{ dir = 4 @@ -7280,6 +7278,18 @@ dir = 4 }, /area/station/hallway/secondary/command) +"bvh" = ( +/obj/machinery/door/airlock/research{ + name = "Cytology Lab" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/obj/structure/liquid_barrier, +/turf/open/floor/iron/white, +/area/station/science/cytology) "bvj" = ( /obj/structure/rack, /obj/item/reagent_containers/blood/random, @@ -7291,15 +7301,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/medical/abandoned) -"bvl" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) "bvs" = ( /obj/structure/table, /obj/item/stack/sheet/iron/five, @@ -7371,23 +7372,6 @@ }, /turf/open/floor/iron/dark/small, /area/station/cargo/miningdock) -"bvP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - color = "#DE3A3A"; - dir = 5 - }, -/obj/effect/turf_decal/siding/thinplating_new/dark{ - dir = 5 - }, -/turf/open/floor/iron/dark/side{ - dir = 5 - }, -/area/station/security/execution/transfer) "bvS" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command/glass{ @@ -7416,6 +7400,12 @@ /obj/machinery/holopad/secure, /turf/open/floor/iron, /area/station/command/bridge) +"bwi" = ( +/obj/structure/closet/crate/bin, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron, +/area/station/security/execution/transfer) "bwk" = ( /obj/structure/dresser, /turf/open/floor/carpet/green, @@ -7459,6 +7449,18 @@ }, /turf/open/floor/plating, /area/station/science/research/abandoned) +"bwU" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 2; + height = 5; + name = "fore bay 1"; + roundstart_template = /datum/map_template/shuttle/labour/nova; + shuttle_id = "laborcamp_home"; + width = 9 + }, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "bwW" = ( /obj/structure/flora/bush/jungle/b/style_2, /obj/structure/flora/bush/flowers_pp, @@ -7552,20 +7554,6 @@ dir = 1 }, /area/station/science/xenobiology) -"bxW" = ( -/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/security/glass{ - id_tag = "permainner"; - name = "Permabrig Transfer" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "perma-transfer" - }, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) "bya" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 1 @@ -7722,6 +7710,22 @@ /obj/machinery/duct, /turf/open/floor/iron, /area/station/science/xenobiology) +"bzd" = ( +/obj/machinery/button/door/directional/west{ + id = "prison release"; + name = "Labor Camp Shuttle Lockdown"; + req_access = list("brig") + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/camera/directional/east{ + c_tag = "Security - Security Labor Transfer Dock"; + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "bzj" = ( /obj/structure/rack, /obj/effect/turf_decal/bot, @@ -7747,6 +7751,9 @@ }, /turf/open/floor/iron/dark, /area/station/service/chapel) +"bzz" = ( +/turf/closed/wall/rust, +/area/station/security/bitden) "bzA" = ( /obj/effect/turf_decal/bot, /obj/vehicle/ridden/wheelchair{ @@ -7950,6 +7957,18 @@ dir = 1 }, /area/station/hallway/secondary/command) +"bBw" = ( +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/prison) "bBC" = ( /obj/machinery/holopad, /turf/open/floor/wood/parquet, @@ -7978,6 +7997,13 @@ dir = 8 }, /area/station/service/hydroponics) +"bBR" = ( +/obj/item/radio/intercom/directional/east, +/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/station/security/prison/upper) "bBU" = ( /obj/machinery/door/airlock/maintenance_hatch, /obj/effect/mapping_helpers/airlock/abandoned, @@ -8086,6 +8112,14 @@ }, /turf/open/floor/grass, /area/station/security/prison/garden) +"bCW" = ( +/obj/structure/chair/office, +/obj/effect/turf_decal/vg_decals/numbers/four, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "bDe" = ( /obj/effect/turf_decal/siding/wood, /obj/structure/cable, @@ -8450,13 +8484,17 @@ /obj/machinery/light/directional/east, /turf/open/floor/wood, /area/station/service/lawoffice) -"bGT" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 5 +"bGO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/garbage, +/obj/effect/mapping_helpers/broken_floor, +/obj/item/paper/fluff{ + default_raw_text = "Going to miss this spot once the shift ends, wonder who'll be the next one to find it.. whoever reads this, the stash is yours."; + name = "Assistant's note" }, -/obj/structure/railing, -/turf/closed/wall/rust, -/area/station/security/bitden) +/turf/open/floor/wood, +/area/station/security/prison) "bHc" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -8890,6 +8928,14 @@ }, /turf/open/floor/wood, /area/station/service/bar/atrium) +"bLp" = ( +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/dark/side, +/area/station/security/execution/transfer) "bLs" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/trash_pile, @@ -8958,6 +9004,13 @@ "bLL" = ( /turf/open/floor/plating, /area/station/maintenance/department/security/lower) +"bLP" = ( +/obj/structure/cable, +/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/dark, +/area/station/security/prison) "bLR" = ( /obj/effect/turf_decal/stripes/white/box, /obj/machinery/porta_turret/ai, @@ -9360,20 +9413,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/ai_monitored/turret_protected/ai) -"bPE" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Gulag Processing" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/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/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron, -/area/station/security/prison/upper) "bPG" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -9562,12 +9601,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, /area/station/maintenance/rus_gambling) -"bRo" = ( -/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/station/security/prison/upper) "bRp" = ( /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/north, @@ -9626,19 +9659,6 @@ /obj/item/reagent_containers/cup/glass/mug/britcup, /turf/open/floor/wood, /area/station/hallway/primary/central) -"bRW" = ( -/obj/machinery/door/airlock/research{ - name = "Cytology Lab" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/liquid_barrier, -/turf/open/floor/iron/white, -/area/station/science/cytology) "bSa" = ( /obj/structure/table, /obj/structure/window/reinforced/spawner/directional/east, @@ -9680,11 +9700,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/service/power_station) -"bSH" = ( -/obj/machinery/vending/wallmed/directional/north, -/obj/structure/table/optable, -/turf/open/floor/iron/dark, -/area/station/security/medical) "bSN" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/wood/parquet, @@ -9736,6 +9751,10 @@ }, /turf/open/floor/iron/dark, /area/station/ai_monitored/command/storage/eva) +"bSZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall, +/area/station/security/prison) "bTb" = ( /obj/structure/table/reinforced, /obj/machinery/light_switch/directional/west, @@ -9871,6 +9890,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/department/security/greater) +"bUd" = ( +/obj/machinery/computer/cryopod{ + dir = 1; + pixel_y = -30 + }, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/security/prison) "bUe" = ( /turf/open/floor/wood, /area/station/service/barber) @@ -9910,21 +9940,6 @@ }, /turf/open/floor/iron, /area/station/commons/dorms) -"bUp" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger{ - pixel_x = -5; - pixel_y = -3 - }, -/obj/item/storage/box/evidence{ - pixel_x = 9; - pixel_y = 8 - }, -/obj/item/storage/box/prisoner{ - pixel_x = 9 - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "bUu" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/curtain/bounty, @@ -10003,16 +10018,6 @@ /obj/structure/bookcase/random/nonfiction, /turf/open/floor/wood, /area/station/command/meeting_room/council) -"bVB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/table/reinforced/rglass, -/obj/machinery/computer/records/medical/laptop{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/security/medical) "bVF" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/tile/neutral, @@ -10092,6 +10097,20 @@ /obj/item/flatpacked_machine/rtg, /turf/open/floor/plating, /area/station/maintenance/department/engineering/atmos_aux_port) +"bWq" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/machinery/netpod, +/obj/structure/sign/poster/contraband/random/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/item/food/pizzaslice/sassysage{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron/dark/small, +/area/station/security/bitden) "bWr" = ( /obj/structure/cable, /turf/open/floor/wood, @@ -10294,13 +10313,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, /area/station/command/heads_quarters/hop) -"bYs" = ( -/obj/structure/cable, -/obj/item/electronics/airlock, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "bYx" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -10487,6 +10499,12 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/security/prison/mess) +"caP" = ( +/obj/effect/turf_decal/trimline/blue/filled/end{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/security/execution/transfer) "caS" = ( /obj/item/kirbyplants/random, /obj/effect/turf_decal/trimline/blue/filled/line{ @@ -10601,6 +10619,21 @@ }, /turf/open/floor/iron, /area/station/security/prison/workout) +"cbK" = ( +/obj/structure/closet/crate/bin, +/obj/effect/spawner/random/trash/garbage, +/obj/effect/spawner/random/trash/garbage, +/obj/effect/spawner/random/contraband/prison, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/security/prison) "cbL" = ( /obj/effect/turf_decal/delivery, /obj/machinery/disposal/delivery_chute, @@ -10715,6 +10748,13 @@ /obj/machinery/light/directional/north, /turf/open/floor/wood, /area/station/command/heads_quarters/hop) +"ccW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/execution/transfer) "cdd" = ( /obj/structure/chair/sofa/bench{ dir = 4; @@ -10794,21 +10834,6 @@ /obj/item/radio/intercom/directional/west, /turf/open/floor/iron/dark, /area/station/science/auxlab/firing_range) -"cdU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/red/corner, -/obj/effect/turf_decal/trimline/red/filled/line{ - color = "#DE3A3A"; - dir = 9 - }, -/obj/effect/turf_decal/siding/thinplating_new/dark{ - dir = 9 - }, -/turf/open/floor/iron/dark/side{ - dir = 9 - }, -/area/station/security/execution/transfer) "cdY" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, @@ -11011,6 +11036,15 @@ /obj/machinery/duct, /turf/open/floor/iron, /area/station/service/hydroponics) +"cfO" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 10 + }, +/obj/structure/chair/sofa/corp/corner, +/obj/machinery/light/small/blacklight/directional/east, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark/small, +/area/station/security/bitden) "cfP" = ( /obj/structure/closet/crate/bin, /obj/effect/spawner/random/trash/garbage, @@ -11044,10 +11078,6 @@ /obj/machinery/camera/directional/west, /turf/open/floor/engine/vacuum, /area/station/maintenance/department/engineering/atmos_aux_port) -"cgu" = ( -/obj/effect/turf_decal/box/white/corners, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "cgB" = ( /obj/structure/showcase/cyborg/old{ pixel_y = 20 @@ -11081,6 +11111,10 @@ "cgN" = ( /turf/closed/wall/rust, /area/station/maintenance/department/engineering/atmos_aux_port) +"cgO" = ( +/obj/structure/closet/crate/wooden, +/turf/open/floor/iron, +/area/station/security/prison/upper) "cgP" = ( /obj/structure/table, /obj/item/paper_bin{ @@ -11189,13 +11223,6 @@ /obj/machinery/portable_atmospherics/canister/nitrous_oxide, /turf/open/floor/iron/dark, /area/station/security/execution/education) -"chC" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/prison/upper) "chF" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -11220,6 +11247,7 @@ /obj/structure/bed/double, /obj/item/bedsheet/green/double, /obj/machinery/light_switch/directional/east, +/obj/machinery/station_map/engineering/directional/south, /turf/open/floor/carpet/green, /area/station/commons/dorms/room2) "chS" = ( @@ -11300,6 +11328,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/command/gateway) +"ciC" = ( +/obj/structure/railing, +/turf/closed/wall, +/area/station/security/bitden) "ciE" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -11331,18 +11363,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood, /area/station/maintenance/abandon_art_studio) -"ciS" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/machinery/recharger{ - pixel_x = 8; - pixel_y = 3 - }, -/turf/open/floor/iron, -/area/station/security/prison/upper) "ciT" = ( /obj/structure/cable, /turf/open/floor/iron/dark, @@ -11523,23 +11543,6 @@ dir = 1 }, /area/station/hallway/secondary/entry) -"ckZ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/line{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/security/brig) "clb" = ( /obj/structure/cable, /turf/open/floor/iron/stairs{ @@ -11658,6 +11661,12 @@ /obj/machinery/duct, /turf/open/floor/iron/freezer, /area/station/commons/toilet/restrooms) +"cmx" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/security/prison/upper) "cmy" = ( /obj/effect/spawner/random/structure/closet_maintenance, /turf/open/floor/plating, @@ -12010,17 +12019,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/department/engineering/engine_aft_starboard) -"cpw" = ( -/obj/structure/table/reinforced/rglass, -/obj/item/razor{ - pixel_x = -8 - }, -/obj/item/razor, -/obj/machinery/camera/directional/north, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/security/execution/transfer) "cpE" = ( /obj/structure/marker_beacon/burgundy, /turf/open/floor/iron/shuttle/evac/airless, @@ -12093,6 +12091,13 @@ dir = 8 }, /area/station/hallway/primary/port) +"cqv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/maintenance_hatch, +/obj/structure/cable, +/turf/open/floor/iron/smooth, +/area/station/security/bitden) "cqy" = ( /obj/machinery/holopad, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -12538,14 +12543,6 @@ }, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/hos) -"cue" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/obj/machinery/duct, -/turf/open/floor/iron/white/corner, -/area/station/security/medical) "cuf" = ( /turf/closed/wall, /area/station/engineering/atmos/office) @@ -12561,13 +12558,6 @@ }, /turf/open/floor/wood, /area/station/service/cafeteria) -"cuh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/photobooth/security, -/turf/open/floor/iron/dark/side{ - dir = 9 - }, -/area/station/security/execution/transfer) "cuk" = ( /obj/machinery/portable_atmospherics/scrubber, /obj/effect/turf_decal/bot, @@ -13008,15 +12998,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/security/range) -"cyc" = ( -/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, -/turf/open/floor/iron/stairs/right{ - dir = 8 - }, -/area/station/security/prison/upper) "cyg" = ( /obj/machinery/door/airlock/external{ space_dir = 4 @@ -13288,15 +13269,6 @@ /obj/structure/closet/secure_closet/personal/cabinet, /turf/open/floor/carpet/royalblack, /area/station/commons/dorms/room8) -"cAi" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/obj/structure/chair/office, -/obj/effect/landmark/start/brig_physician, -/turf/open/floor/iron/white/side, -/area/station/security/medical) "cAj" = ( /obj/effect/turf_decal/stripes{ dir = 8 @@ -13349,6 +13321,15 @@ }, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) +"cAO" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/prison) "cAV" = ( /obj/machinery/atmospherics/pipe/smart/simple/orange/hidden{ dir = 6 @@ -13454,6 +13435,16 @@ dir = 1 }, /area/station/ai_monitored/security/armory) +"cBJ" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/stairs{ + dir = 4 + }, +/area/station/security/prison/upper) "cBY" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/power/smes/engineering, @@ -13471,6 +13462,25 @@ }, /turf/open/floor/glass/reinforced, /area/station/security/prison/safe) +"cCh" = ( +/obj/structure/table, +/obj/item/clothing/suit/jacket/straight_jacket, +/obj/item/clothing/suit/jacket/straight_jacket, +/obj/item/clothing/mask/muzzle, +/obj/item/clothing/mask/muzzle, +/obj/item/clothing/glasses/blindfold, +/obj/item/clothing/glasses/blindfold, +/obj/item/restraints/legcuffs, +/obj/item/restraints/legcuffs, +/obj/item/storage/box/prisoner, +/obj/item/storage/box/prisoner{ + pixel_y = 8 + }, +/obj/item/paper/fluff/genpop_instructions, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/execution/transfer) "cCk" = ( /obj/structure/flora/bush/stalky, /obj/structure/flora/ocean/coral, @@ -13518,6 +13528,10 @@ /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plating, /area/station/common/pool) +"cCU" = ( +/obj/effect/decal/cleanable/oil/streak, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "cCX" = ( /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/east, @@ -13679,6 +13693,20 @@ /obj/item/clothing/head/utility/welding, /turf/open/floor/iron/dark, /area/station/engineering/main) +"cDV" = ( +/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/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/prison) "cDZ" = ( /obj/structure/railing, /turf/open/floor/plating/rust, @@ -13704,6 +13732,13 @@ /mob/living/basic/drone/snowflake/bardrone, /turf/open/floor/wood/parquet, /area/station/command/heads_quarters/nt_rep) +"cEm" = ( +/obj/structure/cable, +/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/dark/side, +/area/station/security/prison) "cEo" = ( /obj/machinery/light/directional/south, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -13918,11 +13953,6 @@ }, /turf/open/floor/wood, /area/station/medical/psychology) -"cFI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/prison/upper) "cFK" = ( /obj/effect/turf_decal/stripes{ dir = 1 @@ -13969,6 +13999,25 @@ "cGl" = ( /turf/open/floor/glass, /area/station/commons/dorms) +"cGn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/corner, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/execution/transfer) "cGp" = ( /obj/item/kirbyplants/random, /obj/effect/turf_decal/siding/wood/corner{ @@ -14169,18 +14218,6 @@ /obj/machinery/duct, /turf/open/floor/iron/cafeteria, /area/station/commons/toilet/auxiliary) -"cHs" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/fans/tiny/forcefield, -/obj/machinery/door/poddoor/preopen{ - id = "securityblast1"; - name = "Shuttle Bay Blast Door" - }, -/turf/open/floor/plating, -/area/station/security/prison/upper) "cHF" = ( /obj/structure/flora/grass/jungle, /obj/structure/flora/bush/grassy, @@ -14360,6 +14397,10 @@ "cIP" = ( /turf/closed/wall, /area/station/security/prison) +"cIT" = ( +/obj/structure/chair/sofa/bench/left, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "cJc" = ( /obj/structure/table/reinforced, /obj/item/storage/box/ids{ @@ -14471,6 +14512,12 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/commons/dorms) +"cKc" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "cKf" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/effect/turf_decal/siding/thinplating/dark, @@ -14636,13 +14683,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"cLP" = ( -/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, -/turf/open/floor/iron, -/area/station/security/execution/transfer) "cLR" = ( /obj/structure/girder, /turf/open/floor/plating, @@ -14755,6 +14795,18 @@ /obj/item/mod/module/thermal_regulator, /turf/open/floor/iron, /area/station/medical/storage) +"cMQ" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 6 + }, +/obj/machinery/light/small/blacklight/directional/west, +/obj/structure/trash_pile, +/obj/effect/spawner/random/trash/garbage, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/effect/mapping_helpers/apc/cell_10k, +/turf/open/floor/iron/dark/small, +/area/station/security/bitden) "cMX" = ( /obj/structure/table/reinforced, /obj/item/crowbar/red, @@ -14813,6 +14865,13 @@ /obj/effect/turf_decal/trimline/purple/line, /turf/open/floor/iron/white/side, /area/station/science/research) +"cNQ" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/red/filled/corner, +/turf/open/floor/iron/dark/corner, +/area/station/security/prison) "cNU" = ( /obj/structure/closet/lasertag/red, /obj/effect/turf_decal/tile/red/real_red/half/contrasted, @@ -15045,14 +15104,6 @@ /obj/structure/cable, /turf/open/floor/wood, /area/station/commons/dorms/room5) -"cQf" = ( -/obj/structure/table/rolling, -/obj/item/wrench{ - pixel_y = 3 - }, -/obj/item/crowbar, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "cQg" = ( /obj/effect/turf_decal/stripes{ dir = 6 @@ -15080,6 +15131,17 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/commons/dorms) +"cQU" = ( +/obj/effect/turf_decal/delivery/white{ + color = "#00ff00"; + name = "green" + }, +/obj/machinery/cryopod{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark, +/area/station/security/prison) "cQY" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -15462,6 +15524,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/aft/upper) +"cUG" = ( +/obj/effect/turf_decal/box/white/corners{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "cUJ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, @@ -15759,6 +15827,13 @@ }, /turf/open/floor/iron, /area/station/commons/vacant_room/commissary) +"cXS" = ( +/obj/item/stack/sheet/cardboard, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) "cYb" = ( /obj/structure/rack/shelf, /obj/effect/turf_decal/bot, @@ -15949,6 +16024,11 @@ }, /turf/open/floor/iron/dark, /area/station/science/xenobiology/control) +"cZN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/security/prison/upper) "cZQ" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -16111,6 +16191,11 @@ }, /turf/open/floor/iron/dark, /area/station/engineering/atmos/test_chambers) +"dbJ" = ( +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/security/prison) "dbM" = ( /obj/machinery/duct, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -16221,14 +16306,6 @@ /obj/machinery/duct, /turf/open/floor/iron, /area/station/hallway/secondary/service) -"dda" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/duct, -/turf/open/floor/plating, -/area/station/security/prison) "ddd" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -16646,6 +16723,10 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/white, /area/station/medical/surgery/theatre) +"dhi" = ( +/obj/machinery/light/floor/has_bulb, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "dhs" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/machinery/computer/crew{ @@ -17313,14 +17394,6 @@ }, /turf/open/floor/engine, /area/station/science/ordnance) -"dnD" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/security/execution/transfer) "dnF" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -17357,14 +17430,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"dnO" = ( -/obj/structure/chair/office, -/obj/structure/window/spawner/directional/west, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "dnV" = ( /obj/structure/table/wood, /obj/structure/closet/mini_fridge{ @@ -17427,17 +17492,21 @@ }, /turf/open/floor/iron/white, /area/station/science/xenobiology/control) -"doG" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/prison/upper) "doH" = ( /obj/machinery/light/small/broken/directional/east, /obj/structure/cable, /turf/open/floor/iron/stairs, /area/station/maintenance/cult_chapel_maint) +"doI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/mechbay) "doP" = ( /obj/structure/closet/emcloset, /turf/open/floor/plating, @@ -17453,6 +17522,14 @@ }, /turf/open/floor/iron, /area/station/science/ordnance) +"dpa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/falsewall, +/turf/open/floor/plating, +/area/station/security/prison) "dpg" = ( /obj/machinery/light/small/broken/directional/north, /obj/effect/decal/cleanable/dirt, @@ -17572,20 +17649,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/abandon_arcade) -"dqS" = ( -/obj/structure/table/reinforced, -/obj/item/folder/red, -/obj/item/pen/red, -/obj/item/stamp/hos, -/obj/machinery/keycard_auth{ - pixel_x = 15 - }, -/obj/item/clothing/accessory/badge/holo/hos{ - pixel_x = -7; - pixel_y = 9 - }, -/turf/open/floor/carpet/red, -/area/station/command/heads_quarters/hos) "dqY" = ( /obj/effect/turf_decal/tile/purple/half{ dir = 4 @@ -17673,6 +17736,17 @@ dir = 1 }, /area/station/science/xenobiology) +"drN" = ( +/obj/machinery/gulag_item_reclaimer{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/camera/directional/east{ + c_tag = "Security - Prisoner Labor Transfer Dock" + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "drQ" = ( /obj/machinery/door/airlock/bathroom{ name = "Restroom" @@ -17694,11 +17768,6 @@ }, /turf/open/floor/grass, /area/station/medical/aslyum) -"dsi" = ( -/obj/effect/turf_decal/bot, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/station/security/prison) "dsm" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/machinery/computer/atmos_alert{ @@ -17847,17 +17916,6 @@ /obj/item/kirbyplants/organic/plant22, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/hos) -"dtw" = ( -/obj/structure/table/wood, -/obj/structure/showcase/machinery/microwave{ - desc = "The smell tells you it at least used to work at one point in time."; - name = "Old broken microwave"; - pixel_y = 7 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/security/prison) "dtx" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -18043,6 +18101,17 @@ "dvB" = ( /turf/closed/wall/r_wall, /area/station/engineering/storage/tech) +"dvL" = ( +/obj/structure/table/wood, +/obj/structure/showcase/machinery/microwave{ + desc = "The smell tells you it at least used to work at one point in time."; + name = "Old broken microwave"; + pixel_y = 7 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/station/security/prison) "dvY" = ( /turf/closed/wall/rust, /area/station/maintenance/department/medical/morgue) @@ -18055,9 +18124,6 @@ /obj/machinery/light/directional/east, /turf/open/floor/carpet/red, /area/station/command/heads_quarters/hos) -"dwh" = ( -/turf/open/floor/iron, -/area/station/security/prison/upper) "dwi" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -18121,11 +18187,6 @@ /obj/effect/turf_decal/arrows/red, /turf/open/floor/engine/hull, /area/space/nearstation) -"dwK" = ( -/obj/structure/chair/sofa/bench/right, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "dwM" = ( /obj/machinery/power/port_gen/pacman/pre_loaded, /obj/structure/railing{ @@ -18143,18 +18204,6 @@ }, /turf/open/floor/grass, /area/station/hallway/primary/central) -"dwO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/red/filled/line{ - color = "#DE3A3A"; - dir = 9 - }, -/obj/effect/turf_decal/trimline/red/corner, -/turf/open/floor/iron/dark/side{ - dir = 9 - }, -/area/station/security/prison) "dwR" = ( /obj/structure/rack/gunrack, /turf/open/floor/plating, @@ -18323,6 +18372,27 @@ "dyT" = ( /turf/open/floor/plating, /area/station/maintenance/disposal) +"dzj" = ( +/obj/machinery/door/airlock/research{ + name = "Xenobiology Controll Room" + }, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "XenoOffice"; + name = "Xenobiology Controll Room Shutters" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 4 + }, +/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/mapping_helpers/airlock/access/all/science/xenobio, +/obj/structure/liquid_barrier, +/turf/open/floor/iron/white, +/area/station/science/xenobiology/control) "dzs" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -18364,10 +18434,6 @@ }, /turf/open/floor/circuit, /area/station/ai_monitored/turret_protected/ai) -"dzS" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison) "dzT" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ dir = 4 @@ -18392,14 +18458,6 @@ /obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/eva) -"dAg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/obj/structure/cable, -/obj/machinery/duct, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) "dAm" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -18484,17 +18542,6 @@ /obj/structure/transit_tube/crossing/horizontal, /turf/open/floor/iron/shuttle/arrivals/airless, /area/space/nearstation) -"dBh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/garbage, -/obj/effect/mapping_helpers/broken_floor, -/obj/item/paper/fluff{ - default_raw_text = "Going to miss this spot once the shift ends, wonder who'll be the next one to find it.. whoever reads this, the stash is yours."; - name = "Assistant's note" - }, -/turf/open/floor/wood, -/area/station/security/prison) "dBj" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -18509,16 +18556,6 @@ /obj/machinery/newscaster/directional/east, /turf/open/floor/carpet/purple, /area/station/science/breakroom) -"dBq" = ( -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/delivery/red, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/window/preopen{ - id = "prisonlockdown1"; - name = "Lockdown" - }, -/turf/open/floor/iron/dark, -/area/station/security/prison) "dBr" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Cargo Maintenance" @@ -18825,6 +18862,33 @@ }, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) +"dEj" = ( +/obj/structure/table/wood, +/obj/item/folder/blue{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/folder/blue, +/obj/item/stamp/denied{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/stamp/head/captain{ + pixel_x = 5; + pixel_y = 2 + }, +/obj/item/stamp{ + pixel_x = -6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/window/brigdoor/right/directional/west{ + name = "Captain's Desk"; + req_access = list("captain") + }, +/turf/open/floor/carpet/blue, +/area/station/command/heads_quarters/captain/private) "dEz" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/neutral{ @@ -18835,6 +18899,14 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/hallway/primary/upper) +"dEE" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/bounty/start_closed, +/turf/open/floor/iron/dark/herringbone, +/area/station/security/bitden) "dEF" = ( /obj/machinery/atmospherics/pipe/smart/simple/supply/visible/layer4{ dir = 5 @@ -18999,6 +19071,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) +"dGm" = ( +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/execution/transfer) "dGp" = ( /obj/effect/turf_decal/siding/thinplating/light{ dir = 4 @@ -19126,10 +19203,6 @@ /obj/structure/closet/crate/medical, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"dHq" = ( -/obj/structure/cable, -/turf/open/floor/iron/dark/small, -/area/station/security/prison) "dHx" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -19201,6 +19274,21 @@ dir = 1 }, /area/station/security/checkpoint/science/research) +"dIh" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "dIj" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -19247,6 +19335,11 @@ /obj/structure/flora/bush/stalky, /turf/open/water/overlay, /area/station/hallway/primary/central) +"dIC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "dIF" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/delivery, @@ -19634,6 +19727,15 @@ dir = 4 }, /area/station/hallway/secondary/command) +"dLD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "dLE" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -19701,6 +19803,17 @@ }, /turf/open/floor/engine, /area/station/engineering/supermatter/room) +"dLV" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/prison) "dLW" = ( /obj/machinery/module_duplicator, /turf/open/floor/iron/dark/small, @@ -19871,6 +19984,15 @@ }, /turf/open/floor/carpet, /area/station/medical/patients_rooms) +"dOd" = ( +/obj/effect/turf_decal/stripes/end, +/obj/machinery/shower/directional/south, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/item/reagent_containers/blood, +/obj/machinery/iv_drip, +/turf/open/floor/iron/white/textured, +/area/station/security/medical) "dOk" = ( /obj/effect/turf_decal/tile/red, /obj/structure/cable, @@ -19969,14 +20091,6 @@ dir = 8 }, /area/station/hallway/primary/port) -"dQz" = ( -/obj/structure/table/reinforced, -/obj/item/wrench, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "dQD" = ( /obj/effect/turf_decal/siding/wood, /obj/machinery/door/airlock/captain{ @@ -20047,6 +20161,22 @@ "dRu" = ( /turf/open/floor/iron/dark, /area/station/service/barber) +"dRF" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/obj/structure/table/reinforced/rglass, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/item/roller, +/obj/item/clothing/neck/stethoscope, +/turf/open/floor/iron/white/side{ + dir = 4 + }, +/area/station/security/medical) "dRI" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/loading_area{ @@ -20073,6 +20203,13 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/mineral/plastitanium/red, /area/station/maintenance/cult_chapel_maint) +"dSa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/security/execution/transfer) "dSd" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/stripes{ @@ -20320,16 +20457,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/fore/upper) -"dTy" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/tile/dark_blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/mechbay) "dTz" = ( /obj/structure/extinguisher_cabinet/directional/west, /obj/machinery/light/directional/south, @@ -20551,15 +20678,6 @@ }, /turf/open/floor/mineral/plastitanium, /area/station/science/robotics/lab) -"dVC" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Flight Control" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/stairs/old, -/area/station/security/prison/upper) "dVD" = ( /obj/machinery/atmospherics/components/binary/pump/on{ dir = 1; @@ -20908,6 +21026,7 @@ /obj/effect/turf_decal/tile/yellow/half/contrasted{ dir = 1 }, +/obj/machinery/atm/directional/east, /turf/open/floor/iron, /area/station/commons/storage/primary) "dZR" = ( @@ -21333,6 +21452,7 @@ dir = 4 }, /obj/effect/turf_decal/tile/neutral, +/obj/machinery/station_map/engineering/directional/east, /turf/open/floor/iron, /area/station/commons/dorms) "efd" = ( @@ -21516,6 +21636,13 @@ /obj/machinery/shieldgen, /turf/open/floor/iron/dark, /area/station/ai_monitored/command/storage/eva/upper) +"egV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atm/directional/west, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) "egW" = ( /obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ dir = 4 @@ -21755,10 +21882,6 @@ }, /turf/open/floor/wood, /area/station/service/cafeteria) -"ejd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/prison/upper) "eje" = ( /obj/structure/cable, /turf/open/floor/iron/cafeteria, @@ -21823,6 +21946,10 @@ /obj/machinery/camera/autoname/directional/north, /turf/open/floor/carpet/black, /area/station/service/barber) +"eka" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/security/prison/upper) "ekg" = ( /obj/structure/table/wood, /obj/item/stack/sheet/mineral/sandstone/thirty, @@ -22213,16 +22340,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/science/research/abandoned) -"eoQ" = ( -/obj/effect/turf_decal/delivery/white{ - color = "#00ff00"; - name = "green" - }, -/obj/machinery/cryopod{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/prison) "eoV" = ( /obj/effect/turf_decal/trimline/purple/filled/line, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -22295,6 +22412,7 @@ /obj/item/bedsheet/medical{ dir = 1 }, +/obj/machinery/station_map/engineering/directional/west, /turf/open/floor/iron/white, /area/station/medical/patients_rooms) "epH" = ( @@ -22515,6 +22633,13 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron/kitchen, /area/station/service/kitchen/diner) +"esf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/iron/smooth, +/area/station/security/bitden) "esg" = ( /obj/item/trash/waffles, /obj/structure/cable, @@ -22662,13 +22787,6 @@ /obj/machinery/camera/directional/south, /turf/open/floor/wood, /area/station/command/heads_quarters/blueshield) -"etj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/plumbed{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) "etk" = ( /obj/effect/turf_decal/trimline/red/filled/corner{ dir = 1 @@ -22736,26 +22854,6 @@ /obj/structure/flora/bush/grassy, /turf/open/floor/grass, /area/station/service/chapel) -"etR" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/rack, -/obj/item/clothing/under/misc/burial, -/obj/item/clothing/under/misc/burial, -/obj/item/clothing/under/misc/burial, -/obj/item/food/grown/harebell, -/obj/item/food/grown/harebell, -/obj/machinery/newscaster/directional/west, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) "etW" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -23010,6 +23108,11 @@ dir = 1 }, /area/station/security/prison/safe) +"evF" = ( +/obj/machinery/vending/wallmed/directional/north, +/obj/structure/table/optable, +/turf/open/floor/iron/dark, +/area/station/security/medical) "evG" = ( /obj/structure/flora/bush/sparsegrass, /obj/effect/turf_decal/siding/thinplating/light, @@ -23060,26 +23163,6 @@ dir = 1 }, /area/station/medical/aslyum) -"ewk" = ( -/obj/structure/decorative/shelf/crates, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/security/prison/upper) -"ewr" = ( -/obj/machinery/light_switch/directional/east, -/obj/machinery/firealarm/directional/east{ - pixel_x = 38 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/obj/structure/closet/secure_closet/brig_physician, -/obj/item/clothing/suit/jacket/straight_jacket, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white/side{ - dir = 8 - }, -/area/station/security/medical) "ews" = ( /obj/effect/turf_decal/box, /obj/structure/ore_box, @@ -23132,20 +23215,6 @@ "ewF" = ( /turf/closed/wall/rust, /area/station/maintenance/solars/port/fore) -"ewH" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/obj/structure/bodycontainer/crematorium{ - dir = 4; - id = "crematoriumSec" - }, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) "ewI" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -23206,6 +23275,14 @@ }, /turf/open/floor/iron/white, /area/station/medical/medbay/lobby) +"exg" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/security/prison/upper) "exn" = ( /turf/open/floor/carpet, /area/station/service/theater) @@ -23233,6 +23310,14 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/service/abandoned_gambling_den) +"exx" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/execution/transfer) "exy" = ( /obj/structure/rack/shelf, /obj/effect/turf_decal/bot, @@ -23452,14 +23537,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/chemistry) -"ezQ" = ( -/obj/structure/window/reinforced/spawner/directional/west, -/obj/structure/reagent_dispensers/watertank{ - pixel_y = -2 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/security/prison) "ezW" = ( /obj/structure/transit_tube/diagonal{ dir = 4 @@ -23707,6 +23784,11 @@ }, /turf/open/floor/iron/dark, /area/station/security/interrogation) +"eBK" = ( +/obj/machinery/door/window/left/directional/north, +/obj/structure/liquid_barrier, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) "eBL" = ( /obj/item/kirbyplants/random, /turf/open/floor/wood, @@ -23770,6 +23852,13 @@ /obj/effect/spawner/random/entertainment/cigar, /turf/open/floor/plating, /area/station/maintenance/central) +"eCl" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron, +/area/station/security/prison/upper) "eCp" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -23866,6 +23955,15 @@ dir = 8 }, /area/station/commons/locker) +"eCX" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/storage/box/hug{ + pixel_y = 5 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/execution/transfer) "eCZ" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -23928,10 +24026,6 @@ /obj/structure/grille, /turf/open/floor/plating, /area/station/maintenance/department/medical) -"eDx" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/iron, -/area/station/security/prison/upper) "eDF" = ( /turf/closed/wall, /area/station/maintenance/abandon_psych) @@ -24109,15 +24203,6 @@ /obj/effect/spawner/random/trash/mess, /turf/open/floor/plating, /area/station/maintenance/disposal) -"eFq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/security/prison) "eFs" = ( /obj/structure/window/spawner/directional/south, /obj/effect/turf_decal/siding/wood/corner, @@ -24660,13 +24745,6 @@ "eKs" = ( /turf/open/floor/iron/white/smooth_half, /area/station/science/explab) -"eKt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/duct, -/turf/open/floor/iron/dark/small, -/area/station/security/prison) "eKx" = ( /obj/item/kirbyplants/random, /obj/effect/turf_decal/trimline/purple/filled/line{ @@ -24678,13 +24756,6 @@ /obj/structure/chair/stool/directional/east, /turf/open/floor/wood, /area/station/service/bar/atrium) -"eKF" = ( -/obj/structure/chair/office, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "eKU" = ( /turf/closed/wall/r_wall, /area/station/security/prison/visit) @@ -24778,18 +24849,6 @@ dir = 4 }, /area/station/security/prison/workout) -"eLF" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/security_space_law{ - pixel_y = 5 - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) -"eLK" = ( -/turf/open/floor/iron/stairs/right{ - dir = 8 - }, -/area/station/security/prison) "eLU" = ( /turf/closed/wall/r_wall, /area/station/security/checkpoint/science/research) @@ -24898,19 +24957,13 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, +/obj/machinery/station_map/engineering/directional/west, /turf/open/floor/carpet/purple, /area/station/command/heads_quarters/rd) "eMI" = ( /obj/effect/spawner/random/trash/botanical_waste, /turf/open/floor/plating, /area/station/maintenance/department/security/greater) -"eMK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark/side{ - dir = 5 - }, -/area/station/security/execution/transfer) "eMM" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -25179,6 +25232,10 @@ /obj/effect/turf_decal/box, /turf/open/floor/iron/checker, /area/station/engineering/atmos/hfr_room) +"ePh" = ( +/obj/machinery/byteforge, +/turf/open/floor/circuit/green, +/area/station/security/bitden) "ePj" = ( /obj/effect/turf_decal/trimline/blue/filled/warning{ dir = 4 @@ -25201,6 +25258,7 @@ dir = 1 }, /obj/machinery/light_switch/directional/west, +/obj/machinery/station_map/engineering/directional/north, /turf/open/floor/carpet/orange, /area/station/commons/dorms/room1) "ePt" = ( @@ -25250,14 +25308,6 @@ }, /turf/open/floor/engine, /area/station/engineering/atmos/hfr_room) -"ePN" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/security/execution/transfer) "ePO" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -25341,6 +25391,10 @@ }, /turf/open/floor/iron/dark, /area/station/security/brig) +"eQz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/smooth, +/area/station/security/bitden) "eQE" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/bed{ @@ -25354,8 +25408,8 @@ /turf/open/floor/iron/dark, /area/station/security/brig) "eQF" = ( -/obj/machinery/airalarm/directional/east, /obj/effect/landmark/blobstart, +/obj/machinery/station_map/engineering/directional/east, /turf/open/floor/iron/white, /area/station/medical/coldroom) "eQK" = ( @@ -25384,6 +25438,13 @@ /obj/machinery/space_heater, /turf/open/floor/plating, /area/station/maintenance/department/security/lower) +"eQX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/execution/transfer) "eQZ" = ( /obj/item/kirbyplants/random, /turf/open/floor/wood, @@ -25467,10 +25528,10 @@ /area/station/command/gateway) "eRP" = ( /obj/item/kirbyplants/random, -/obj/machinery/status_display/evac/directional/west, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, +/obj/machinery/station_map/engineering/directional/west, /turf/open/floor/wood, /area/station/command/heads_quarters/captain/private) "eRY" = ( @@ -25501,6 +25562,10 @@ /obj/item/trash/energybar, /turf/open/floor/plating, /area/station/maintenance/fore/upper) +"eSf" = ( +/obj/machinery/station_map/engineering/directional/south, +/turf/open/floor/carpet, +/area/station/medical/patients_rooms) "eSi" = ( /obj/effect/turf_decal/stripes/blue/line{ dir = 8 @@ -25521,6 +25586,13 @@ }, /turf/open/floor/mineral/plastitanium, /area/station/science/robotics/lab) +"eSm" = ( +/obj/structure/cable, +/obj/item/screwdriver, +/obj/machinery/light/directional/south, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "eSo" = ( /turf/closed/wall/rust, /area/station/maintenance/department/science/ordnance_maint) @@ -25628,13 +25700,6 @@ /obj/item/radio/intercom/directional/south, /turf/open/floor/carpet/executive, /area/station/command/heads_quarters/blueshield) -"eTH" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/security/prison/upper) "eTI" = ( /obj/structure/table, /obj/item/flashlight/lamp, @@ -25645,11 +25710,6 @@ /obj/machinery/light/directional/east, /turf/open/floor/iron/dark, /area/station/security/interrogation) -"eTL" = ( -/obj/effect/turf_decal/vg_decals/numbers/two, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "eTS" = ( /obj/effect/turf_decal/bot_white, /obj/machinery/door/poddoor/shutters/window/preopen{ @@ -25913,12 +25973,6 @@ "eWt" = ( /turf/closed/wall/r_wall, /area/station/maintenance/department/engineering/engine_aft_starboard) -"eWy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security/execution/transfer) "eWz" = ( /obj/structure/railing{ dir = 8 @@ -26038,13 +26092,6 @@ }, /turf/open/floor/iron/dark, /area/station/engineering/break_room) -"eXo" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/turf/open/floor/plating, -/area/station/security/prison) "eXv" = ( /obj/structure/railing{ dir = 8 @@ -26096,6 +26143,21 @@ /obj/machinery/duct, /turf/open/floor/wood, /area/station/service/barber) +"eYn" = ( +/obj/machinery/light_switch/directional/east, +/obj/machinery/firealarm/directional/east{ + pixel_x = 38 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/obj/structure/closet/secure_closet/brig_physician, +/obj/item/clothing/suit/jacket/straight_jacket, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/side{ + dir = 8 + }, +/area/station/security/medical) "eYp" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -26113,17 +26175,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/side, /area/station/ai_monitored/command/storage/eva) -"eYw" = ( -/obj/machinery/door/airlock/research/glass{ - name = "Xenobiology Kill Room" - }, -/obj/effect/turf_decal/stripes{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/obj/structure/liquid_barrier, -/turf/open/floor/iron/freezer, -/area/station/science/xenobiology) "eYC" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -26374,10 +26425,6 @@ /obj/structure/aquarium/lawyer, /turf/open/floor/carpet/blue, /area/station/service/lawoffice) -"faw" = ( -/obj/effect/decal/cleanable/oil/slippery, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "faz" = ( /obj/effect/spawner/random/trash/cigbutt, /obj/effect/decal/cleanable/dirt, @@ -26461,22 +26508,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) -"fbj" = ( -/obj/effect/turf_decal/trimline/neutral/warning{ - dir = 10 - }, -/obj/effect/turf_decal/trimline/neutral/mid_joiner{ - dir = 8 - }, -/obj/item/radio/intercom/directional/west, -/obj/effect/turf_decal/siding/dark_red, -/obj/machinery/duct, -/obj/structure/cable, -/obj/machinery/light/cold/directional/west, -/turf/open/floor/iron/dark/textured_half{ - dir = 1 - }, -/area/station/security/medical) "fbk" = ( /obj/machinery/door/airlock/external{ name = "Arrivals Dock" @@ -26548,13 +26579,6 @@ /obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/station/maintenance/fore/upper) -"fbS" = ( -/obj/structure/rack, -/obj/item/pushbroom, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/security/execution/transfer) "fbV" = ( /obj/machinery/computer/crew, /turf/open/floor/iron, @@ -26702,25 +26726,6 @@ /obj/structure/cable, /turf/open/floor/circuit/green, /area/station/ai_monitored/turret_protected/ai) -"fdm" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/warning{ - dir = 4 - }, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/security/prison) -"fdu" = ( -/turf/open/floor/iron/dark/side{ - dir = 6 - }, -/area/station/security/prison) "fdz" = ( /obj/machinery/door/airlock/freezer{ name = "Medical Freezer" @@ -26801,6 +26806,18 @@ }, /turf/open/floor/wood, /area/station/hallway/primary/central) +"fej" = ( +/obj/machinery/door/poddoor/preopen{ + id = "prison release"; + name = "Prisoner Processing Blast Door" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/prison/upper) "fem" = ( /obj/structure/disposalpipe/segment{ dir = 6 @@ -26865,12 +26882,23 @@ "feB" = ( /turf/open/floor/noslip, /area/station/maintenance/gag_room) -"feJ" = ( -/obj/structure/railing{ +"feC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 }, -/turf/open/floor/iron/stairs, -/area/station/security/prison/upper) +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/brig) "feL" = ( /obj/effect/turf_decal/delivery, /obj/machinery/door/firedoor, @@ -26929,27 +26957,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood, /area/station/security/detectives_office) -"ffG" = ( -/obj/structure/closet/crate/trashcart/laundry, -/obj/effect/spawner/random/contraband/prison, -/obj/machinery/camera/directional/north{ - c_tag = " Prison - Custodial Closet"; - network = list("ss13","prison") - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/spawner/random/contraband/prison, -/obj/item/clothing/under/rank/prisoner/skirt, -/obj/item/clothing/under/rank/prisoner/skirt, -/obj/item/clothing/under/rank/prisoner/skirt, -/obj/item/clothing/under/rank/prisoner/skirt, -/obj/item/clothing/under/rank/prisoner, -/obj/item/clothing/under/rank/prisoner, -/obj/item/clothing/under/rank/prisoner, -/obj/item/clothing/under/rank/prisoner, -/turf/open/floor/iron/kitchen{ - dir = 1 - }, -/area/station/security/prison) "ffH" = ( /obj/structure/window/spawner/directional/east, /obj/structure/window/spawner/directional/west, @@ -26966,12 +26973,6 @@ "fge" = ( /turf/closed/wall/r_wall, /area/station/ai_monitored/turret_protected/aisat_interior) -"fgg" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "fgj" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/bar/opposingcorners{ @@ -27575,6 +27576,10 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/engineering/break_room) +"fmQ" = ( +/obj/machinery/atm/directional/south, +/turf/open/floor/engine, +/area/station/command/secure_bunker) "fmR" = ( /obj/structure/chair/office{ dir = 8 @@ -27676,12 +27681,6 @@ /obj/effect/spawner/structure/window/reinforced/plasma, /turf/open/floor/plating, /area/station/engineering/atmos) -"fnG" = ( -/obj/structure/reagent_dispensers/plumbed{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/security/prison) "fnH" = ( /obj/effect/turf_decal/stripes, /obj/structure/cable, @@ -27730,6 +27729,14 @@ }, /turf/open/floor/wood/large, /area/station/science/auxlab/firing_range) +"foj" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atm/directional/north, +/turf/open/floor/iron, +/area/station/hallway/primary/upper) "fom" = ( /obj/structure/closet/bombcloset/security, /obj/item/clothing/suit/utility/bomb_suit/security, @@ -27853,6 +27860,12 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/science/breakroom) +"fps" = ( +/obj/machinery/light_switch/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/execution/transfer) "fpt" = ( /obj/structure/table/wood/fancy/red, /obj/item/reagent_containers/cup/glass/bottle/champagne{ @@ -28002,6 +28015,18 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/maintenance/solars/port/fore) +"fqv" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/fans/tiny/forcefield, +/obj/machinery/door/poddoor/preopen{ + id = "securityblast1"; + name = "Shuttle Bay Blast Door" + }, +/turf/open/floor/plating, +/area/station/security/prison/upper) "fqw" = ( /obj/structure/rack, /obj/item/storage/toolbox/mechanical, @@ -28015,6 +28040,15 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron, /area/station/service/chapel) +"fqB" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/camera/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/execution/transfer) "fqD" = ( /obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/co2{ dir = 4 @@ -28036,22 +28070,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark/small, /area/station/security/brig) -"fqM" = ( -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/closet/crate/bin, -/obj/effect/spawner/random/trash/garbage, -/obj/effect/spawner/random/trash/garbage, -/obj/effect/spawner/random/contraband/prison, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/line, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/security/prison) "fqP" = ( /obj/structure/cable, /turf/open/floor/plating, @@ -28116,10 +28134,6 @@ /obj/effect/turf_decal/siding/thinplating_new/dark, /turf/open/floor/iron/dark/textured_edge, /area/station/security/office) -"fri" = ( -/obj/machinery/power/shuttle_engine/heater, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "fro" = ( /obj/effect/turf_decal/delivery, /obj/structure/closet, @@ -28206,12 +28220,24 @@ /obj/structure/flora/bush/flowers_br/style_random, /turf/open/floor/grass, /area/station/hallway/secondary/service) +"fsV" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "fsY" = ( /obj/effect/spawner/random/trash/cigbutt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/department/medical) +"fsZ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/security/prison) "fta" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 8 @@ -28250,10 +28276,6 @@ /obj/structure/window/spawner/directional/north, /turf/open/floor/iron/dark/small, /area/station/medical/morgue) -"ftI" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plating, -/area/station/security/prison) "ftJ" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -28453,9 +28475,6 @@ }, /turf/open/floor/wood, /area/station/service/bar/atrium) -"fvF" = ( -/turf/open/floor/plating, -/area/station/security/prison/upper) "fvZ" = ( /obj/structure/chair/sofa/bench/right{ dir = 4; @@ -28702,6 +28721,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, +/obj/machinery/station_map/engineering/directional/east, /turf/open/floor/iron/white, /area/station/medical/medbay/central) "fxV" = ( @@ -28776,6 +28796,11 @@ dir = 8 }, /area/station/hallway/secondary/command) +"fyC" = ( +/obj/machinery/atmospherics/components/tank/air, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible/layer4, +/turf/open/floor/plating, +/area/station/security/prison) "fyD" = ( /turf/open/floor/iron/dark, /area/station/security/lockers) @@ -28825,6 +28850,13 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plating, /area/station/maintenance/port/upper) +"fzi" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison) "fzj" = ( /obj/structure/table/reinforced, /obj/item/storage/medkit/o2{ @@ -28847,6 +28879,19 @@ "fzm" = ( /turf/open/openspace, /area/station/hallway/secondary/command) +"fzp" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Prison Sanitarium" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) "fzq" = ( /obj/effect/turf_decal/stripes/end{ dir = 1 @@ -28869,6 +28914,13 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/wood, /area/station/maintenance/abandon_office) +"fzC" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison) "fzJ" = ( /obj/structure/chair/office{ dir = 4 @@ -29085,6 +29137,7 @@ /area/station/maintenance/department/crew_quarters/dorms) "fCB" = ( /obj/item/radio/intercom/directional/south, +/obj/machinery/station_map/engineering/directional/south, /turf/open/floor/wood, /area/station/service/library) "fCD" = ( @@ -29258,6 +29311,22 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/maintenance/department/engineering/lesser) +"fFu" = ( +/obj/structure/table/glass, +/obj/item/petri_dish{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/petri_dish{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/item/reagent_containers/cup/bottle/random_virus{ + pixel_x = 6; + pixel_y = 16 + }, +/turf/open/floor/iron/white, +/area/station/medical/virology) "fFB" = ( /obj/structure/sink/directional/south, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -29441,16 +29510,6 @@ }, /turf/open/floor/iron/cafeteria, /area/station/engineering/atmos) -"fHM" = ( -/obj/structure/extinguisher_cabinet/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/red{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/prison/upper) "fHR" = ( /obj/item/kirbyplants/random, /obj/structure/cable, @@ -29660,13 +29719,6 @@ /obj/machinery/duct, /turf/open/floor/carpet/purple, /area/station/command/heads_quarters/rd) -"fJP" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "fJT" = ( /obj/effect/mapping_helpers/broken_floor, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -29712,12 +29764,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/aft/upper) -"fKw" = ( -/obj/machinery/washing_machine, -/turf/open/floor/iron/kitchen{ - dir = 1 - }, -/area/station/security/prison) "fKz" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -30106,15 +30152,12 @@ }, /turf/open/floor/carpet/blue, /area/station/command/heads_quarters/captain/private) -"fOj" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/turf/open/floor/iron/dark/side{ - dir = 5 - }, -/area/station/security/prison) +"fOf" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/light/directional/south, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/white, +/area/station/security/execution/transfer) "fOk" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -30252,44 +30295,6 @@ /obj/structure/flora/bush/flowers_yw, /turf/open/floor/grass, /area/station/hallway/primary/central/fore) -"fPm" = ( -/obj/structure/table, -/obj/item/clothing/under/rank/prisoner/skirt{ - pixel_x = -13; - pixel_y = 5 - }, -/obj/item/clothing/under/rank/prisoner{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/clothing/under/rank/prisoner/skirt{ - pixel_x = 9; - pixel_y = 5 - }, -/obj/item/clothing/shoes/sneakers/orange{ - pixel_x = -6; - pixel_y = -8 - }, -/obj/item/clothing/shoes/sneakers/orange{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/clothing/shoes/sneakers/orange{ - pixel_x = -6; - pixel_y = -2 - }, -/obj/item/clothing/shoes/sneakers/orange{ - pixel_x = -6; - pixel_y = 10 - }, -/obj/item/clothing/under/rank/prisoner{ - pixel_x = 8; - pixel_y = 5 - }, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/security/execution/transfer) "fPo" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -30309,6 +30314,17 @@ /obj/machinery/light/directional/south, /turf/open/floor/wood, /area/station/security/courtroom) +"fPs" = ( +/obj/structure/closet/crate/wooden, +/obj/item/stack/tile/iron{ + amount = 6 + }, +/obj/effect/turf_decal/vg_decals/numbers/three, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "fPu" = ( /obj/structure/filingcabinet/chestdrawer/wheeled, /obj/machinery/newscaster/directional/north, @@ -30467,11 +30483,6 @@ }, /turf/open/floor/iron, /area/station/medical/aslyum) -"fRu" = ( -/obj/structure/mirror/directional/north, -/obj/machinery/light/small/directional/north, -/turf/open/floor/carpet/black, -/area/station/security/execution/transfer) "fRw" = ( /obj/structure/table, /obj/item/stock_parts/subspace/filter, @@ -30533,6 +30544,20 @@ }, /turf/open/floor/iron/dark/textured, /area/station/ai_monitored/security/armory) +"fRF" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 10 + }, +/obj/machinery/netpod, +/obj/structure/sign/poster/contraband/lusty_xenomorph/directional/east, +/obj/machinery/light/small/blacklight/directional/east, +/obj/effect/spawner/random/trash/garbage, +/obj/effect/spawner/random/trash/garbage, +/obj/effect/spawner/random/trash/garbage, +/obj/effect/spawner/random/trash/garbage, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/small, +/area/station/security/bitden) "fRM" = ( /obj/effect/turf_decal/trimline/purple/filled/corner{ dir = 4 @@ -30589,6 +30614,11 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/carpet/lone, /area/station/service/bar/atrium) +"fSD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron, +/area/station/security/prison/upper) "fSM" = ( /obj/structure/chair/wood{ dir = 1 @@ -30601,6 +30631,12 @@ "fSN" = ( /turf/open/floor/iron/stairs/right, /area/station/hallway/primary/upper) +"fSX" = ( +/obj/item/kirbyplants/organic/plant21, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/security/execution/transfer) "fTa" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -30632,6 +30668,16 @@ /obj/machinery/duct, /turf/open/floor/iron, /area/station/commons/fitness) +"fTu" = ( +/obj/effect/turf_decal/delivery/white, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/machinery/door/airlock/security/glass{ + name = "Flight Control" + }, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "fTv" = ( /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/window/reinforced/spawner/directional/south, @@ -30950,6 +30996,10 @@ }, /turf/open/floor/eighties/red, /area/station/common/arcade) +"fWC" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/security/prison) "fWI" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/yellow{ @@ -31176,12 +31226,6 @@ }, /turf/open/floor/carpet/royalblack, /area/station/command/heads_quarters/qm) -"fYU" = ( -/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/white, -/area/station/security/prison) "fYW" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/disposalpipe/segment, @@ -31546,11 +31590,6 @@ /obj/structure/lattice/catwalk, /turf/open/space/openspace, /area/space/nearstation) -"gci" = ( -/obj/effect/spawner/random/trash/mess, -/obj/machinery/duct, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) "gcn" = ( /obj/effect/decal/cleanable/blood/tracks{ dir = 8 @@ -31598,12 +31637,6 @@ /obj/structure/lattice/catwalk, /turf/open/openspace, /area/station/commons/dorms) -"gcP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/trash/mess, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/dark/small, -/area/station/security/bitden) "gcU" = ( /obj/effect/turf_decal/siding/thinplating_new{ dir = 1 @@ -31778,18 +31811,6 @@ /obj/structure/drain, /turf/open/floor/iron/freezer, /area/station/command/heads_quarters/captain/private) -"geu" = ( -/obj/machinery/camera/directional/north{ - c_tag = " Prison - West"; - dir = 2; - network = list("ss13","prison") - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/turf_decal/trimline/red/line{ - dir = 1 - }, -/turf/open/floor/iron/dark/side, -/area/station/security/prison) "geF" = ( /obj/machinery/door/airlock/research/glass{ name = "Robotics Workshop" @@ -31929,10 +31950,12 @@ dir = 1 }, /area/station/science/xenobiology) -"ggy" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/space_heater, -/turf/open/floor/plating, +"ggz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/obj/item/storage/toolbox/mechanical/old, +/turf/open/floor/wood, /area/station/security/prison) "ggC" = ( /obj/effect/decal/cleanable/dirt, @@ -31992,6 +32015,10 @@ /obj/machinery/light/small/directional/east, /turf/open/floor/iron, /area/station/medical/break_room) +"ghk" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison) "ghm" = ( /obj/structure/chair/office{ dir = 8 @@ -32044,12 +32071,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/security/execution/education) -"ghV" = ( -/obj/effect/turf_decal/trimline/red/filled/warning{ - dir = 5 - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "gib" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -32065,11 +32086,6 @@ /obj/item/beacon, /turf/open/floor/iron, /area/station/command/bridge) -"gim" = ( -/obj/effect/turf_decal/bot, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/station/security/prison) "gir" = ( /obj/effect/turf_decal/stripes/corner, /obj/effect/turf_decal/stripes/red/corner, @@ -32222,6 +32238,21 @@ /obj/machinery/atmospherics/pipe/layer_manifold/supply/visible, /turf/open/floor/iron, /area/station/maintenance/department/engineering/atmos_aux_port) +"gjZ" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/item/folder/blue{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/folder/white, +/obj/item/stamp/head/cmo{ + pixel_y = 5 + }, +/turf/open/floor/carpet/blue, +/area/station/command/heads_quarters/cmo) "gkd" = ( /obj/effect/decal/cleanable/dirt, /mob/living/basic/spider/growing/spiderling, @@ -32237,14 +32268,6 @@ dir = 8 }, /area/station/engineering/storage) -"gkk" = ( -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/turf_decal/trimline/red/line{ - dir = 1 - }, -/turf/open/floor/iron/dark/side, -/area/station/security/prison) "gkl" = ( /obj/structure/grille, /obj/structure/window/spawner/directional/south, @@ -32369,17 +32392,6 @@ /obj/item/wrench, /turf/open/floor/iron, /area/station/hallway/secondary/construction) -"gly" = ( -/obj/structure/closet/crate/wooden, -/obj/item/stack/tile/iron{ - amount = 6 - }, -/obj/effect/turf_decal/vg_decals/numbers/three, -/obj/effect/turf_decal/trimline/red/filled/warning{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "glz" = ( /obj/structure/disposalpipe/segment{ dir = 9 @@ -32410,12 +32422,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/medbay/lobby) -"glJ" = ( -/obj/item/reagent_containers/cup/bucket/wooden{ - name = "waste bucket" - }, -/turf/open/floor/plating, -/area/station/security/prison) "glK" = ( /turf/open/floor/carpet/black, /area/station/service/barber) @@ -32436,11 +32442,6 @@ /obj/structure/table/wood, /turf/open/floor/wood, /area/station/commons/dorms/room3) -"glU" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "glW" = ( /obj/structure/chair{ dir = 4 @@ -32552,6 +32553,16 @@ dir = 1 }, /area/station/security/prison/shower) +"gmR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Labor Camp Shuttle Airlock" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/turf/open/floor/iron, +/area/station/security/prison/upper) "gmU" = ( /obj/structure/chair/office{ dir = 1 @@ -32587,6 +32598,10 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"gnd" = ( +/obj/effect/turf_decal/box/white/corners, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "gne" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -32817,22 +32832,6 @@ /obj/machinery/duct, /turf/open/floor/carpet, /area/station/service/chapel) -"gpq" = ( -/obj/structure/table/glass, -/obj/item/petri_dish{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/petri_dish{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/item/reagent_containers/cup/bottle/random_virus{ - pixel_x = 6; - pixel_y = 16 - }, -/turf/open/floor/iron/white, -/area/station/medical/virology) "gpr" = ( /obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral, @@ -32902,6 +32901,26 @@ /obj/item/radio/intercom/directional/west, /turf/open/floor/wood, /area/station/command/heads_quarters/captain) +"gqm" = ( +/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/trimline/red/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison) "gqn" = ( /obj/structure/mirror{ pixel_y = 32 @@ -33050,18 +33069,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/maintenance/department/engineering/atmos_aux_port) -"grD" = ( -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/trimline/red/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/security/prison) "grJ" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -33084,10 +33091,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/ai_monitored/turret_protected/aisat_interior) -"grX" = ( -/obj/structure/closet/crate/wooden, -/turf/open/floor/iron, -/area/station/security/prison/upper) "gsd" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -33118,6 +33121,23 @@ dir = 8 }, /area/station/cargo/miningdock) +"gsE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + color = "#DE3A3A"; + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/security/execution/transfer) "gsF" = ( /obj/machinery/door/firedoor/border_only{ dir = 4 @@ -33194,6 +33214,17 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/wood, /area/station/maintenance/abandon_art_studio) +"gtc" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Gulag Processing" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/security/prison/upper) "gtd" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -33213,6 +33244,14 @@ /obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark/corner, /area/station/maintenance/xenobio_disposals) +"gti" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/security/prison) "gtm" = ( /obj/effect/turf_decal/bot, /obj/structure/reagent_dispensers/watertank, @@ -33330,6 +33369,11 @@ /obj/item/book/manual/wiki/security_space_law, /turf/open/floor/carpet/red, /area/station/security/warden) +"guJ" = ( +/turf/open/floor/iron/stairs/right{ + dir = 8 + }, +/area/station/security/prison) "guK" = ( /obj/machinery/door/airlock/public/glass{ name = "Bar" @@ -33504,6 +33548,14 @@ }, /turf/open/floor/iron/dark/herringbone, /area/station/common/night_club/back_stage) +"gwn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/mob/living/basic/mouse/brown/tom, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/security/prison) "gww" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 6 @@ -33635,6 +33687,7 @@ dir = 1 }, /obj/machinery/light_switch/directional/west, +/obj/machinery/station_map/engineering/directional/south, /turf/open/floor/carpet/blue, /area/station/commons/dorms/room3) "gxT" = ( @@ -33754,6 +33807,44 @@ }, /turf/open/floor/iron/dark, /area/station/service/library/private) +"gzb" = ( +/obj/structure/table, +/obj/item/clothing/under/rank/prisoner/skirt{ + pixel_x = -13; + pixel_y = 5 + }, +/obj/item/clothing/under/rank/prisoner{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/clothing/under/rank/prisoner/skirt{ + pixel_x = 9; + pixel_y = 5 + }, +/obj/item/clothing/shoes/sneakers/orange{ + pixel_x = -6; + pixel_y = -8 + }, +/obj/item/clothing/shoes/sneakers/orange{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/clothing/shoes/sneakers/orange{ + pixel_x = -6; + pixel_y = -2 + }, +/obj/item/clothing/shoes/sneakers/orange{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/item/clothing/under/rank/prisoner{ + pixel_x = 8; + pixel_y = 5 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/execution/transfer) "gzl" = ( /obj/structure/toilet{ dir = 1 @@ -33764,6 +33855,17 @@ }, /turf/open/floor/iron/freezer, /area/station/commons/dorms/vacantroom) +"gzn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/prison) "gzo" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/duct, @@ -33801,16 +33903,6 @@ /obj/structure/flora/tree/jungle, /turf/open/floor/grass, /area/station/hallway/primary/central/aft) -"gzE" = ( -/obj/machinery/door/airlock/security/old{ - name = "Cryopods" - }, -/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, -/turf/open/floor/iron/white, -/area/station/security/prison) "gzF" = ( /obj/structure/railing, /obj/structure/chair/plastic{ @@ -33877,6 +33969,11 @@ /obj/machinery/light/small/directional/east, /turf/open/floor/plating, /area/station/maintenance/aft/upper) +"gAp" = ( +/obj/structure/table, +/obj/item/wrench, +/turf/open/floor/iron, +/area/station/security/prison/upper) "gAt" = ( /obj/structure/table/greyscale, /obj/item/toy/plush/beeplushie, @@ -33893,6 +33990,7 @@ dir = 4 }, /obj/effect/landmark/start/assistant, +/obj/machinery/station_map/engineering/directional/west, /turf/open/floor/iron/white/side{ dir = 4 }, @@ -33936,15 +34034,6 @@ /obj/structure/sign/poster/random/directional/south, /turf/open/floor/iron, /area/station/hallway/primary/aft) -"gAV" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Labor Camp Shuttle Airlock" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "gAW" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/engineering/glass{ @@ -33975,13 +34064,6 @@ }, /turf/open/floor/iron/dark, /area/station/engineering/engine_smes) -"gBc" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison) "gBd" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -34203,6 +34285,7 @@ dir = 8 }, /obj/machinery/light/directional/south, +/obj/machinery/station_map/engineering/directional/south, /turf/open/floor/iron, /area/station/hallway/primary/upper) "gDy" = ( @@ -34251,6 +34334,13 @@ "gDN" = ( /turf/closed/wall, /area/station/science/xenobiology) +"gDP" = ( +/obj/structure/chair/comfy/barber_chair{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/security/execution/transfer) "gDW" = ( /obj/structure/cable, /turf/open/floor/plating, @@ -34711,6 +34801,16 @@ }, /turf/open/floor/carpet, /area/station/service/library/printer) +"gJA" = ( +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/delivery/red, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "prisonlockdown1"; + name = "Lockdown" + }, +/turf/open/floor/iron/dark, +/area/station/security/prison) "gJC" = ( /obj/structure/chair/comfy/barber_chair{ dir = 8 @@ -34788,24 +34888,6 @@ /obj/item/kirbyplants/random, /turf/open/floor/iron, /area/station/engineering/break_room) -"gKf" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/machinery/netpod, -/obj/structure/sign/poster/contraband/random/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/item/food/pizzaslice/sassysage{ - pixel_x = -2; - pixel_y = 3 - }, -/obj/machinery/camera/autoname/directional/south, -/turf/open/floor/iron/dark/small, -/area/station/security/bitden) -"gKk" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "gKn" = ( /turf/open/floor/iron/stairs/right, /area/station/hallway/primary/central/aft) @@ -34850,6 +34932,13 @@ /obj/effect/turf_decal/trimline/blue/filled/corner, /turf/open/floor/iron/white, /area/station/medical/treatment_center) +"gKW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/security/prison) "gKY" = ( /obj/effect/turf_decal/weather/sand{ dir = 6 @@ -34868,6 +34957,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, +/obj/machinery/station_map/engineering/directional/west, /turf/open/floor/iron, /area/station/hallway/primary/central/aft) "gLj" = ( @@ -35108,6 +35198,26 @@ /obj/effect/mapping_helpers/airlock/access/all/service/chapel_office, /turf/open/floor/iron/dark, /area/station/service/chapel/office) +"gNP" = ( +/obj/structure/table/wood, +/obj/item/clothing/mask/cigarette/syndicate, +/obj/item/food/sandwich{ + pixel_x = 5; + pixel_y = 14 + }, +/obj/item/reagent_containers/cup/glass/bottle/beer{ + desc = "Takes you to a whole new level of thinking."; + name = "Meta-Cider"; + pixel_x = -7; + pixel_y = 9 + }, +/obj/item/reagent_containers/cup/glass/drinkingglass{ + pixel_x = -14; + pixel_y = 1 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/security/prison) "gNT" = ( /obj/effect/turf_decal/delivery, /obj/structure/closet/secure_closet/engineering_electrical, @@ -35278,13 +35388,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/hallway/primary/port) -"gPp" = ( -/obj/structure/chair/office, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "gPq" = ( /obj/machinery/light/directional/east, /obj/machinery/camera/directional/east{ @@ -35682,6 +35785,12 @@ dir = 6 }, /area/station/security/prison) +"gSN" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/carpet/black, +/area/station/security/execution/transfer) "gSQ" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -35974,18 +36083,6 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) -"gWf" = ( -/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/trimline/red/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/line, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/security/prison) "gWh" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/structure/window/reinforced/spawner/directional/east, @@ -36015,6 +36112,14 @@ }, /turf/open/floor/engine/vacuum, /area/station/maintenance/disposal/incinerator) +"gWy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/cable, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) "gWC" = ( /obj/effect/turf_decal/bot, /obj/machinery/vending/tool, @@ -36075,15 +36180,6 @@ }, /turf/open/floor/wood, /area/station/commons/dorms/room8) -"gXp" = ( -/obj/effect/turf_decal/trimline/red/filled/warning{ - color = "#DE3A3A" - }, -/obj/effect/turf_decal/trimline/red/line{ - dir = 1 - }, -/turf/open/floor/iron/dark/side, -/area/station/security/prison) "gXw" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, @@ -36199,25 +36295,6 @@ dir = 8 }, /area/station/hallway/primary/port) -"gZf" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Prison Wing" - }, -/obj/machinery/door/poddoor/preopen{ - id = "Prison Gate"; - name = "Prison Blast Door" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery/blue, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - 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/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) "gZk" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -36282,6 +36359,16 @@ }, /turf/open/floor/iron, /area/station/science/robotics) +"haA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Shaving Station" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/turf/open/floor/iron, +/area/station/security/execution/transfer) "haD" = ( /obj/effect/turf_decal/tile/green/half/contrasted{ dir = 4 @@ -36380,6 +36467,13 @@ /obj/machinery/smartfridge/organ, /turf/open/floor/iron/white, /area/station/maintenance/abandon_surgery) +"hbs" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/security/prison) "hbt" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 @@ -36399,12 +36493,6 @@ "hbA" = ( /turf/closed/wall/r_wall, /area/station/maintenance/department/science/central) -"hbD" = ( -/obj/structure/closet/secure_closet/brig/genpop, -/obj/structure/window/reinforced/spawner/directional/south, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) "hbG" = ( /obj/effect/turf_decal/bot, /obj/structure/bed{ @@ -36445,18 +36533,19 @@ /obj/effect/spawner/random/trash/moisture_trap, /turf/open/floor/plating, /area/station/maintenance/port/upper) +"hbX" = ( +/obj/machinery/power/shuttle_engine/propulsion, +/obj/structure/fluff/big_chain{ + pixel_y = 30 + }, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "hbZ" = ( /obj/structure/rack, /obj/effect/turf_decal/bot, /obj/effect/spawner/random/maintenance/three, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) -"hce" = ( -/obj/effect/turf_decal/box/white/corners{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "hcf" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp/green{ @@ -36597,18 +36686,6 @@ /obj/machinery/duct, /turf/open/floor/iron, /area/station/service/hydroponics) -"hdl" = ( -/obj/effect/turf_decal/trimline/red/line{ - dir = 5 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - color = "#DE3A3A"; - dir = 8 - }, -/turf/open/floor/iron/dark/corner{ - dir = 8 - }, -/area/station/security/prison) "hds" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -36672,14 +36749,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/commons/fitness/recreation) -"hef" = ( -/obj/structure/window/reinforced/spawner/directional/north, -/obj/structure/window/reinforced/spawner/directional/east, -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "heh" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 8 @@ -37125,6 +37194,10 @@ /obj/machinery/atmospherics/pipe/heat_exchanging/junction, /turf/open/floor/plating, /area/station/tcommsat/computer) +"hiq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/security/prison) "hiy" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -37217,6 +37290,13 @@ }, /turf/open/floor/iron, /area/station/ai_monitored/turret_protected/ai_upload) +"hjb" = ( +/obj/structure/closet/secure_closet/brig/genpop, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) "hjd" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -37323,6 +37403,11 @@ /obj/effect/mapping_helpers/airlock/access/all/security/general, /turf/open/floor/iron/dark/small, /area/station/security/range) +"hkm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible/layer4, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/security/prison) "hkt" = ( /obj/effect/turf_decal/tile/brown{ dir = 1 @@ -37452,6 +37537,12 @@ /obj/effect/landmark/start/shaft_miner, /turf/open/floor/iron, /area/station/cargo/miningoffice) +"hlJ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/security/execution/transfer) "hlM" = ( /obj/structure/table/reinforced, /obj/item/clipboard, @@ -37525,7 +37616,7 @@ "hmu" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, -/area/station/security/prison) +/area/station/security/prison/upper) "hmx" = ( /obj/effect/turf_decal/trimline/blue/filled/corner, /obj/structure/cable, @@ -37873,6 +37964,7 @@ /obj/structure/disposalpipe/segment{ dir = 10 }, +/obj/machinery/station_map/engineering/directional/north, /turf/open/floor/iron, /area/station/hallway/primary/upper) "hqv" = ( @@ -37933,6 +38025,14 @@ /obj/item/radio/intercom/directional/south, /turf/open/floor/mineral/plastitanium/red, /area/station/science/robotics/lab) +"hri" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/airalarm/directional/south, +/obj/structure/cable, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron/dark/side, +/area/station/security/execution/transfer) "hrj" = ( /obj/effect/turf_decal/bot, /obj/structure/reagent_dispensers/watertank, @@ -38091,6 +38191,19 @@ /obj/structure/sink/directional/south, /turf/open/floor/iron/freezer, /area/station/science/breakroom) +"hth" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/red/filled/line{ + color = "#DE3A3A"; + dir = 5 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/security/prison) "htq" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -38172,6 +38285,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/hallway/primary/starboard) +"huc" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/stairs, +/area/station/security/prison/upper) "hud" = ( /obj/machinery/light/directional/south, /obj/effect/landmark/start/chaplain, @@ -38179,6 +38298,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/carpet/royalblack, /area/station/service/chapel/office) +"huh" = ( +/obj/effect/decal/cleanable/oil/slippery, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "hui" = ( /turf/closed/wall/rust, /area/station/maintenance/department/security/prison_upper) @@ -38215,6 +38338,22 @@ dir = 8 }, /area/station/hallway/secondary/entry) +"huD" = ( +/obj/machinery/door/poddoor/preopen{ + id = "XenoOffice"; + name = "Xenobiology Lockdown Blast Doors" + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Toxins Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/liquid_barrier, +/turf/open/floor/plating, +/area/station/maintenance/department/science/xenobiology) "huI" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -38367,12 +38506,22 @@ /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/iron/dark, /area/station/engineering/atmos/office) +"hwo" = ( +/obj/structure/closet/crate/large, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/iron, +/area/station/security/prison/upper) "hwp" = ( /obj/machinery/door/airlock/wood{ name = "Sauna" }, /turf/open/floor/wood, /area/station/command/heads_quarters/captain/private) +"hwu" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/computer/order_console/bitrunning, +/turf/open/floor/iron, +/area/station/security/prison) "hwx" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -38496,11 +38645,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/pharmacy) -"hxO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "hxV" = ( /obj/structure/railing{ dir = 4 @@ -38570,6 +38714,25 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/wood, /area/station/service/chapel) +"hyH" = ( +/obj/machinery/airalarm/directional/east, +/obj/machinery/light/cold/directional/east, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 4 + }, +/obj/structure/rack, +/obj/item/storage/medkit/regular, +/obj/item/clothing/gloves/latex, +/obj/item/reagent_containers/cup/bottle/epinephrine, +/obj/item/reagent_containers/cup/bottle/multiver, +/obj/item/reagent_containers/syringe, +/obj/item/storage/box/bodybags, +/obj/item/storage/medkit/regular, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/corner{ + dir = 8 + }, +/area/station/security/medical) "hyM" = ( /obj/structure/lattice/catwalk, /obj/structure/cable, @@ -38577,18 +38740,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/openspace, /area/station/maintenance/department/medical/central) -"hyU" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 6 - }, -/obj/machinery/light/small/blacklight/directional/west, -/obj/structure/trash_pile, -/obj/effect/spawner/random/trash/garbage, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/effect/mapping_helpers/apc/cell_10k, -/turf/open/floor/iron/dark/small, -/area/station/security/bitden) "hyY" = ( /obj/effect/turf_decal/tile/brown/half/contrasted, /turf/open/floor/iron, @@ -39222,11 +39373,6 @@ }, /turf/open/floor/catwalk_floor/iron_smooth, /area/station/maintenance/starboard/fore) -"hEX" = ( -/obj/effect/turf_decal/stripes/white/line, -/obj/structure/railing, -/turf/closed/wall, -/area/station/security/bitden) "hFf" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -39285,6 +39431,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/common/wrestling/beverage) +"hFz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/security/execution/transfer) "hFB" = ( /obj/structure/window/reinforced/plasma/spawner/directional/south, /obj/machinery/power/shuttle_engine/heater{ @@ -39325,6 +39477,11 @@ "hFR" = ( /turf/open/floor/iron/white/textured, /area/station/medical/aslyum) +"hFV" = ( +/obj/item/stack/sheet/cardboard, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) "hFX" = ( /obj/machinery/power/smes, /obj/structure/cable, @@ -39342,6 +39499,7 @@ /obj/effect/turf_decal/tile/purple{ dir = 8 }, +/obj/item/radio/intercom/directional/north, /turf/open/floor/iron/dark/side{ dir = 1 }, @@ -39481,12 +39639,6 @@ dir = 4 }, /area/station/hallway/primary/port) -"hHM" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "hHN" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -39649,6 +39801,17 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/science/xenobiology) +"hJv" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/prison) "hJw" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 1 @@ -39692,15 +39855,6 @@ "hJH" = ( /turf/closed/wall, /area/station/maintenance/fore/upper) -"hJJ" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/structure/barricade/wooden/crude, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/curtain/bounty/start_closed, -/turf/open/floor/iron/dark/herringbone, -/area/station/security/bitden) "hJL" = ( /obj/structure/table, /obj/structure/cable, @@ -39750,6 +39904,13 @@ /obj/structure/window/reinforced/spawner/directional/north, /turf/open/floor/iron/shuttle/arrivals/airless, /area/space/nearstation) +"hKq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/can, +/turf/open/floor/iron/smooth_edge{ + dir = 4 + }, +/area/station/security/bitden) "hKt" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -39853,10 +40014,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/department/crew_quarters/bar) -"hLH" = ( -/obj/structure/ore_box, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "hLJ" = ( /obj/structure/frame/machine, /turf/open/floor/plating, @@ -39865,6 +40022,20 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/wood, /area/station/hallway/primary/central) +"hLT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/prison) "hLY" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/grille, @@ -39959,6 +40130,19 @@ dir = 8 }, /area/station/security/brig) +"hMC" = ( +/obj/effect/turf_decal/delivery/red, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "prisonlockdown1"; + name = "Lockdown" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/turf/open/floor/iron/dark, +/area/station/security/prison) "hMF" = ( /turf/open/floor/plating, /area/space/nearstation) @@ -40017,6 +40201,12 @@ dir = 8 }, /area/station/hallway/primary/central/aft) +"hNf" = ( +/obj/structure/reagent_dispensers/plumbed{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) "hNh" = ( /obj/effect/turf_decal/siding/wood, /obj/machinery/light/directional/east, @@ -40484,6 +40674,10 @@ }, /turf/open/floor/plating, /area/station/command/heads_quarters/captain/private) +"hRs" = ( +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/station/security/prison) "hRu" = ( /obj/item/crowbar/large/heavy, /turf/open/floor/plating, @@ -40520,6 +40714,11 @@ "hRO" = ( /turf/closed/wall, /area/station/command/captain_dining) +"hRR" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/station/security/prison) "hSd" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -40669,6 +40868,10 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, /area/station/maintenance/department/medical/central) +"hTj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "hTp" = ( /turf/closed/wall, /area/station/command/heads_quarters/captain) @@ -40818,14 +41021,6 @@ /obj/effect/mapping_helpers/airlock/access/all/security/general, /turf/open/floor/iron/dark, /area/station/security/lockers) -"hVk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/mob/living/basic/mouse/brown/tom, -/turf/open/floor/iron/kitchen{ - dir = 1 - }, -/area/station/security/prison) "hVo" = ( /obj/machinery/door/airlock/security/glass{ name = "Security Office" @@ -40847,6 +41042,11 @@ /obj/structure/cable, /turf/open/floor/carpet, /area/station/command/heads_quarters/hop) +"hVv" = ( +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/execution/transfer) "hVx" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/structure/window/reinforced/spawner/directional/south, @@ -41134,12 +41334,6 @@ /obj/machinery/slime_extract_requestor, /turf/open/floor/glass/reinforced, /area/station/science) -"hYo" = ( -/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/dark/small, -/area/station/security/prison) "hYs" = ( /obj/structure/window/reinforced/spawner/directional/east, /obj/structure/window/reinforced/spawner/directional/west, @@ -41206,6 +41400,13 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/engineering/supermatter/room) +"hZe" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/stripes/white/line{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) "hZg" = ( /obj/machinery/light/small/directional/north, /obj/machinery/duct, @@ -41251,17 +41452,6 @@ "hZy" = ( /turf/closed/wall, /area/station/commons/locker) -"hZz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Prison Side Wing" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) "hZB" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/iron, @@ -41284,9 +41474,6 @@ }, /turf/open/floor/iron, /area/station/science/ordnance) -"hZI" = ( -/turf/closed/wall, -/area/station/security/prison/upper) "hZO" = ( /obj/structure/closet/secure_closet/hydroponics, /obj/structure/disposalpipe/segment{ @@ -41578,21 +41765,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plating, /area/station/maintenance/aft/upper) -"icN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/red/corner, -/obj/effect/turf_decal/trimline/red/filled/line{ - color = "#DE3A3A"; - dir = 9 - }, -/obj/effect/turf_decal/siding/thinplating_new/dark{ - dir = 9 - }, -/turf/open/floor/iron/dark/side{ - dir = 9 - }, -/area/station/security/prison) "icO" = ( /obj/machinery/power/shieldwallgen/xenobiologyaccess, /obj/effect/turf_decal/stripes{ @@ -41909,6 +42081,15 @@ /obj/effect/turf_decal/trimline/yellow/filled/line, /turf/open/floor/iron/white, /area/station/medical/pharmacy) +"ifM" = ( +/obj/structure/table/reinforced/rglass, +/obj/structure/mirror/directional/west, +/obj/machinery/light/directional/west, +/obj/item/scissors, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/execution/transfer) "ifQ" = ( /obj/structure/cable, /obj/machinery/light_switch/directional/south, @@ -42023,6 +42204,10 @@ /obj/machinery/shower/directional/north, /turf/open/floor/iron/checker, /area/station/engineering/gravity_generator) +"ihe" = ( +/obj/machinery/station_map/engineering/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) "ihg" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -42032,6 +42217,13 @@ /obj/structure/bookcase/manuals/engineering, /turf/open/floor/wood, /area/station/command/heads_quarters/captain/private) +"ihA" = ( +/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/opposingcorners, +/turf/open/floor/iron, +/area/station/security/prison/upper) "ihD" = ( /obj/effect/landmark/start/security_officer, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -42380,6 +42572,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/port/upper) +"ikN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/security/prison) "ikQ" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -42471,12 +42672,6 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/wood, /area/station/service/barber) -"ilY" = ( -/obj/machinery/light_switch/directional/east, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/security/execution/transfer) "ima" = ( /obj/effect/spawner/random/structure/crate_loot, /turf/open/floor/plating, @@ -42588,10 +42783,9 @@ }, /turf/open/floor/wood, /area/station/commons/dorms/room1) -"inc" = ( -/obj/effect/decal/cleanable/oil/streak, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) +"ina" = ( +/turf/open/floor/glass/reinforced, +/area/station/security/execution/transfer) "ine" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/chair/sofa/bench/right{ @@ -42606,17 +42800,19 @@ dir = 8 }, /area/station/security/checkpoint/escape) +"ini" = ( +/obj/structure/table/reinforced, +/obj/structure/window/spawner/directional/east, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "inj" = ( /obj/structure/chair/comfy/brown, /obj/effect/landmark/start/research_director, /turf/open/floor/carpet/purple, /area/station/command/heads_quarters/rd) -"inl" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/iron/stairs/left{ - dir = 8 - }, -/area/station/security/prison/upper) "inm" = ( /obj/structure/grille, /obj/structure/window/spawner/directional/west, @@ -42866,6 +43062,14 @@ }, /turf/open/floor/iron/dark, /area/station/service/barber) +"iqd" = ( +/obj/structure/railing{ + 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/station/security/prison/upper) "iqf" = ( /obj/machinery/atmospherics/components/binary/valve/digital/layer4{ dir = 8 @@ -43096,6 +43300,7 @@ dir = 4 }, /obj/structure/cable, +/obj/machinery/newscaster/directional/west, /turf/open/floor/iron/white/side{ dir = 4 }, @@ -43152,13 +43357,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plating/airless, /area/station/maintenance/fore/upper) -"ita" = ( -/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, -/turf/open/floor/iron/dark/small, -/area/station/security/prison) "itv" = ( /turf/open/floor/iron/dark, /area/station/maintenance/aux_eva) @@ -43261,17 +43459,6 @@ /obj/effect/turf_decal/trimline/yellow/filled/corner, /turf/open/floor/iron/white, /area/station/medical/pharmacy) -"iuT" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Gulag Processing" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security/prison/upper) "iuU" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -43482,12 +43669,12 @@ /area/station/maintenance/starboard/fore) "iwv" = ( /obj/effect/turf_decal/trimline/purple/filled/line, -/obj/machinery/light_switch/directional/south, /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/station_map/engineering/directional/south, /turf/open/floor/iron/white, /area/station/science) "iwD" = ( @@ -43527,6 +43714,10 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/engineering/atmos) +"ixc" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "ixe" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -43636,12 +43827,6 @@ }, /turf/open/floor/iron/dark, /area/station/service/power_station) -"ixK" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/prison/upper) "ixQ" = ( /obj/machinery/shower/directional/east, /obj/structure/drain, @@ -44044,12 +44229,6 @@ }, /turf/open/floor/wood, /area/station/hallway/primary/port) -"iCC" = ( -/obj/machinery/computer/shuttle/labor{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "iCD" = ( /obj/structure/railing, /obj/structure/rack, @@ -44135,17 +44314,6 @@ initial_gas_mix = "TEMP=2.7" }, /area/station/science/ordnance/bomb) -"iDH" = ( -/obj/structure/closet/crate/bin, -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/item/clothing/mask/cigarette/pipe/crackpipe, -/turf/open/floor/iron/kitchen{ - dir = 1 - }, -/area/station/security/prison) "iDM" = ( /obj/structure/disposalpipe/junction/flip{ dir = 4 @@ -44155,6 +44323,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/hallway/primary/port) +"iDR" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/security/prison) "iDX" = ( /obj/machinery/door/firedoor, /obj/structure/cable, @@ -44172,13 +44346,6 @@ /obj/item/radio/intercom/directional/south, /turf/open/floor/iron, /area/station/engineering/main) -"iEp" = ( -/obj/structure/cable, -/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/dark/side, -/area/station/security/prison) "iEr" = ( /obj/effect/spawner/random/trash/mess, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -44406,13 +44573,6 @@ }, /turf/open/floor/iron/white, /area/station/science/ordnance/storage) -"iFX" = ( -/obj/structure/table, -/obj/machinery/power/shuttle_engine/propulsion{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/prison/upper) "iGa" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -44555,10 +44715,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"iHC" = ( -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "iHD" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -44597,15 +44753,6 @@ }, /turf/open/floor/iron/white, /area/station/science/xenobiology) -"iIe" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "iIf" = ( /obj/effect/turf_decal/bot, /obj/machinery/vending/cigarette, @@ -44705,6 +44852,13 @@ /obj/machinery/duct, /turf/open/floor/carpet/green, /area/station/command/heads_quarters/nt_rep) +"iJi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/duct, +/turf/open/floor/iron/dark/small, +/area/station/security/prison) "iJw" = ( /obj/structure/reagent_dispensers/fueltank, /obj/effect/turf_decal/bot, @@ -44811,6 +44965,13 @@ /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/law) +"iKO" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/security_space_law{ + pixel_y = 5 + }, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "iKV" = ( /obj/machinery/camera/directional/west{ c_tag = "Recreation - Arcade Lower"; @@ -45034,6 +45195,14 @@ dir = 8 }, /area/station/hallway/primary/central/fore) +"iMZ" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/reagent_dispensers/watertank{ + pixel_y = -2 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/station/security/prison) "iNb" = ( /obj/effect/turf_decal/vg_decals/numbers/two, /turf/open/floor/iron/dark/side{ @@ -45062,13 +45231,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"iNB" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/prison/upper) "iNE" = ( /obj/effect/spawner/random/trash/food_packaging, /turf/open/floor/plating, @@ -45125,6 +45287,14 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"iOt" = ( +/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/stairs/medium{ + dir = 4 + }, +/area/station/security/prison) "iOG" = ( /obj/structure/cable, /obj/machinery/duct, @@ -45243,34 +45413,13 @@ /obj/machinery/newscaster/directional/east, /turf/open/floor/iron/dark, /area/station/security/checkpoint) -"iQb" = ( -/obj/effect/turf_decal/delivery/white, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/obj/machinery/door/airlock/security/glass{ - name = "Flight Control" - }, +"iPY" = ( +/obj/machinery/light/directional/south, /turf/open/floor/iron/dark, -/area/station/security/prison/upper) -"iQi" = ( -/obj/effect/turf_decal/trimline/red/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/warning{ - dir = 4 - }, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/security/prison) +/area/station/security/execution/transfer) "iQl" = ( /turf/open/floor/iron, /area/station/science/ordnance/testlab) -"iQv" = ( -/obj/machinery/byteforge, -/turf/open/floor/circuit/green, -/area/station/security/bitden) "iQx" = ( /obj/effect/turf_decal/stripes/red/line{ dir = 8 @@ -45336,12 +45485,6 @@ /obj/machinery/duct, /turf/open/floor/engine, /area/station/science/xenobiology) -"iRb" = ( -/obj/item/kirbyplants/random, -/obj/machinery/airalarm/directional/west, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron, -/area/station/security/prison/upper) "iRe" = ( /obj/structure/chair{ dir = 8 @@ -45377,13 +45520,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/ai_monitored/turret_protected/aisat_interior) -"iRJ" = ( -/obj/machinery/camera/directional/east{ - c_tag = "Security - Shuttle Bay West"; - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "iRO" = ( /obj/structure/railing{ dir = 4 @@ -45544,6 +45680,7 @@ /obj/effect/turf_decal/siding/wood{ dir = 6 }, +/obj/machinery/station_map/engineering/directional/west, /turf/open/floor/wood/parquet, /area/station/service/theater) "iTW" = ( @@ -45765,7 +45902,7 @@ normaldoorcontrol = 1; pixel_y = -7 }, -/obj/item/radio/intercom/directional/west, +/obj/machinery/station_map/engineering/directional/west, /turf/open/floor/iron, /area/station/security/checkpoint/science/research) "iVF" = ( @@ -45853,6 +45990,7 @@ "iWJ" = ( /obj/structure/bed, /obj/item/bedsheet/medical, +/obj/machinery/station_map/engineering/directional/east, /turf/open/floor/iron/white, /area/station/medical/patients_rooms) "iWN" = ( @@ -46342,10 +46480,6 @@ /obj/machinery/portable_atmospherics/canister/nitrogen, /turf/open/floor/iron/dark, /area/station/science/ordnance/storage) -"jaK" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/station/security/prison) "jaM" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -46496,6 +46630,9 @@ /obj/structure/railing, /turf/open/floor/iron/dark, /area/station/common/wrestling/arena) +"jcg" = ( +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "jcj" = ( /obj/effect/turf_decal/bot, /obj/structure/table, @@ -46584,18 +46721,6 @@ /obj/effect/turf_decal/tile/blue/fourcorners, /turf/open/floor/iron/white, /area/station/medical/chemistry) -"jcV" = ( -/obj/effect/turf_decal/trimline/red/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - color = "#DE3A3A"; - dir = 4 - }, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/security/prison) "jda" = ( /obj/structure/grille, /obj/structure/window/spawner/directional/north, @@ -46812,14 +46937,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/maintenance/solars/starboard/fore) -"jfW" = ( -/obj/effect/spawner/random/trash/mess, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/duct, -/turf/open/floor/plating, -/area/station/security/prison) "jgd" = ( /turf/open/floor/circuit/green, /area/station/engineering/gravity_generator) @@ -46874,6 +46991,11 @@ /obj/machinery/duct, /turf/open/floor/iron, /area/station/commons/dorms) +"jgA" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/station/security/prison) "jgJ" = ( /obj/structure/stairs/north, /obj/structure/railing{ @@ -46897,6 +47019,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/department/engineering/engine_aft_port) +"jhe" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) "jhg" = ( /obj/structure/railing{ dir = 1 @@ -47053,6 +47184,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) +"jiM" = ( +/obj/effect/spawner/random/trash/graffiti, +/turf/closed/wall/rust, +/area/station/security/bitden) "jiS" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -47542,11 +47677,6 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, /area/station/maintenance/department/medical/central) -"jnr" = ( -/obj/machinery/atmospherics/components/tank/air, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible/layer4, -/turf/open/floor/plating, -/area/station/security/prison) "jnt" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -47694,14 +47824,6 @@ /obj/effect/turf_decal/siding/thinplating_new/dark, /turf/open/floor/iron/dark/textured_edge, /area/station/ai_monitored/security/armory) -"joC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/security/execution/transfer) "joF" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -47714,12 +47836,6 @@ /obj/machinery/power/port_gen/pacman/pre_loaded, /turf/open/floor/plating, /area/station/maintenance/fore/upper) -"joM" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/light/directional/south, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron/white, -/area/station/security/execution/transfer) "joN" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -47737,6 +47853,11 @@ dir = 4 }, /area/station/hallway/primary/upper) +"joZ" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/structure/railing, +/turf/closed/wall, +/area/station/security/bitden) "jpm" = ( /obj/item/organ/internal/liver, /turf/open/floor/material/meat, @@ -47780,14 +47901,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"jpA" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/stairs, -/area/station/security/prison/upper) "jpC" = ( /obj/effect/turf_decal/trimline/blue/line{ dir = 9 @@ -47927,7 +48040,6 @@ /obj/structure/disposalpipe/trunk{ dir = 8 }, -/obj/structure/sign/poster/random/directional/east, /turf/open/floor/iron/white/corner, /area/station/hallway/secondary/entry) "jqK" = ( @@ -48144,6 +48256,17 @@ dir = 8 }, /area/station/command/gateway) +"jsS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/item/reagent_containers/cup/soda_cans/pwr_game, +/obj/effect/spawner/random/trash/garbage, +/obj/item/food/pizzaslice/moldy/bacteria, +/obj/structure/closet/mini_fridge, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/small, +/area/station/security/bitden) "jsT" = ( /obj/machinery/computer/telecomms/monitor{ dir = 4; @@ -48226,18 +48349,6 @@ initial_gas_mix = "TEMP=2.7" }, /area/station/science/ordnance/bomb) -"jtO" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/random/entertainment/money, -/obj/item/storage/pill_bottle/maintenance_pill/full, -/obj/item/coin/adamantine, -/obj/item/clothing/glasses/sunglasses, -/obj/effect/mapping_helpers/broken_floor, -/obj/item/storage/belt/utility/full/engi, -/obj/item/clothing/suit/armor/vest/old, -/obj/effect/spawner/random/contraband/plus, -/turf/open/floor/plating, -/area/station/security/prison) "jtP" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/delivery, @@ -48249,6 +48360,11 @@ }, /turf/open/floor/iron, /area/station/cargo/office) +"jtX" = ( +/obj/machinery/prisongate, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) "jub" = ( /obj/machinery/airalarm/directional/west, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, @@ -48297,6 +48413,18 @@ }, /turf/open/floor/wood, /area/station/security/detectives_office) +"juI" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/security/prison) "juK" = ( /turf/closed/wall/r_wall, /area/station/common/locker_room_shower) @@ -48379,6 +48507,11 @@ }, /turf/open/floor/engine, /area/station/ai_monitored/turret_protected/aisat/hallway) +"jvw" = ( +/obj/effect/decal/cleanable/oil/slippery, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "jvx" = ( /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/north, @@ -48416,13 +48549,6 @@ /obj/structure/lattice/catwalk, /turf/open/space/basic, /area/space/nearstation) -"jvQ" = ( -/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/opposingcorners, -/turf/open/floor/iron, -/area/station/security/prison/upper) "jvV" = ( /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/window/reinforced/spawner/directional/west, @@ -48461,11 +48587,6 @@ /obj/effect/spawner/random/trash/mess, /turf/open/floor/plating, /area/station/maintenance/port/upper) -"jwD" = ( -/turf/open/floor/iron/dark/side{ - dir = 10 - }, -/area/station/security/execution/transfer) "jwF" = ( /obj/structure/filingcabinet/chestdrawer, /obj/item/storage/box/syringes{ @@ -48916,6 +49037,20 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/white, /area/station/science/tele_sci) +"jAE" = ( +/obj/effect/turf_decal/delivery/white{ + color = "#00ff00"; + name = "green" + }, +/obj/machinery/cryopod{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/prison) +"jAO" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plating, +/area/station/security/prison) "jAS" = ( /obj/machinery/door/airlock/hatch, /obj/structure/barricade/wooden/crude, @@ -48979,19 +49114,6 @@ /obj/effect/spawner/random/structure/steam_vent, /turf/open/floor/plating, /area/station/maintenance/department/medical/central) -"jBC" = ( -/obj/effect/turf_decal/delivery/red, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/window/preopen{ - id = "prisonlockdown1"; - name = "Lockdown" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/turf/open/floor/iron/dark, -/area/station/security/prison) "jBI" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -49457,13 +49579,6 @@ /obj/machinery/portable_atmospherics/canister/air, /turf/open/floor/iron/dark, /area/station/engineering/atmos/pumproom) -"jGf" = ( -/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/trimline/red, -/turf/open/floor/iron/dark/small, -/area/station/security/prison) "jGk" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 8 @@ -49549,6 +49664,18 @@ /obj/effect/mapping_helpers/airlock/access/all/security/brig, /turf/open/floor/iron/dark, /area/station/security/prison/safe) +"jHe" = ( +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/prison) "jHf" = ( /obj/machinery/door/airlock/bathroom{ name = "Restroom" @@ -49640,6 +49767,13 @@ }, /turf/open/floor/carpet, /area/station/service/library/printer) +"jHS" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "jHV" = ( /obj/structure/table/reinforced, /obj/item/flashlight/lamp, @@ -49787,21 +49921,6 @@ }, /turf/open/floor/iron/dark, /area/station/security/checkpoint/escape) -"jJA" = ( -/obj/effect/turf_decal/delivery/red, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/window/preopen{ - id = "prisonlockdown1"; - name = "Lockdown" - }, -/obj/machinery/button/door{ - id = "prisonlockdown1"; - name = "Lockdown"; - pixel_x = 24; - req_access = list("security") - }, -/turf/open/floor/iron/dark, -/area/station/security/prison) "jJF" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -49942,10 +50061,6 @@ /obj/item/clothing/gloves/latex, /turf/open/floor/iron/white, /area/station/service/barber) -"jLj" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "jLo" = ( /obj/effect/decal/cleanable/dirt, /obj/item/seeds/liberty, @@ -50076,20 +50191,20 @@ /obj/effect/landmark/start/chemist, /turf/open/floor/iron/white, /area/station/medical/chemistry) +"jMu" = ( +/obj/structure/table, +/obj/item/weldingtool/largetank{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/clothing/head/utility/welding, +/turf/open/floor/iron, +/area/station/security/prison/upper) "jMy" = ( /obj/effect/turf_decal/tile/neutral, /obj/machinery/newscaster/directional/east, /turf/open/floor/iron, /area/station/hallway/primary/central) -"jMz" = ( -/obj/machinery/computer/security/labor{ - dir = 4 - }, -/obj/structure/window/spawner/directional/north, -/obj/machinery/newscaster/directional/west, -/obj/machinery/camera/autoname/directional/west, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "jME" = ( /obj/machinery/door/airlock/external, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ @@ -50101,6 +50216,11 @@ /obj/effect/mapping_helpers/airlock/access/all/engineering/external, /turf/open/floor/plating, /area/station/maintenance/port/upper) +"jMJ" = ( +/obj/effect/spawner/random/trash/mess, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/small, +/area/station/security/bitden) "jMO" = ( /obj/structure/easel, /obj/item/canvas/twentythree_twentythree{ @@ -50165,14 +50285,9 @@ dir = 1 }, /area/station/hallway/secondary/service) -"jNq" = ( -/obj/structure/chair/plastic{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/security/prison) +"jNo" = ( +/turf/open/floor/iron/dark/side, +/area/station/security/execution/transfer) "jNs" = ( /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/shutters/preopen{ @@ -50274,6 +50389,13 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/command/heads_quarters/nt_rep) +"jNW" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "jOg" = ( /obj/machinery/plumbing/ooze_sucker{ mapping_id = "4"; @@ -50353,6 +50475,15 @@ /obj/machinery/duct, /turf/open/floor/iron/grimy, /area/station/command/heads_quarters/captain) +"jOP" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/bluespace_vendor/directional/north, +/turf/open/floor/iron/white/corner{ + dir = 4 + }, +/area/station/hallway/secondary/entry) "jOV" = ( /obj/effect/turf_decal/stripes{ dir = 8 @@ -50391,11 +50522,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/surgery) -"jPf" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison/upper) "jPh" = ( /obj/item/wrench, /turf/open/floor/plating, @@ -50505,6 +50631,10 @@ /obj/effect/landmark/carpspawn, /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) +"jPX" = ( +/obj/structure/trash_pile, +/turf/open/floor/plating, +/area/station/security/prison) "jQe" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -50730,6 +50860,13 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/white, /area/station/science/research) +"jRQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/security/prison) "jRR" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -50817,11 +50954,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/maintenance/port/aft) -"jSV" = ( -/obj/structure/closet/secure_closet/brig/genpop, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) "jSY" = ( /obj/structure/grille, /obj/structure/window/spawner/directional/west, @@ -50847,6 +50979,11 @@ /obj/effect/landmark/generic_maintenance_landmark, /turf/open/floor/iron/dark, /area/station/maintenance/abandon_exam/cat) +"jTp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/security/prison) "jTz" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -50931,12 +51068,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/station/engineering/atmos/pumproom) -"jUg" = ( -/obj/machinery/light/directional/east, -/turf/open/floor/iron/dark/side{ - dir = 5 - }, -/area/station/security/execution/transfer) "jUh" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -51009,11 +51140,6 @@ /obj/machinery/airalarm/directional/south, /turf/open/floor/iron, /area/station/common/wrestling/arena) -"jUN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/dark/small, -/area/station/security/prison) "jUO" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -51067,11 +51193,6 @@ /obj/item/rack_parts, /turf/open/floor/plating, /area/station/maintenance/fore/upper) -"jUX" = ( -/obj/machinery/door/window/left/directional/north, -/obj/structure/liquid_barrier, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) "jVd" = ( /obj/structure/rack, /obj/effect/turf_decal/bot, @@ -51162,6 +51283,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/port/upper) +"jVM" = ( +/obj/machinery/computer/security/labor{ + dir = 4 + }, +/obj/structure/window/spawner/directional/north, +/obj/machinery/newscaster/directional/west, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "jVO" = ( /obj/structure/chair/sofa/corp/right{ dir = 8 @@ -51284,6 +51414,15 @@ /obj/effect/turf_decal/tile/yellow/fourcorners, /turf/open/floor/iron, /area/station/engineering/storage) +"jWC" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/autoname/directional/west, +/obj/machinery/station_map/engineering/directional/west, +/turf/open/floor/iron, +/area/station/hallway/primary/central) "jWJ" = ( /obj/machinery/door/firedoor, /turf/open/floor/iron/stairs/right, @@ -51308,6 +51447,9 @@ }, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/hos) +"jXw" = ( +/turf/closed/wall/rust, +/area/station/security/prison) "jXA" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment, @@ -51376,20 +51518,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/science) -"jXV" = ( -/obj/structure/table/reinforced/rglass, -/obj/item/storage/box/hug{ - pixel_y = 5 - }, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/security/execution/transfer) -"jYd" = ( -/obj/structure/closet/crate/large, -/obj/effect/spawner/random/maintenance/two, -/turf/open/floor/iron, -/area/station/security/prison/upper) "jYj" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -51403,26 +51531,6 @@ /obj/machinery/light/small/directional/north, /turf/open/floor/plating, /area/station/maintenance/law) -"jYm" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/red, -/obj/item/storage/box/bodybags{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/item/storage/box/prisoner{ - pixel_x = -4 - }, -/obj/item/radio/intercom/directional/west, -/obj/item/pushbroom, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) "jYp" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -51539,6 +51647,15 @@ /obj/machinery/light/directional/south, /turf/open/floor/mineral/plastitanium, /area/station/science/robotics/lab) +"jZj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/security/prison) "jZk" = ( /obj/effect/spawner/random/structure/closet_maintenance, /obj/effect/decal/cleanable/dirt, @@ -51594,13 +51711,6 @@ }, /turf/open/floor/iron/cafeteria, /area/station/service/kitchen) -"jZy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/obj/item/storage/toolbox/mechanical/old, -/turf/open/floor/wood, -/area/station/security/prison) "jZA" = ( /obj/item/kirbyplants/random, /obj/machinery/light/directional/south, @@ -51681,14 +51791,6 @@ dir = 4 }, /area/station/service/bar/atrium) -"kas" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/security/execution/transfer) "kau" = ( /obj/effect/turf_decal/tile/neutral, /obj/structure/cable, @@ -51732,6 +51834,11 @@ "kbi" = ( /turf/open/floor/mineral/plastitanium/red, /area/station/maintenance/cult_chapel_maint) +"kbn" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/station/security/prison) "kbo" = ( /turf/open/space/openspace, /area/station/cargo/mining/asteroid_magnet) @@ -51811,6 +51918,13 @@ /obj/effect/decal/cleanable/cobweb/cobweb2, /turf/open/floor/plating, /area/station/maintenance/fore/upper) +"kcz" = ( +/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/trimline/red, +/turf/open/floor/iron/dark/small, +/area/station/security/prison) "kcI" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -51843,18 +51957,6 @@ /obj/structure/cable, /turf/open/floor/wood, /area/station/common/pool/sauna) -"kcW" = ( -/obj/effect/turf_decal/trimline/neutral/warning{ - dir = 6 - }, -/obj/effect/turf_decal/trimline/neutral/mid_joiner{ - dir = 4 - }, -/obj/effect/turf_decal/siding/dark_red, -/turf/open/floor/iron/dark/textured_half{ - dir = 1 - }, -/area/station/security/medical) "kcZ" = ( /obj/effect/turf_decal/bot, /obj/structure/liquid_pump, @@ -51913,21 +52015,6 @@ }, /turf/open/floor/engine, /area/station/science/ordnance/burnchamber) -"kdE" = ( -/obj/effect/turf_decal/trimline/red/filled/warning{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/line{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating_new/dark{ - dir = 8 - }, -/obj/structure/sign/departments/medbay/alt/directional/west, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/security/brig) "kdH" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -51982,6 +52069,20 @@ /obj/structure/window/reinforced/spawner/directional/north, /turf/open/floor/grass, /area/station/hallway/primary/central) +"kew" = ( +/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/trimline/red/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison) "key" = ( /obj/structure/cable, /obj/effect/landmark/event_spawn, @@ -52289,6 +52390,21 @@ /obj/effect/turf_decal/tile/dark_blue/fourcorners, /turf/open/floor/iron/dark, /area/station/common/laser_tag) +"kgu" = ( +/obj/effect/turf_decal/delivery/red, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "prisonlockdown3"; + name = "Lockdown" + }, +/obj/machinery/button/door{ + id = "prisonlockdown3"; + name = "Lockdown"; + pixel_x = 24; + req_access = list("security") + }, +/turf/open/floor/iron/dark, +/area/station/security/prison) "kgv" = ( /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/chair/sofa/bench/left, @@ -52549,11 +52665,6 @@ /obj/machinery/duct, /turf/open/floor/iron, /area/station/engineering/supermatter/room) -"kif" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/duct, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) "kih" = ( /obj/machinery/door/airlock{ name = "Commentator Studio" @@ -52643,6 +52754,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/pool_maintenance) +"kjl" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/execution/transfer) "kjr" = ( /obj/structure/table/reinforced, /obj/item/storage/box/beakers{ @@ -52747,9 +52866,6 @@ /obj/effect/mapping_helpers/airlock/access/all/command/general, /turf/open/floor/plating, /area/station/maintenance/department/medical/morgue) -"kkF" = ( -/turf/open/floor/glass/reinforced, -/area/station/security/execution/transfer) "kkI" = ( /obj/structure/grille, /obj/structure/window/reinforced/spawner/directional/south, @@ -52823,10 +52939,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/wood, /area/station/command/heads_quarters/captain/private) -"klO" = ( -/obj/machinery/status_display/shuttle, -/turf/closed/wall, -/area/station/hallway/secondary/entry) "klU" = ( /obj/machinery/power/solar{ id = "aftstarboard"; @@ -52835,19 +52947,6 @@ /obj/structure/cable, /turf/open/floor/iron/solarpanel/airless, /area/station/solars/starboard/aft) -"klV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/duct, -/obj/effect/turf_decal/trimline/red/filled/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/line, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/security/prison) "klX" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate{ @@ -52969,15 +53068,6 @@ /obj/effect/spawner/structure/window/reinforced/plasma, /turf/open/floor/plating, /area/station/maintenance/department/engineering/atmos_aux_port) -"kmG" = ( -/obj/structure/cable, -/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/dark/side{ - dir = 4 - }, -/area/station/security/prison) "kmI" = ( /obj/structure/chair/comfy/brown{ color = "#A46106"; @@ -53049,11 +53139,6 @@ dir = 4 }, /area/station/security/checkpoint/supply) -"knn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible/layer4, -/obj/machinery/duct, -/turf/open/floor/plating, -/area/station/security/prison) "kno" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -53122,6 +53207,20 @@ }, /turf/open/floor/iron, /area/station/science/research) +"knE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/security{ + name = "Shuttle Bay" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/turf/open/floor/iron/dark/side, +/area/station/security/prison/upper) "knM" = ( /obj/effect/turf_decal/tile/neutral, /obj/structure/extinguisher_cabinet/directional/east, @@ -53164,14 +53263,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/aux_eva) -"kow" = ( -/obj/structure/window/reinforced/spawner/directional/south, -/obj/structure/window/reinforced/spawner/directional/west, -/obj/structure/reagent_dispensers/water_cooler, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "kox" = ( /obj/structure/bookcase/manuals/research_and_development, /obj/machinery/digital_clock/directional/north, @@ -53203,20 +53294,15 @@ dir = 1 }, /area/station/hallway/primary/starboard) -"kpg" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 10 +"kpa" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 }, -/obj/machinery/netpod, -/obj/structure/sign/poster/contraband/lusty_xenomorph/directional/east, -/obj/machinery/light/small/blacklight/directional/east, -/obj/effect/spawner/random/trash/garbage, -/obj/effect/spawner/random/trash/garbage, -/obj/effect/spawner/random/trash/garbage, -/obj/effect/spawner/random/trash/garbage, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/small, -/area/station/security/bitden) +/obj/structure/chair/office, +/obj/effect/landmark/start/brig_physician, +/turf/open/floor/iron/white/side, +/area/station/security/medical) "kpo" = ( /obj/structure/window/reinforced/spawner/directional/east, /obj/structure/window/reinforced/spawner/directional/west, @@ -53367,6 +53453,21 @@ /obj/structure/window/reinforced/tinted/spawner/directional/south, /turf/open/floor/iron, /area/station/service/theater) +"kqq" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/sign/departments/medbay/alt/directional/west, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/brig) "kqs" = ( /obj/machinery/door/airlock/external{ name = "External Thrusters Access"; @@ -53514,6 +53615,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/stone, /area/station/common/wrestling/arena) +"krL" = ( +/obj/effect/turf_decal/siding/dark_red, +/turf/open/floor/iron/dark, +/area/station/security/medical) "krU" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -53981,6 +54086,7 @@ /obj/structure/bed/double, /obj/item/bedsheet/purple/double, /obj/machinery/light_switch/directional/east, +/obj/machinery/station_map/engineering/directional/south, /turf/open/floor/carpet/purple, /area/station/commons/dorms/room4) "kww" = ( @@ -54101,10 +54207,6 @@ dir = 4 }, /area/station/command/gateway) -"kxy" = ( -/obj/structure/railing, -/turf/closed/wall, -/area/station/security/bitden) "kxz" = ( /obj/effect/turf_decal/delivery, /turf/open/floor/iron/smooth_large, @@ -54129,12 +54231,6 @@ dir = 10 }, /area/station/service/hydroponics) -"kxG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/duct, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) "kxH" = ( /obj/item/cigbutt, /obj/structure/cable, @@ -54355,14 +54451,25 @@ /obj/machinery/status_display/evac/directional/east, /turf/open/floor/wood/tile, /area/station/service/bar/atrium) -"kzx" = ( -/obj/structure/railing{ - dir = 8 +"kzu" = ( +/obj/machinery/door/airlock/research{ + autoclose = 0; + frequency = 1449; + id_tag = "xeno_airlock_interior"; + name = "Xenobiology Lab Internal Airlock" }, -/obj/machinery/light/directional/north, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron, -/area/station/security/prison/upper) +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/warning, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/obj/structure/liquid_barrier, +/turf/open/floor/iron/white, +/area/station/science/xenobiology/hallway) "kzy" = ( /obj/machinery/light/directional/north, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, @@ -54659,6 +54766,13 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/port) +"kCv" = ( +/obj/structure/cable, +/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, +/area/station/security/prison) "kCB" = ( /turf/open/floor/iron/white/small, /area/station/medical/break_room) @@ -54940,6 +55054,19 @@ /obj/machinery/light_switch/directional/east, /turf/open/floor/carpet/blue, /area/station/command/heads_quarters/cmo) +"kFx" = ( +/obj/structure/table, +/obj/structure/bedsheetbin, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/security/prison) +"kFJ" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white/side, +/area/station/security/medical) "kFL" = ( /obj/structure/railing{ dir = 10 @@ -55309,13 +55436,9 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment, /obj/machinery/duct, +/obj/machinery/atm/directional/west, /turf/open/floor/iron, /area/station/commons/dorms) -"kKk" = ( -/obj/structure/door_assembly/door_assembly_sec, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "kKm" = ( /obj/machinery/door/airlock/external{ name = "Arrivals Dock"; @@ -55520,6 +55643,20 @@ /obj/machinery/atmospherics/pipe/smart/simple/green/visible, /turf/open/floor/engine, /area/station/engineering/supermatter/room) +"kMa" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/security/execution/transfer) "kMb" = ( /obj/machinery/light_switch/directional/south, /turf/open/floor/wood, @@ -55748,6 +55885,11 @@ }, /turf/open/floor/wood, /area/station/command/heads_quarters/captain/private) +"kOy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "kOB" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -55995,6 +56137,15 @@ /obj/machinery/light/floor/has_bulb, /turf/open/floor/iron/dark/smooth_large/airless, /area/space/nearstation) +"kRE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/security/execution/transfer) "kRF" = ( /obj/structure/chair/sofa/bench{ dir = 4; @@ -56182,12 +56333,6 @@ }, /turf/open/floor/wood, /area/station/hallway/primary/central) -"kUy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red, -/turf/open/floor/iron/dark/small, -/area/station/security/prison) "kUD" = ( /obj/structure/railing{ dir = 8 @@ -56256,6 +56401,12 @@ /obj/structure/closet/crate/freezer/blood, /turf/open/floor/iron/white, /area/station/medical/coldroom) +"kVx" = ( +/obj/structure/sink/directional/east, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/security/prison) "kVJ" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 4 @@ -56266,19 +56417,13 @@ /obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, /turf/open/floor/engine, /area/station/science/ordnance/burnchamber) -"kVN" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/trimline/red/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - color = "#DE3A3A"; - dir = 4 - }, -/turf/open/floor/iron/dark/side{ - dir = 4 +"kVR" = ( +/obj/machinery/door/window/brigdoor/right/directional/east{ + name = "Crematorium"; + req_access = list("security") }, -/area/station/security/prison) +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) "kWb" = ( /turf/closed/wall/r_wall, /area/station/ai_monitored/turret_protected/aisat/hallway) @@ -56287,18 +56432,6 @@ /obj/structure/barricade/wooden, /turf/open/floor/plating, /area/station/service/hydroponics/garden/abandoned) -"kWs" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 2; - height = 5; - name = "fore bay 1"; - roundstart_template = /datum/map_template/shuttle/labour/nova; - shuttle_id = "laborcamp_home"; - width = 9 - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "kWu" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -56372,6 +56505,14 @@ /obj/effect/mapping_helpers/airlock/access/all/security/armory, /turf/open/floor/iron/dark/side, /area/station/ai_monitored/security/armory) +"kXj" = ( +/obj/structure/cable, +/obj/machinery/light/directional/south, +/obj/item/radio/intercom/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "kXl" = ( /obj/structure/rack/shelf, /obj/effect/spawner/random/techstorage/medical_all, @@ -56391,6 +56532,14 @@ }, /turf/open/floor/iron/dark, /area/station/science/ordnance) +"kXq" = ( +/obj/item/radio/intercom/directional/south, +/obj/machinery/light/directional/south, +/obj/machinery/computer/security/labor{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "kXs" = ( /obj/structure/rack, /obj/effect/turf_decal/bot, @@ -56413,6 +56562,12 @@ }, /turf/open/floor/engine, /area/station/engineering/supermatter/room) +"kXC" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/duct, +/obj/machinery/station_map/engineering/directional/north, +/turf/open/floor/iron/white, +/area/station/medical/patients_rooms) "kXG" = ( /obj/item/screwdriver, /obj/item/clothing/glasses/welding, @@ -56485,20 +56640,6 @@ }, /turf/open/floor/eighties/red, /area/station/common/arcade) -"kYo" = ( -/obj/structure/window/reinforced/spawner/directional/north, -/obj/structure/table, -/obj/item/folder/red, -/obj/item/stamp/denied{ - pixel_y = 5 - }, -/obj/item/stamp, -/obj/item/reagent_containers/spray/pepper{ - pixel_x = 14 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "kYw" = ( /obj/machinery/light_switch/directional/south, /obj/machinery/duct, @@ -56722,6 +56863,15 @@ /obj/item/holosign_creator/robot_seat/restaurant, /turf/open/floor/iron/cafeteria, /area/station/service/kitchen) +"laE" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + color = "#DE3A3A" + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/side, +/area/station/security/prison) "laI" = ( /obj/structure/cable, /turf/open/floor/iron/dark, @@ -57049,14 +57199,6 @@ }, /turf/open/floor/carpet, /area/station/service/theater) -"lcR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison) "lcS" = ( /obj/structure/grille, /obj/structure/window/reinforced/spawner/directional/north, @@ -57318,16 +57460,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/department/security/greater) -"lfI" = ( -/obj/structure/bed/roller{ - dir = 1 - }, -/obj/item/bedsheet/medical, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/turf/open/floor/iron/white, -/area/station/security/execution/transfer) "lfK" = ( /obj/structure/railing, /obj/structure/railing{ @@ -57434,10 +57566,6 @@ /obj/structure/drain, /turf/open/floor/iron/freezer, /area/station/medical/aslyum) -"lgZ" = ( -/obj/structure/ore_box, -/turf/open/floor/iron, -/area/station/security/prison/upper) "lhd" = ( /obj/structure/lattice/catwalk, /obj/structure/railing{ @@ -57902,10 +58030,10 @@ /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 4 }, -/obj/machinery/newscaster/directional/east, /obj/machinery/light/directional/east, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atm/directional/east, /turf/open/floor/iron/white, /area/station/medical/medbay/lobby) "lmd" = ( @@ -57955,12 +58083,19 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"lmp" = ( +/obj/machinery/status_display/ai/directional/north, +/obj/machinery/computer/operating, +/turf/open/floor/iron/dark, +/area/station/security/medical) "lms" = ( /obj/effect/turf_decal/tile/brown/half/contrasted{ dir = 4 }, -/obj/machinery/status_display/ai/directional/east, /obj/machinery/light/directional/east, +/obj/machinery/status_display/supply{ + pixel_x = 32 + }, /turf/open/floor/iron, /area/station/cargo/lobby) "lmz" = ( @@ -57980,6 +58115,20 @@ /obj/machinery/light/directional/south, /turf/open/floor/iron, /area/station/commons/vacant_room/commissary) +"lmF" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/obj/structure/bodycontainer/crematorium{ + dir = 4; + id = "crematoriumSec" + }, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) "lmH" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/yellow/fourcorners, @@ -57988,6 +58137,15 @@ "lmI" = ( /turf/open/floor/iron, /area/station/security/prison) +"lmL" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/pipe_dispenser, +/obj/item/wrench, +/obj/item/analyzer, +/obj/machinery/atmospherics/pipe/layer_manifold, +/turf/open/floor/plating, +/area/station/security/prison) "lmP" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -58088,6 +58246,19 @@ }, /turf/open/floor/iron/dark, /area/station/security/warden) +"lnD" = ( +/obj/structure/bed/roller{ + dir = 1 + }, +/obj/item/bedsheet/medical, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/directional/north{ + pixel_y = 1 + }, +/turf/open/floor/iron/white, +/area/station/security/execution/transfer) "lnJ" = ( /turf/closed/wall/rust, /area/station/service/power_station) @@ -58132,11 +58303,6 @@ /obj/machinery/airalarm/directional/north, /turf/open/floor/plating, /area/station/cargo/storage) -"low" = ( -/obj/item/stack/sheet/cardboard, -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) "lox" = ( /obj/structure/table/wood, /obj/effect/turf_decal/siding/wood{ @@ -58273,6 +58439,15 @@ name = "Holodeck Projector Floor" }, /area/station/holodeck/rec_center) +"lpB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Labor Camp Shuttle Airlock" + }, +/turf/open/floor/iron, +/area/station/security/prison/upper) "lpC" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 4 @@ -58347,6 +58522,11 @@ }, /turf/open/floor/iron/dark, /area/station/security/brig) +"lqy" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/security/prison/upper) "lqB" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/loading_area{ @@ -58360,6 +58540,21 @@ /obj/structure/window/spawner/directional/west, /turf/open/floor/plating, /area/station/maintenance/central) +"lqF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison/upper) "lqG" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/iron/white, @@ -58575,6 +58770,18 @@ }, /turf/open/floor/iron/white, /area/station/science/lab) +"lsv" = ( +/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/warning{ + color = "#DE3A3A" + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/side, +/area/station/security/prison) "lsD" = ( /obj/structure/table/wood, /obj/effect/turf_decal/siding/wood{ @@ -58680,15 +58887,6 @@ dir = 8 }, /area/station/engineering/lobby) -"ltK" = ( -/obj/structure/window/reinforced/spawner/directional/east, -/obj/effect/turf_decal/stripes/white/line{ - dir = 4 - }, -/obj/structure/closet, -/obj/effect/spawner/random/medical/medkit, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) "ltN" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -58831,6 +59029,7 @@ /obj/structure/bed/double, /obj/item/bedsheet/red/double, /obj/machinery/light_switch/directional/east, +/obj/machinery/station_map/engineering/directional/north, /turf/open/floor/carpet/red, /area/station/commons/dorms/room6) "lvA" = ( @@ -58930,6 +59129,18 @@ dir = 4 }, /area/station/hallway/secondary/command) +"lwL" = ( +/obj/structure/bed/maint, +/obj/item/bedsheet/grey{ + dir = 1 + }, +/obj/structure/sink/kitchen/directional/south{ + desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; + name = "old sink" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/station/security/prison) "lwQ" = ( /obj/structure/transit_tube/curved{ dir = 8 @@ -58991,6 +59202,17 @@ /obj/item/kirbyplants/random, /turf/open/floor/iron/dark, /area/station/science/robotics) +"lxT" = ( +/obj/item/radio/intercom/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera/directional/south{ + c_tag = "Security - Shuttle Bay East" + }, +/turf/open/floor/iron/stairs/medium{ + dir = 8 + }, +/area/station/security/prison/upper) "lyc" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -59060,6 +59282,7 @@ c_tag = "Bar - Aft 2"; name = "service camera" }, +/obj/machinery/atm/directional/east, /turf/open/floor/wood, /area/station/service/bar/atrium) "lyW" = ( @@ -59306,14 +59529,6 @@ }, /turf/open/floor/iron/dark, /area/station/command/bridge) -"lBj" = ( -/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/side{ - dir = 1 - }, -/area/station/security/execution/transfer) "lBn" = ( /obj/structure/chair{ dir = 1 @@ -59426,6 +59641,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/department/medical) +"lCA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/duct, +/obj/effect/turf_decal/trimline/red, +/turf/open/floor/iron/dark/small, +/area/station/security/prison) "lCF" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -59602,6 +59825,7 @@ dir = 4 }, /obj/machinery/light_switch/directional/west, +/obj/machinery/station_map/engineering/directional/north, /turf/open/floor/carpet, /area/station/commons/dorms/room7) "lDX" = ( @@ -59680,6 +59904,21 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/central) +"lEZ" = ( +/obj/effect/turf_decal/delivery/red, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "prisonlockdown1"; + name = "Lockdown" + }, +/obj/machinery/button/door{ + id = "prisonlockdown1"; + name = "Lockdown"; + pixel_x = 24; + req_access = list("security") + }, +/turf/open/floor/iron/dark, +/area/station/security/prison) "lFa" = ( /obj/structure/chair/sofa/right/brown, /obj/effect/turf_decal/siding/wood{ @@ -59761,11 +60000,6 @@ /obj/effect/mapping_helpers/airlock/access/all/command/hop, /turf/open/floor/wood, /area/station/command/heads_quarters/hop) -"lFY" = ( -/obj/machinery/netpod, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/small, -/area/station/security/bitden) "lFZ" = ( /obj/structure/closet, /obj/item/stack/sheet/iron{ @@ -59788,13 +60022,6 @@ /obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/iron/kitchen, /area/station/service/kitchen/diner) -"lGf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/iron/smooth, -/area/station/security/bitden) "lGl" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -59909,6 +60136,14 @@ /obj/effect/landmark/start/security_officer, /turf/open/floor/iron, /area/station/security/office) +"lHo" = ( +/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/kitchen{ + dir = 1 + }, +/area/station/security/prison) "lHt" = ( /obj/effect/turf_decal/bot, /obj/structure/disposalpipe/segment, @@ -59943,17 +60178,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"lHT" = ( -/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted, -/obj/machinery/recharge_station, -/obj/machinery/light_switch/directional/south, -/obj/machinery/button/door/directional/east{ - name = "Security Mech Garage Door Controls"; - id = "SecMech"; - req_access = list("security") - }, -/turf/open/floor/iron/dark, -/area/station/security/mechbay) "lHW" = ( /obj/structure/table/wood, /obj/machinery/fax{ @@ -60424,14 +60648,6 @@ /obj/item/clothing/mask/breath, /turf/open/floor/engine, /area/station/command/secure_bunker) -"lMz" = ( -/obj/structure/railing{ - 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/station/security/prison/upper) "lME" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/loading_area{ @@ -60470,14 +60686,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/engine, /area/station/command/secure_bunker) -"lMR" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "lMX" = ( /obj/effect/turf_decal/trimline/purple/line{ dir = 4 @@ -60486,17 +60694,6 @@ dir = 4 }, /area/station/science/research) -"lNb" = ( -/obj/effect/turf_decal/delivery/white{ - color = "#00ff00"; - name = "green" - }, -/obj/machinery/cryopod{ - dir = 8 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/dark, -/area/station/security/prison) "lNc" = ( /obj/structure/rack, /obj/item/coffee_cartridge, @@ -60750,6 +60947,21 @@ }, /turf/open/floor/iron/white, /area/station/science) +"lPS" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "lQa" = ( /obj/machinery/firealarm{ dir = 1; @@ -60775,6 +60987,26 @@ }, /turf/open/space/basic, /area/space/nearstation) +"lQh" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/rack, +/obj/item/clothing/under/misc/burial, +/obj/item/clothing/under/misc/burial, +/obj/item/clothing/under/misc/burial, +/obj/item/food/grown/harebell, +/obj/item/food/grown/harebell, +/obj/machinery/newscaster/directional/west, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) "lQo" = ( /turf/open/floor/iron/dark/corner{ dir = 8 @@ -60968,16 +61200,6 @@ /obj/machinery/camera/autoname/directional/west, /turf/open/floor/iron/dark, /area/station/security/brig) -"lRK" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/spawner/random/trash/mopbucket, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/wood, -/area/station/security/prison) "lRL" = ( /obj/structure/closet/crate/bin, /obj/effect/decal/cleanable/dirt, @@ -61038,7 +61260,7 @@ /area/station/security/interrogation) "lSv" = ( /turf/closed/wall/r_wall, -/area/station/security/bitden) +/area/station/security/prison/upper) "lSx" = ( /obj/machinery/vending/games, /turf/open/floor/wood, @@ -61059,11 +61281,6 @@ /obj/structure/chair/stool/directional/north, /turf/open/floor/iron, /area/station/commons/fitness/recreation) -"lSN" = ( -/obj/machinery/status_display/ai/directional/north, -/obj/machinery/computer/operating, -/turf/open/floor/iron/dark, -/area/station/security/medical) "lSP" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -61421,7 +61638,7 @@ /area/station/maintenance/port/fore) "lWC" = ( /turf/closed/wall, -/area/station/security/bitden) +/area/station/security/prison/upper) "lWD" = ( /obj/structure/disposalpipe/segment{ dir = 6 @@ -61449,13 +61666,6 @@ "lWL" = ( /turf/open/floor/iron/dark, /area/station/security/prison/safe) -"lWM" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "lWO" = ( /obj/machinery/shower/directional/west, /obj/structure/drain, @@ -61510,13 +61720,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/department/chapel) -"lXr" = ( -/obj/item/kirbyplants/random, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/security/prison) "lXs" = ( /obj/structure/trash_pile, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -61526,20 +61729,6 @@ "lXw" = ( /turf/closed/wall, /area/station/command/heads_quarters/captain/private) -"lXx" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/warning{ - dir = 8 - }, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/security/prison) "lXy" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -61911,6 +62100,18 @@ /obj/structure/window/reinforced/spawner/directional/south, /turf/open/floor/plating, /area/station/engineering/atmos) +"maC" = ( +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/neutral/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark_red, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/security/medical) "maF" = ( /obj/machinery/photocopier, /obj/effect/turf_decal/stripes, @@ -61935,10 +62136,29 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/freezer, /area/station/maintenance/abandon_kitchen_upper) +"mbb" = ( +/obj/machinery/light/floor/has_bulb, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "mbg" = ( /obj/machinery/light/directional/north, /turf/open/floor/carpet/red, /area/station/command/heads_quarters/hos) +"mbh" = ( +/obj/structure/cable, +/obj/machinery/camera/directional/north{ + c_tag = " Prison - Upper"; + network = list("ss13","prison") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/newscaster/directional/north, +/obj/machinery/duct, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/prison) "mbk" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -62033,6 +62253,14 @@ }, /turf/open/floor/iron/dark, /area/station/cargo/office) +"mcr" = ( +/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/dark/side{ + dir = 8 + }, +/area/station/security/execution/transfer) "mcu" = ( /obj/machinery/computer/station_alert{ dir = 8 @@ -62307,6 +62535,7 @@ /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atm/directional/east, /turf/open/floor/iron/dark, /area/station/hallway/secondary/exit/departure_lounge) "mex" = ( @@ -62329,6 +62558,15 @@ /obj/structure/window/spawner/directional/north, /turf/open/floor/plating, /area/station/maintenance/department/security/greater) +"meR" = ( +/obj/effect/turf_decal/delivery/white, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/machinery/door/airlock/security/glass{ + name = "Flight Control" + }, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "meY" = ( /obj/effect/turf_decal/trimline/purple/filled/warning, /obj/structure/cable, @@ -62348,10 +62586,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"mfh" = ( -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron, -/area/station/security/prison/upper) "mfi" = ( /obj/structure/table/reinforced, /obj/item/reagent_containers/cup/glass/coffee/no_lid{ @@ -62382,9 +62616,8 @@ dir = 9 }, /area/station/security/lockers) -"mfE" = ( -/obj/machinery/light_switch/directional/north, -/obj/machinery/camera/autoname/directional/north, +"mfG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/dark, /area/station/security/prison/upper) "mfI" = ( @@ -62401,6 +62634,9 @@ /obj/machinery/newscaster/directional/north, /turf/open/floor/iron, /area/station/security/courtroom) +"mfN" = ( +/turf/open/floor/iron, +/area/station/security/prison/upper) "mfP" = ( /obj/structure/window/reinforced/fulltile, /obj/structure/flora/bush/grassy, @@ -62446,34 +62682,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/cargo/sorting) -"mgt" = ( -/obj/machinery/button/door/directional/west{ - id = "prison release"; - name = "Labor Camp Shuttle Lockdown"; - req_access = list("brig") - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/camera/directional/east{ - c_tag = "Security - Security Labor Transfer Dock"; - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) -"mgu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/security/execution/transfer) "mgz" = ( /obj/structure/cable, /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, /area/station/maintenance/fore/upper) +"mgC" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "mgF" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -62519,6 +62736,11 @@ }, /turf/open/floor/wood/parquet, /area/station/common/night_club) +"mgS" = ( +/obj/machinery/newscaster/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/stairs/old, +/area/station/security/prison/upper) "mgX" = ( /obj/structure/disposalpipe/segment, /obj/structure/falsewall, @@ -62633,6 +62855,18 @@ }, /turf/open/floor/iron/white, /area/station/science) +"mib" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + color = "#DE3A3A"; + dir = 8 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/security/prison) "mid" = ( /obj/structure/chair/sofa/bench{ dir = 4; @@ -62645,15 +62879,6 @@ dir = 8 }, /area/station/hallway/primary/central) -"miw" = ( -/obj/structure/table, -/obj/item/weldingtool/largetank{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/item/clothing/head/utility/welding, -/turf/open/floor/iron, -/area/station/security/prison/upper) "miB" = ( /obj/effect/turf_decal/trimline/purple/filled/warning{ dir = 9 @@ -62753,6 +62978,7 @@ /obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ dir = 1 }, +/obj/item/binoculars, /turf/open/floor/iron/dark, /area/station/command/bridge) "mjB" = ( @@ -62773,6 +62999,13 @@ /obj/structure/dresser, /turf/open/floor/carpet/blue, /area/station/commons/dorms/room3) +"mjJ" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison) "mjK" = ( /obj/effect/spawner/random/trash/mess, /turf/open/floor/plating, @@ -62817,12 +63050,6 @@ /obj/structure/chair/stool/bar/directional/west, /turf/open/floor/iron, /area/station/command/captain_dining) -"mkp" = ( -/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/station/security/prison/upper) "mky" = ( /obj/structure/chair, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -62845,11 +63072,6 @@ /obj/effect/landmark/start/hangover, /turf/open/openspace, /area/station/hallway/primary/upper) -"mkH" = ( -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/security/execution/transfer) "mkM" = ( /obj/structure/window/spawner/directional/south, /obj/structure/flora/bush/jungle/a/style_3, @@ -63149,16 +63371,22 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood, /area/station/hallway/primary/port) -"moF" = ( -/obj/structure/railing{ +"moD" = ( +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/closet/crate/bin, +/obj/effect/spawner/random/trash/garbage, +/obj/effect/spawner/random/trash/garbage, +/obj/effect/spawner/random/contraband/prison, +/obj/effect/turf_decal/trimline/red/filled/line{ dir = 1 }, -/obj/machinery/light/directional/south, -/obj/structure/cable, -/turf/open/floor/iron/stairs{ - dir = 4 +/obj/effect/turf_decal/trimline/red/line, +/turf/open/floor/iron/dark/side{ + dir = 1 }, -/area/station/security/prison/upper) +/area/station/security/prison) "moI" = ( /obj/effect/turf_decal/stripes{ dir = 9 @@ -63279,6 +63507,12 @@ }, /turf/open/floor/iron/stairs, /area/station/command/gateway) +"mpU" = ( +/obj/item/reagent_containers/cup/bucket/wooden{ + name = "waste bucket" + }, +/turf/open/floor/plating, +/area/station/security/prison) "mqa" = ( /obj/effect/turf_decal/siding/thinplating{ dir = 4 @@ -63564,12 +63798,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"msT" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/prison/upper) "msV" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, @@ -63638,6 +63866,13 @@ /obj/machinery/computer/shuttle/mining, /turf/open/floor/iron/dark/small, /area/station/cargo/miningdock) +"mtA" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/turf_decal/bot, +/obj/item/storage/bag/trash, +/obj/effect/spawner/random/contraband/prison, +/turf/open/floor/iron, +/area/station/security/prison) "mtF" = ( /obj/effect/turf_decal/tile/purple/half, /turf/open/floor/iron, @@ -64112,6 +64347,15 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/wood, /area/station/service/kitchen/diner) +"mzi" = ( +/obj/effect/turf_decal/stripes/full, +/obj/effect/turf_decal/stripes/white/full, +/obj/machinery/door/poddoor/shutters{ + id = "securitydock1"; + name = "Security Dock 1" + }, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "mzj" = ( /obj/machinery/door/airlock/glass{ name = "Cryopods" @@ -64218,20 +64462,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/command/heads_quarters/cmo) -"mzV" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/window/reinforced/spawner/directional/east, -/obj/structure/bodycontainer/morgue{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) "mAe" = ( /obj/effect/spawner/random/trash/mess, /turf/open/floor/plating, @@ -64255,6 +64485,19 @@ /obj/machinery/portable_atmospherics/canister/air, /turf/open/floor/iron/dark, /area/station/ai_monitored/command/storage/eva/upper) +"mAp" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + color = "#DE3A3A"; + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison) "mAB" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -64477,22 +64720,6 @@ /obj/structure/cable, /turf/open/floor/wood, /area/station/common/wrestling/lobby) -"mDg" = ( -/obj/machinery/door/poddoor/preopen{ - id = "XenoOffice"; - name = "Xenobiology Lockdown Blast Doors" - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Toxins Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/liquid_barrier, -/turf/open/floor/plating, -/area/station/maintenance/department/science/xenobiology) "mDi" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 10 @@ -64606,17 +64833,6 @@ }, /turf/open/floor/iron/dark/small, /area/station/science/circuits) -"mEr" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Labor Camp Shuttle Airlock" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/security/prison/upper) "mEs" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/structure/window/reinforced/spawner/directional/east, @@ -64755,6 +64971,13 @@ "mFy" = ( /turf/open/floor/iron, /area/station/engineering/main) +"mFF" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron, +/area/station/security/prison/upper) "mFI" = ( /obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ dir = 4 @@ -64921,21 +65144,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron, /area/station/hallway/primary/port) -"mHe" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison/upper) "mHg" = ( /obj/structure/chair/stool{ pixel_y = 3 @@ -65122,18 +65330,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/security/checkpoint/escape) -"mIY" = ( -/obj/structure/table, -/obj/item/fuel_pellet, -/turf/open/floor/iron, -/area/station/security/prison/upper) -"mJa" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/duct, -/turf/open/floor/plating, -/area/station/security/prison) "mJc" = ( /obj/structure/table/wood, /obj/effect/turf_decal/siding/wood{ @@ -65147,11 +65343,6 @@ }, /turf/open/floor/carpet/blue, /area/station/command/heads_quarters/cmo) -"mJh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall, -/area/station/security/prison) "mJi" = ( /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark, @@ -65316,15 +65507,6 @@ /obj/structure/chair/stool, /turf/open/floor/iron, /area/station/commons/fitness/recreation) -"mKJ" = ( -/obj/effect/turf_decal/stripes/full, -/obj/effect/turf_decal/stripes/white/full, -/obj/machinery/door/poddoor/shutters{ - id = "securitydock1"; - name = "Security Dock 1" - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "mKN" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -65598,6 +65780,11 @@ }, /turf/open/floor/iron/dark, /area/station/service/library/private) +"mNo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/security/medical) "mNy" = ( /obj/effect/turf_decal/siding/wood, /obj/effect/turf_decal/siding/wood{ @@ -65873,16 +66060,6 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, /area/station/maintenance/fore/upper) -"mQE" = ( -/obj/effect/turf_decal/stripes/full, -/obj/effect/turf_decal/stripes/white/full, -/obj/machinery/door/poddoor/shutters{ - id = "securitydock2"; - name = "Security Dock 2" - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "mQG" = ( /obj/machinery/door/airlock/research{ name = "Robotics Surgery" @@ -66019,6 +66196,13 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/grass, /area/station/common/night_club) +"mRr" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/closet/crate/bin, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "mRu" = ( /obj/effect/decal/cleanable/dirt, /obj/item/trash/syndi_cakes, @@ -66436,6 +66620,12 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/floor/iron/dark, /area/station/maintenance/aux_eva) +"mVR" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/security/execution/transfer) "mVS" = ( /obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/iron/smooth_large, @@ -66607,6 +66797,20 @@ /obj/item/food/cake/chocolate, /turf/open/floor/iron/dark, /area/station/command/captain_dining) +"mXJ" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Gulag Processing" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/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/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron, +/area/station/security/prison/upper) "mXK" = ( /obj/effect/turf_decal/delivery/white, /turf/open/floor/iron/dark/small, @@ -66617,15 +66821,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/herringbone, /area/station/security/brig) -"mXO" = ( -/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/red{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/prison/upper) "mYc" = ( /obj/effect/decal/cleanable/glass, /obj/item/shard, @@ -66652,12 +66847,6 @@ /obj/machinery/rnd/production/circuit_imprinter/department/science, /turf/open/floor/mineral/plastitanium, /area/station/science/robotics/lab) -"mYn" = ( -/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, -/area/station/security/execution/transfer) "mYo" = ( /obj/machinery/door/airlock/external{ space_dir = 8 @@ -66787,15 +66976,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"mZZ" = ( -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/obj/item/pipe_dispenser, -/obj/item/wrench, -/obj/item/analyzer, -/obj/machinery/atmospherics/pipe/layer_manifold, -/turf/open/floor/plating, -/area/station/security/prison) "nah" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 9 @@ -66844,6 +67024,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/openspace, /area/station/maintenance/fore/upper) +"nar" = ( +/obj/machinery/washing_machine, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/security/prison) "nav" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -67197,6 +67383,12 @@ /obj/effect/spawner/random/trash/garbage, /turf/open/floor/plating, /area/station/maintenance/department/security/prison_upper) +"neq" = ( +/obj/effect/turf_decal/box/white/corners{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "nes" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -67276,6 +67468,18 @@ /obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrous_output, /turf/open/floor/engine/n2o, /area/station/engineering/atmos) +"nfl" = ( +/obj/machinery/camera/directional/north{ + c_tag = " Prison - West"; + dir = 2; + network = list("ss13","prison") + }, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/side, +/area/station/security/prison) "nfn" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -67335,6 +67539,18 @@ /obj/structure/sign/poster/contraband/random/directional/west, /turf/open/floor/plating, /area/station/maintenance/department/medical) +"nfH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/red/filled/line{ + color = "#DE3A3A"; + dir = 9 + }, +/obj/effect/turf_decal/trimline/red/corner, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/security/prison) "nfL" = ( /turf/closed/wall, /area/station/common/wrestling/beverage) @@ -67510,12 +67726,6 @@ }, /turf/open/floor/iron/dark, /area/station/security/brig) -"nhb" = ( -/obj/effect/turf_decal/trimline/blue/filled/end{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/security/execution/transfer) "nhj" = ( /obj/structure/guncase, /obj/effect/turf_decal/delivery, @@ -67592,6 +67802,17 @@ /obj/machinery/igniter/incinerator_atmos, /turf/open/floor/engine/vacuum, /area/station/maintenance/disposal/incinerator) +"nim" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Labor Camp Shuttle Airlock" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/prison/upper) "nin" = ( /obj/structure/lattice, /obj/item/stack/ore/glass, @@ -67769,11 +67990,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/ai_monitored/aisat/exterior) -"nkn" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/curtain/bounty/start_closed, -/turf/open/floor/plating, -/area/station/security/bitden) "nko" = ( /turf/closed/wall/r_wall, /area/station/maintenance/abandon_arcade) @@ -67792,6 +68008,10 @@ /obj/machinery/door/airlock/maintenance, /turf/open/floor/plating, /area/station/maintenance/aft/upper) +"nkM" = ( +/obj/structure/table/reinforced, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "nkN" = ( /obj/machinery/door/airlock/research{ name = "Research Division Access" @@ -67902,6 +68122,15 @@ dir = 4 }, /area/station/security/checkpoint/escape) +"nlW" = ( +/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/red{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/security/prison/upper) "nlZ" = ( /obj/effect/spawner/random/structure/crate, /turf/open/floor/plating, @@ -67982,12 +68211,14 @@ /obj/item/radio/intercom/directional/east, /turf/open/floor/iron/white, /area/station/medical/treatment_center) -"nnc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/security/prison) +"nmU" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "nng" = ( /obj/structure/sign/directions/security{ dir = 8; @@ -68011,11 +68242,10 @@ /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/station_map/engineering/directional/north, /turf/open/floor/iron/white, /area/station/science/research) "nnx" = ( @@ -68032,6 +68262,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 }, +/obj/machinery/station_map/engineering/directional/west, /turf/open/floor/iron/white, /area/station/commons/toilet/restrooms) "nnB" = ( @@ -68115,6 +68346,13 @@ /obj/item/stack/sheet/cardboard, /turf/open/floor/plating, /area/station/maintenance/port/upper) +"nom" = ( +/obj/machinery/camera/directional/east{ + c_tag = "Security - Shuttle Bay West"; + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "noo" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -68129,6 +68367,10 @@ }, /turf/open/floor/iron/dark, /area/station/security/prison/safe) +"nos" = ( +/obj/structure/bed/maint, +/turf/open/floor/plating, +/area/station/security/prison) "noz" = ( /obj/structure/table/wood/poker, /obj/item/toy/cards/deck, @@ -68387,16 +68629,24 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/medical/power_station) +"nrY" = ( +/obj/effect/spawner/random/trash/mess, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/security/prison) "nsb" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/obj/machinery/newscaster/directional/west, /obj/machinery/camera/directional/west{ c_tag = "Upper Central Hallway - Upper Starboard Central"; name = "hallway camera" }, /obj/machinery/light/directional/west, +/obj/machinery/station_map/engineering/directional/west, /turf/open/floor/iron, /area/station/hallway/primary/upper) "nsg" = ( @@ -69257,12 +69507,6 @@ /obj/structure/flora/bush/lavendergrass, /turf/open/floor/grass, /area/station/command/heads_quarters/captain) -"nBh" = ( -/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/station/security/prison) "nBi" = ( /obj/structure/rack/shelf, /obj/effect/turf_decal/bot, @@ -69290,6 +69534,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/engineering/atmos/test_chambers) +"nBw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall, +/area/station/security/prison) "nBz" = ( /obj/structure/chair/sofa/left/brown, /obj/effect/decal/cleanable/dirt, @@ -69439,18 +69688,10 @@ initial_gas_mix = "TEMP=2.7" }, /area/station/science/ordnance/bomb) -"nCJ" = ( -/obj/structure/closet/secure_closet/brig/genpop, -/obj/effect/turf_decal/bot, -/obj/structure/window/reinforced/spawner/directional/west, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) -"nCO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/security/execution/transfer) +"nCL" = ( +/obj/structure/ore_box, +/turf/open/floor/iron, +/area/station/security/prison/upper) "nCP" = ( /obj/machinery/atmospherics/pipe/smart/simple/orange/hidden{ dir = 9 @@ -69613,6 +69854,7 @@ "nEW" = ( /obj/machinery/light_switch/directional/north, /obj/structure/closet/crate/freezer/blood, +/obj/machinery/airalarm/directional/east, /turf/open/floor/iron/white, /area/station/medical/coldroom) "nFc" = ( @@ -70066,16 +70308,6 @@ dir = 8 }, /area/station/security/checkpoint/escape) -"nJe" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Security Shuttlebay" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron, -/area/station/security/prison/upper) "nJh" = ( /obj/structure/chair/sofa/corp{ dir = 1 @@ -70113,6 +70345,23 @@ }, /turf/open/floor/grass, /area/station/hallway/primary/central) +"nJo" = ( +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/mid_joiner{ + dir = 4 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Security - Medbay" + }, +/obj/structure/bodycontainer/morgue{ + dir = 2 + }, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/security/medical) "nJv" = ( /obj/machinery/computer/slot_machine, /obj/machinery/light/directional/south, @@ -70147,6 +70396,12 @@ /obj/effect/mapping_helpers/airlock/access/all/security/general, /turf/open/floor/iron/dark, /area/station/security/brig) +"nJN" = ( +/obj/effect/turf_decal/box/white/corners{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "nJT" = ( /obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, @@ -70154,12 +70409,6 @@ /obj/machinery/duct, /turf/open/floor/plating, /area/station/maintenance/night_club) -"nJY" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark/side{ - dir = 9 - }, -/area/station/security/execution/transfer) "nKc" = ( /obj/effect/turf_decal/bot, /obj/machinery/atmospherics/components/unary/thermomachine/freezer{ @@ -70247,6 +70496,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/cargo/warehouse) +"nKO" = ( +/obj/structure/closet/secure_closet/brig/genpop, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/machinery/light/directional/north, +/obj/machinery/camera/directional/north, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) "nKV" = ( /obj/structure/chair/sofa/corp/right{ dir = 8 @@ -70395,11 +70652,6 @@ /obj/effect/turf_decal/tile/red, /turf/open/floor/iron/dark, /area/station/security/office) -"nMV" = ( -/obj/structure/closet, -/obj/effect/spawner/random/medical/medkit, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) "nMW" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment, @@ -70438,6 +70690,14 @@ /obj/machinery/light/small/broken/directional/north, /turf/open/floor/plating, /area/station/service/theater/abandoned) +"nNy" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/stairs, +/area/station/security/prison/upper) "nNB" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /obj/structure/cable, @@ -70504,13 +70764,6 @@ }, /turf/open/floor/carpet/purple, /area/station/science/breakroom) -"nOf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/kitchen{ - dir = 1 - }, -/area/station/security/prison) "nOi" = ( /turf/closed/wall/r_wall, /area/station/security/office) @@ -70566,10 +70819,6 @@ }, /turf/open/floor/carpet, /area/station/medical/psychology) -"nOQ" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "nPa" = ( /obj/structure/table, /obj/machinery/chem_dispenser/drinks{ @@ -70664,20 +70913,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/science/power_station) -"nQe" = ( -/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/trimline/red/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/warning{ - dir = 4 - }, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/security/prison) "nQf" = ( /obj/machinery/airalarm/directional/west, /obj/item/radio/intercom/directional/south, @@ -70953,6 +71188,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) +"nSB" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line, +/obj/machinery/station_map/engineering/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/brig) "nSD" = ( /obj/structure/chair/plastic, /turf/open/floor/plating, @@ -71012,6 +71258,14 @@ dir = 1 }, /area/station/hallway/secondary/entry) +"nSZ" = ( +/obj/structure/table/reinforced, +/obj/item/wrench, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "nTd" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Science Maintenance" @@ -71040,13 +71294,6 @@ dir = 8 }, /area/station/commons/fitness/recreation) -"nTp" = ( -/obj/structure/table, -/obj/effect/spawner/random/decoration/ornament, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/wood, -/area/station/security/prison) "nTw" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -71075,14 +71322,6 @@ /obj/structure/flora/bush/lavendergrass, /turf/open/floor/grass, /area/station/common/night_club) -"nTK" = ( -/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/kitchen{ - dir = 1 - }, -/area/station/security/prison) "nTM" = ( /obj/effect/turf_decal/bot, /obj/structure/reagent_dispensers/fueltank, @@ -71207,13 +71446,6 @@ /obj/structure/flora/bush/grassy, /turf/open/floor/grass, /area/station/service/chapel) -"nUH" = ( -/obj/structure/cable, -/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/dark, -/area/station/security/prison) "nUJ" = ( /obj/effect/turf_decal/stripes, /obj/structure/cable, @@ -71330,14 +71562,6 @@ "nVz" = ( /turf/closed/wall/r_wall, /area/station/science/research) -"nVB" = ( -/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/stairs/medium{ - dir = 4 - }, -/area/station/security/prison) "nVD" = ( /turf/open/floor/iron, /area/station/ai_monitored/command/storage/eva) @@ -71464,6 +71688,18 @@ /obj/machinery/duct, /turf/open/floor/iron/dark/textured_edge, /area/station/security/prison/garden) +"nWV" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 6 + }, +/obj/machinery/quantum_server, +/obj/machinery/light/small/blacklight/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/item/pizzabox/meat{ + pixel_y = 14 + }, +/turf/open/floor/iron/dark/small, +/area/station/security/bitden) "nWZ" = ( /obj/effect/turf_decal/bot, /obj/machinery/vending/wardrobe/sec_wardrobe, @@ -71495,6 +71731,13 @@ dir = 4 }, /area/station/hallway/secondary/command) +"nXF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/duct, +/turf/open/floor/iron/dark/small, +/area/station/security/prison) "nXK" = ( /obj/machinery/chem_mass_spec, /obj/effect/turf_decal/bot, @@ -71568,6 +71811,12 @@ }, /turf/open/floor/iron/white, /area/station/medical/pharmacy) +"nYK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side, +/area/station/security/execution/transfer) "nYM" = ( /obj/structure/cable, /obj/machinery/duct, @@ -71691,6 +71940,11 @@ /obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/iron, /area/station/hallway/primary/central/fore) +"nZv" = ( +/turf/open/floor/iron/stairs/left{ + dir = 8 + }, +/area/station/security/prison) "nZz" = ( /obj/effect/turf_decal/stripes{ dir = 1 @@ -71773,22 +72027,6 @@ "oar" = ( /turf/open/floor/iron/dark, /area/station/security/detectives_office) -"oav" = ( -/obj/structure/window/reinforced/spawner/directional/west, -/obj/structure/rack, -/obj/item/clothing/suit/caution, -/obj/item/clothing/suit/caution, -/obj/item/clothing/suit/caution, -/obj/item/clothing/suit/caution, -/obj/item/mop, -/obj/item/mop, -/obj/item/pushbroom, -/obj/item/pushbroom, -/obj/item/reagent_containers/cup/bucket, -/obj/item/reagent_containers/cup/bucket, -/obj/item/storage/bag/trash, -/turf/open/floor/iron, -/area/station/security/prison) "oax" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, @@ -71814,6 +72052,19 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/maintenance/solars/starboard/fore) +"oaW" = ( +/obj/structure/table, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/item/stack/medical/mesh{ + pixel_x = -6 + }, +/obj/item/healthanalyzer/simple{ + pixel_y = 8 + }, +/turf/open/floor/iron/white, +/area/station/security/execution/transfer) "obc" = ( /obj/structure/flora/bush/sparsegrass, /obj/structure/flora/bush/flowers_yw, @@ -71873,18 +72124,18 @@ /obj/machinery/duct, /turf/open/floor/iron, /area/station/science/ordnance) +"obF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/spawner/random/structure/steam_vent, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) "obI" = ( /obj/machinery/growing/tray, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/department/security/greater) -"obJ" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "obM" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -71910,13 +72161,6 @@ /obj/machinery/newscaster/directional/north, /turf/open/floor/carpet, /area/station/security/detectives_office) -"occ" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/station/security/prison/upper) "oci" = ( /obj/effect/turf_decal/trimline/red/filled/corner{ color = "#DE3A3A"; @@ -71990,6 +72234,14 @@ }, /turf/open/floor/iron, /area/station/cargo/sorting) +"ocU" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/execution/transfer) "ocY" = ( /obj/machinery/computer/warrant{ dir = 4 @@ -72004,11 +72256,6 @@ dir = 8 }, /area/station/commons/fitness) -"odg" = ( -/obj/machinery/newscaster/directional/west, -/obj/structure/cable, -/turf/open/floor/iron/stairs/old, -/area/station/security/prison/upper) "odj" = ( /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/yellow{ @@ -72102,6 +72349,7 @@ /area/station/maintenance/department/security/lesser) "odS" = ( /obj/machinery/camera/autoname/directional/west, +/obj/machinery/atm/directional/west, /turf/open/floor/iron/dark/side{ dir = 8 }, @@ -72606,6 +72854,12 @@ /obj/structure/table, /turf/open/floor/wood, /area/station/service/kitchen/diner) +"ohJ" = ( +/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, +/area/station/security/execution/transfer) "ohK" = ( /obj/effect/spawner/structure/window, /obj/machinery/door/poddoor/shutters/preopen{ @@ -72661,10 +72915,6 @@ /obj/item/organ/internal/brain, /turf/open/floor/iron/white, /area/station/maintenance/abandon_surgery) -"oih" = ( -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/station/security/prison/upper) "oil" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -72747,12 +72997,6 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/stone, /area/station/hallway/primary/central) -"oiU" = ( -/obj/item/kirbyplants/organic/plant21, -/turf/open/floor/iron/dark/side{ - dir = 10 - }, -/area/station/security/execution/transfer) "oiX" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -72830,16 +73074,6 @@ /obj/effect/spawner/random/trash/mess, /turf/open/floor/wood, /area/station/maintenance/abandon_art_studio) -"ojW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Prison Sanitarium" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron/white/side, -/area/station/security/execution/transfer) "oke" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -73030,6 +73264,13 @@ }, /turf/open/floor/iron, /area/station/science/ordnance/storage) +"olx" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/side, +/area/station/security/prison) "oly" = ( /turf/open/floor/iron/stairs/medium{ dir = 4 @@ -73061,6 +73302,7 @@ /obj/structure/bed/double, /obj/item/bedsheet/brown/double, /obj/machinery/light_switch/directional/east, +/obj/machinery/station_map/engineering/directional/north, /turf/open/floor/carpet/royalblack, /area/station/commons/dorms/room8) "olW" = ( @@ -73322,12 +73564,6 @@ /obj/machinery/duct, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"ooh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/trash/can, -/turf/open/floor/iron/smooth, -/area/station/security/bitden) "ooi" = ( /obj/effect/decal/cleanable/blood/tracks{ dir = 8 @@ -73528,10 +73764,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/security/checkpoint/medical) -"oql" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/security/prison/upper) "oqn" = ( /obj/machinery/door/poddoor/shutters{ id = "aux_base_shutters"; @@ -73628,13 +73860,6 @@ /obj/structure/cable, /turf/open/floor/iron/cafeteria, /area/station/service/kitchen) -"orl" = ( -/obj/structure/closet/crate/trashcart, -/obj/effect/turf_decal/bot, -/obj/item/storage/bag/trash, -/obj/effect/spawner/random/contraband/prison, -/turf/open/floor/iron, -/area/station/security/prison) "orn" = ( /obj/effect/turf_decal/vg_decals/numbers/three, /turf/open/floor/iron/shuttle/arrivals/airless, @@ -73721,18 +73946,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/station/medical/virology/isolation) -"osb" = ( -/obj/machinery/door/poddoor/preopen{ - id = "prison release"; - name = "Prisoner Processing Blast Door" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/security/prison/upper) "osc" = ( /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/window/reinforced/spawner/directional/south, @@ -73846,6 +74059,17 @@ }, /turf/open/floor/engine, /area/station/science/auxlab/firing_range) +"ote" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison) "otk" = ( /obj/machinery/photocopier, /obj/machinery/light/directional/north, @@ -73869,6 +74093,16 @@ /obj/effect/decal/cleanable/blood/old, /turf/open/floor/mineral/plastitanium, /area/station/maintenance/cult_chapel_maint) +"otH" = ( +/obj/structure/bed/roller{ + dir = 1 + }, +/obj/item/bedsheet/medical, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/turf/open/floor/iron/white, +/area/station/security/execution/transfer) "otQ" = ( /obj/structure/chair/pew/left{ dir = 4 @@ -73945,16 +74179,17 @@ dir = 8 }, /area/station/engineering/atmos/hfr_room) +"ouA" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/security/execution/transfer) "ouH" = ( /turf/open/floor/iron/checker, /area/station/hallway/secondary/service) -"ouK" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/east, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/security/execution/transfer) "ouM" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -74289,6 +74524,13 @@ /obj/machinery/atmospherics/pipe/smart/simple/violet/visible, /turf/closed/wall, /area/station/engineering/atmos/pumproom) +"oya" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron, +/area/station/security/prison/upper) "oyb" = ( /obj/structure/table/reinforced, /obj/machinery/computer/security/telescreen/ordnance{ @@ -74331,11 +74573,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/engineering/engine_smes) -"oyy" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red, -/turf/open/floor/iron/dark/small, -/area/station/security/prison) "oyz" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -74364,11 +74601,6 @@ }, /turf/open/floor/carpet, /area/station/common/tailoring) -"oyI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "oyK" = ( /obj/machinery/photocopier, /obj/effect/turf_decal/siding/wood{ @@ -74678,10 +74910,6 @@ }, /turf/open/floor/engine, /area/station/engineering/supermatter/room) -"oBL" = ( -/obj/machinery/door/window/right/directional/north, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "oBO" = ( /obj/machinery/conveyor{ dir = 8; @@ -74704,6 +74932,11 @@ /obj/structure/sign/departments/psychology/directional/west, /turf/open/floor/iron/white, /area/station/medical/medbay/central) +"oBU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/closet_maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) "oBV" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -74809,13 +75042,13 @@ }, /turf/open/floor/iron, /area/station/engineering/atmos/test_chambers) -"oDh" = ( -/obj/structure/window/reinforced/spawner/directional/north, -/obj/structure/window/reinforced/spawner/directional/west, -/obj/structure/closet/crate/bin, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) +"oDk" = ( +/obj/machinery/washing_machine, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/security/prison) "oDl" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -75026,6 +75259,17 @@ }, /turf/open/floor/carpet, /area/station/service/library) +"oFM" = ( +/obj/machinery/door/airlock/research/glass{ + name = "Xenobiology Kill Room" + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/obj/structure/liquid_barrier, +/turf/open/floor/iron/freezer, +/area/station/science/xenobiology) "oFP" = ( /obj/structure/cable, /turf/open/floor/iron, @@ -75457,6 +75701,18 @@ dir = 8 }, /area/station/cargo/miningdock) +"oKh" = ( +/obj/structure/table/reinforced, +/obj/item/folder/blue{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/folder/yellow, +/obj/item/lighter, +/obj/item/stamp/head/ce, +/obj/effect/turf_decal/tile/yellow/full, +/turf/open/floor/iron/large, +/area/station/command/heads_quarters/ce) "oKi" = ( /obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ dir = 8 @@ -75718,6 +75974,35 @@ }, /turf/open/floor/wood, /area/station/service/barber) +"oLZ" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) +"oMa" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison/upper) "oMd" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/broken_floor, @@ -75757,6 +76042,7 @@ /obj/structure/disposalpipe/trunk{ dir = 2 }, +/obj/machinery/atm/directional/north, /turf/open/floor/iron/kitchen, /area/station/service/kitchen/diner) "oMC" = ( @@ -76245,6 +76531,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, /area/station/medical/psychology) +"oRx" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Security Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/security/medical) "oRy" = ( /obj/machinery/computer/monitor, /obj/structure/cable, @@ -76544,12 +76839,6 @@ /obj/machinery/duct, /turf/open/floor/iron, /area/station/commons/locker) -"oUI" = ( -/obj/machinery/computer/records/security{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "oUJ" = ( /obj/effect/landmark/start/ai/secondary, /obj/item/radio/intercom/directional/north{ @@ -76718,14 +77007,6 @@ /obj/machinery/duct, /turf/open/floor/iron, /area/station/hallway/primary/central/fore) -"oWD" = ( -/obj/structure/chair/office, -/obj/effect/turf_decal/vg_decals/numbers/four, -/obj/effect/turf_decal/trimline/red/filled/warning{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "oWE" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -76771,6 +77052,28 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/port/upper) +"oXl" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/item/folder/yellow, +/obj/item/stamp/head/qm, +/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{ + pixel_x = 6; + pixel_y = 16 + }, +/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{ + pixel_x = -4; + pixel_y = 16 + }, +/obj/item/hand_labeler_refill{ + pixel_x = -8; + pixel_y = -8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet/royalblack, +/area/station/command/heads_quarters/qm) "oXm" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, @@ -76862,6 +77165,19 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/station/medical/medbay/lobby) +"oYn" = ( +/obj/effect/turf_decal/delivery/red, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "prisonlockdown3"; + name = "Lockdown" + }, +/obj/structure/cable, +/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/dark, +/area/station/security/prison) "oYq" = ( /obj/machinery/button/door{ desc = "A remote control-switch for secure storage."; @@ -77039,21 +77355,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/library/upper) -"pai" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Prison Wing" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery/blue, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/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/access/all/security/brig, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) "paj" = ( /obj/effect/turf_decal/stripes/red/line{ dir = 10 @@ -77075,6 +77376,20 @@ }, /turf/open/floor/grass, /area/station/hallway/primary/central) +"pap" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red, +/obj/item/pen/red, +/obj/item/stamp/head/hos, +/obj/machinery/keycard_auth{ + pixel_x = 15 + }, +/obj/item/clothing/accessory/badge/holo/hos{ + pixel_x = -7; + pixel_y = 9 + }, +/turf/open/floor/carpet/red, +/area/station/command/heads_quarters/hos) "paq" = ( /obj/structure/chair/comfy/brown{ dir = 8 @@ -77084,6 +77399,13 @@ }, /turf/open/floor/carpet, /area/station/command/meeting_room/council) +"pas" = ( +/obj/structure/table, +/obj/machinery/power/shuttle_engine/heater{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/security/prison/upper) "pat" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -77133,6 +77455,12 @@ }, /turf/open/misc/beach/sand, /area/station/hallway/primary/central) +"paT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) "paW" = ( /obj/structure/chair/comfy/brown{ dir = 8 @@ -77234,6 +77562,14 @@ /obj/machinery/pipedispenser, /turf/open/floor/iron, /area/station/maintenance/department/engineering/atmos_aux_port) +"pcb" = ( +/obj/machinery/door/airlock/hatch{ + name = "Secure Pen" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/obj/structure/liquid_barrier, +/turf/open/floor/engine, +/area/station/science/xenobiology) "pcf" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/table/reinforced, @@ -77259,6 +77595,22 @@ }, /turf/open/floor/iron/cafeteria, /area/station/engineering/atmos) +"pco" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/rack, +/obj/machinery/button/crematorium{ + id = "crematoriumSec"; + pixel_y = 26; + req_access = list("crematorium") + }, +/obj/item/book/bible, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) "pcs" = ( /obj/machinery/mecha_part_fabricator/maint{ name = "forgotten exosuit fabricator" @@ -77443,10 +77795,6 @@ }, /turf/open/floor/iron, /area/station/security/prison/mess) -"peU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "peV" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -77649,13 +77997,6 @@ dir = 4 }, /area/station/cargo/power_station/upper) -"phD" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/prison/upper) "phG" = ( /obj/machinery/light/directional/north, /obj/machinery/newscaster/directional/north, @@ -77776,16 +78117,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/common/wrestling/arena) -"pir" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Shaving Station" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron, -/area/station/security/execution/transfer) "pit" = ( /obj/structure/flora/bush/jungle/c, /obj/structure/flora/bush/flowers_pp/style_2, @@ -77819,22 +78150,9 @@ /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/upper) -"piE" = ( -/obj/effect/turf_decal/siding/dark_red, -/turf/open/floor/iron/dark, -/area/station/security/medical) -"piH" = ( -/obj/machinery/light/directional/east, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "piL" = ( /turf/closed/wall, /area/station/hallway/secondary/exit) -"piO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/closet_maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) "piQ" = ( /obj/structure/chair/office, /turf/open/floor/iron/dark, @@ -77894,6 +78212,16 @@ dir = 4 }, /area/station/maintenance/xenobio_disposals) +"pjj" = ( +/obj/structure/chair/sofa/corp/right, +/obj/item/toy/katana{ + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/sign/poster/contraband/busty_backdoor_xeno_babes_6/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/small, +/area/station/security/bitden) "pjl" = ( /obj/structure/chair/pew/right{ dir = 4 @@ -78110,17 +78438,6 @@ /obj/structure/cable, /turf/open/floor/wood, /area/station/common/wrestling/lobby) -"plQ" = ( -/obj/machinery/firealarm/directional/north{ - pixel_x = -22 - }, -/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/side{ - dir = 9 - }, -/area/station/security/execution/transfer) "plR" = ( /obj/structure/railing{ dir = 4 @@ -78428,10 +78745,6 @@ /obj/machinery/light/small/directional/east, /turf/open/floor/plating, /area/station/maintenance/department/science/lower) -"poM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall, -/area/station/security/prison) "poY" = ( /obj/effect/turf_decal/siding/wood, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -78460,13 +78773,13 @@ /obj/machinery/light/small/directional/south, /turf/open/openspace, /area/station/maintenance/port/upper) -"pps" = ( -/obj/item/kirbyplants/random, -/obj/structure/window/reinforced/spawner/directional/east, -/obj/structure/cable, -/turf/open/floor/iron/dark/side{ - dir = 4 +"ppu" = ( +/obj/structure/railing{ + dir = 8 }, +/obj/machinery/light/directional/north, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron, /area/station/security/prison/upper) "ppC" = ( /obj/structure/cable, @@ -78703,20 +79016,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/openspace, /area/station/maintenance/aft/upper) -"psC" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating_new/dark{ - dir = 10 - }, -/turf/open/floor/iron/dark/side{ - dir = 10 - }, -/area/station/security/execution/transfer) "psD" = ( /obj/machinery/light/directional/north, /turf/open/floor/iron/dark, @@ -78860,11 +79159,6 @@ /obj/effect/turf_decal/tile/brown, /turf/open/floor/iron/dark, /area/station/command/bridge) -"pub" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/prison/upper) "puc" = ( /obj/structure/window/spawner/directional/west, /obj/structure/flora/bush/fullgrass, @@ -78910,6 +79204,14 @@ /obj/machinery/duct, /turf/open/floor/iron/white, /area/station/medical/break_room) +"puP" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 1 + }, +/obj/machinery/duct, +/turf/open/floor/iron/white/corner, +/area/station/security/medical) "puT" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, @@ -79084,6 +79386,22 @@ }, /turf/open/floor/iron/dark/side, /area/station/security/checkpoint/escape) +"pwd" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/spawner/random/trash/mopbucket, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/security/prison) +"pwf" = ( +/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/dark/small, +/area/station/security/prison) "pwj" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/delivery/white, @@ -79391,11 +79709,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/central) -"pyk" = ( -/obj/structure/cable, -/obj/machinery/duct, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) "pyp" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -79558,6 +79871,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/smooth, /area/station/cargo/power_station/upper) +"pzV" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/security/prison) "pAm" = ( /obj/structure/curtain/bounty, /obj/effect/turf_decal/siding/wood{ @@ -79623,6 +79942,7 @@ dir = 10 }, /obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/atm/directional/south, /turf/open/floor/iron/white, /area/station/science) "pAO" = ( @@ -79660,14 +79980,12 @@ /obj/effect/landmark/navigate_destination, /turf/open/floor/wood, /area/station/common/arcade) -"pBb" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/prison/upper) +"pBl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/trash/can, +/turf/open/floor/iron/smooth, +/area/station/security/bitden) "pBo" = ( /turf/closed/wall, /area/station/commons/fitness) @@ -79683,6 +80001,16 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron, /area/station/hallway/primary/central/aft) +"pBy" = ( +/obj/effect/turf_decal/stripes/full, +/obj/effect/turf_decal/stripes/white/full, +/obj/machinery/door/poddoor/shutters{ + id = "securitydock2"; + name = "Security Dock 2" + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "pBD" = ( /obj/structure/table, /obj/item/clothing/gloves/botanic_leather, @@ -79859,14 +80187,6 @@ dir = 10 }, /area/station/hallway/secondary/exit) -"pDW" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/curtain/bounty/start_closed, -/turf/open/floor/iron/dark/herringbone, -/area/station/security/bitden) "pEc" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -79947,6 +80267,10 @@ /obj/effect/turf_decal/box, /turf/open/floor/iron/textured, /area/station/engineering/atmos/test_chambers) +"pFc" = ( +/obj/effect/spawner/random/trash/moisture_trap, +/turf/open/floor/plating, +/area/station/security/prison) "pFg" = ( /turf/closed/wall/r_wall, /area/station/hallway/secondary/exit) @@ -80490,6 +80814,15 @@ /obj/machinery/telecomms/processor/preset_four, /turf/open/floor/iron/telecomms, /area/station/tcommsat/server) +"pKo" = ( +/obj/effect/turf_decal/stripes/full, +/obj/effect/turf_decal/stripes/white/full, +/obj/machinery/door/poddoor/shutters{ + id = "securitydock2"; + name = "Security Dock 2" + }, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "pKp" = ( /obj/machinery/ai_slipper{ uses = 10 @@ -80503,6 +80836,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/fore/upper) +"pKs" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/security/prison) "pKx" = ( /obj/machinery/atmospherics/pipe/smart/simple/orange/hidden, /obj/structure/cable, @@ -80542,6 +80884,15 @@ /obj/machinery/power/energy_accumulator/grounding_rod/anchored, /turf/open/floor/engine, /area/station/engineering/supermatter) +"pKI" = ( +/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{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/security/prison/upper) "pKM" = ( /obj/machinery/atmospherics/pipe/smart/simple/supply/hidden{ dir = 5 @@ -80567,20 +80918,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/command/gateway) -"pKX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/security{ - name = "Shuttle Bay" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/turf/open/floor/iron/dark/side, -/area/station/security/prison/upper) "pKZ" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 @@ -80789,6 +81126,11 @@ }, /turf/open/floor/plating, /area/station/cargo/storage) +"pME" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) "pMI" = ( /obj/machinery/door/airlock/public/glass{ name = "N-O2 Stop Shop" @@ -80878,6 +81220,12 @@ }, /turf/open/space/basic, /area/space/nearstation) +"pNz" = ( +/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/station/security/prison/upper) "pNA" = ( /obj/structure/grille, /obj/structure/window/reinforced/spawner/directional/south, @@ -81041,15 +81389,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood/parquet, /area/station/command/gateway) -"pPF" = ( -/obj/item/radio/intercom/directional/north, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/camera/autoname/directional/north, -/turf/open/floor/iron, -/area/station/security/prison/upper) "pPJ" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood/innards, @@ -81075,12 +81414,6 @@ /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/library/lower) -"pQr" = ( -/obj/structure/cable, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/security/execution/transfer) "pQs" = ( /obj/structure/table/wood, /obj/item/storage/briefcase/secure{ @@ -81194,25 +81527,6 @@ /obj/structure/railing, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/hos) -"pRF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/spawner/random/structure/steam_vent, -/obj/machinery/duct, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"pRI" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 4 - }, -/turf/open/floor/iron/dark/side{ - dir = 10 - }, -/area/station/security/prison) "pRM" = ( /obj/effect/turf_decal/stripes, /obj/structure/disposalpipe/segment, @@ -81258,10 +81572,6 @@ }, /turf/open/floor/wood, /area/station/service/chapel/funeral) -"pSi" = ( -/obj/structure/table/reinforced, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "pSk" = ( /obj/effect/turf_decal/bot, /obj/item/beacon, @@ -81299,27 +81609,6 @@ dir = 4 }, /area/station/security/checkpoint/escape) -"pSF" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating_new/dark{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/security/execution/transfer) "pSH" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/power/port_gen/pacman/pre_loaded, @@ -81352,6 +81641,12 @@ /obj/machinery/holopad/secure, /turf/open/floor/iron, /area/station/security/warden) +"pTb" = ( +/obj/structure/table, +/obj/item/folder/red, +/obj/item/pen, +/turf/open/floor/iron, +/area/station/security/prison/upper) "pTj" = ( /obj/structure/table, /obj/machinery/chem_dispenser/drinks/beer{ @@ -81447,9 +81742,6 @@ dir = 8 }, /area/station/command/secure_bunker) -"pUq" = ( -/turf/open/floor/iron/dark/side, -/area/station/security/execution/transfer) "pUr" = ( /obj/effect/turf_decal/siding/thinplating/dark, /obj/effect/decal/cleanable/dirt, @@ -81568,15 +81860,6 @@ /obj/effect/mapping_helpers/airlock/unres, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"pVI" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/dark/side{ - dir = 10 - }, -/area/station/security/execution/transfer) "pVL" = ( /obj/machinery/modular_computer/preset/id{ dir = 1 @@ -81657,19 +81940,6 @@ /obj/effect/turf_decal/tile/bar/opposingcorners, /turf/open/floor/iron, /area/station/service/bar) -"pWk" = ( -/obj/effect/turf_decal/delivery/red, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/window/preopen{ - id = "prisonlockdown3"; - name = "Lockdown" - }, -/obj/structure/cable, -/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/dark, -/area/station/security/prison) "pWl" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -81713,17 +81983,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible, /turf/open/space/basic, /area/space/nearstation) -"pWt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/line, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/security/prison) "pWv" = ( /obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral{ @@ -81767,11 +82026,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"pWG" = ( -/turf/open/floor/iron/stairs{ - dir = 1 - }, -/area/station/security/prison) "pWK" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/stripes/line{ @@ -81786,28 +82040,10 @@ }, /turf/open/floor/engine/n2, /area/station/engineering/atmos) -"pWT" = ( -/obj/machinery/camera/directional/north{ - c_tag = " Prison - Middle"; - dir = 2; - network = list("ss13","prison") - }, -/turf/open/floor/iron/stairs/left{ - dir = 4 - }, -/area/station/security/prison) "pWU" = ( /obj/machinery/status_display/supply, /turf/closed/wall, /area/station/cargo/storage) -"pWV" = ( -/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/stairs/medium{ - dir = 8 - }, -/area/station/security/prison) "pWY" = ( /obj/machinery/door/firedoor, /obj/structure/cable, @@ -81831,6 +82067,12 @@ /obj/machinery/light_switch/directional/east, /turf/open/floor/grass, /area/station/security/prison/garden) +"pXf" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/security/prison/upper) "pXg" = ( /obj/effect/spawner/random/structure/crate, /turf/open/floor/iron/dark/small, @@ -81844,18 +82086,6 @@ /obj/item/reagent_containers/cup/bowl/soup/hotchili, /turf/open/misc/asteroid/airless, /area/space/nearstation) -"pXp" = ( -/obj/structure/bed/maint, -/obj/item/bedsheet/grey{ - dir = 1 - }, -/obj/structure/sink/kitchen/directional/south{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "old sink" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/station/security/prison) "pXu" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 4 @@ -82008,13 +82238,6 @@ }, /turf/open/floor/iron, /area/station/cargo/office) -"pYt" = ( -/obj/structure/cable, -/obj/item/screwdriver, -/obj/machinery/light/directional/south, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "pYF" = ( /obj/effect/turf_decal/delivery, /obj/machinery/power/port_gen/pacman/pre_loaded, @@ -82034,6 +82257,11 @@ /obj/machinery/light/directional/east, /turf/open/floor/stone, /area/station/common/wrestling/arena) +"pYU" = ( +/obj/structure/decorative/shelf/crates1, +/obj/machinery/light/directional/south, +/turf/open/floor/iron, +/area/station/security/prison/upper) "pYX" = ( /turf/closed/wall, /area/station/maintenance/eva_shed/starboard) @@ -82239,13 +82467,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, /area/station/service/electronic_marketing_den) -"qby" = ( -/obj/item/radio/intercom/directional/east, -/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/station/security/prison/upper) "qbD" = ( /obj/structure/cable, /obj/machinery/airalarm/directional/east, @@ -82418,36 +82639,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/station/security/detectives_office/private_investigators_office) -"qdm" = ( -/obj/machinery/button/flasher{ - id = "transferflash"; - pixel_y = -36 - }, -/obj/machinery/button/door{ - id = "permaouter"; - name = "Outer Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 6; - pixel_y = -25; - req_access = list("brig"); - specialfunctions = 4 - }, -/obj/machinery/button/door{ - id = "permainner"; - name = "Inner Bolt Control"; - normaldoorcontrol = 1; - pixel_x = -6; - pixel_y = -25; - req_access = list("brig"); - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron/dark/side{ - dir = 6 - }, -/area/station/security/execution/transfer) "qdq" = ( /obj/effect/turf_decal/trimline/blue/filled/line, /obj/structure/disposalpipe/segment{ @@ -82466,6 +82657,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, /area/station/service/bar/atrium) +"qds" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/iron, +/area/station/security/prison/upper) "qdC" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -82493,11 +82688,6 @@ /obj/machinery/atmospherics/pipe/layer_manifold/yellow/visible, /turf/closed/wall/r_wall, /area/station/engineering/atmos) -"qdQ" = ( -/obj/machinery/light/floor/has_bulb, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "qdV" = ( /obj/machinery/atmospherics/pipe/smart/simple/general/visible{ dir = 6 @@ -82722,6 +82912,13 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/security/prison/workout) +"qgF" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 9 + }, +/obj/structure/railing, +/turf/closed/wall, +/area/station/security/bitden) "qgJ" = ( /obj/machinery/button/door/directional/south{ name = "Security Mech Garage Door Controls"; @@ -82775,16 +82972,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/department/medical) -"qgZ" = ( -/obj/structure/cable, -/obj/machinery/light/directional/east, -/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/dark/side{ - dir = 4 - }, -/area/station/security/prison) "qhe" = ( /obj/machinery/atmospherics/pipe/layer_manifold/supply/visible, /turf/closed/wall/r_wall, @@ -82952,12 +83139,6 @@ /obj/machinery/duct, /turf/open/floor/iron, /area/station/science/research) -"qiF" = ( -/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/mechbay) "qiR" = ( /obj/effect/turf_decal/stripes/red/line{ dir = 4 @@ -83136,10 +83317,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/hallway/primary/port) -"qkw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/security/prison) "qkx" = ( /obj/machinery/power/shuttle_engine/heater{ dir = 8 @@ -83182,15 +83359,6 @@ /obj/machinery/nanite_programmer, /turf/open/floor/iron/dark/small, /area/station/science/circuits) -"qkI" = ( -/obj/machinery/door/airlock/research{ - name = "Cytology Lab" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/obj/structure/liquid_barrier, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) "qkR" = ( /obj/machinery/portable_atmospherics/scrubber, /obj/effect/turf_decal/delivery, @@ -83229,15 +83397,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/department/medical) -"qlC" = ( -/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/red{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/prison/upper) "qlH" = ( /obj/effect/turf_decal/stripes{ dir = 4 @@ -83336,6 +83495,13 @@ }, /turf/open/floor/iron/dark/side, /area/station/security/brig) +"qmO" = ( +/obj/structure/closet/secure_closet/brig/genpop, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) "qmP" = ( /obj/machinery/atmospherics/pipe/smart/simple/cyan/hidden{ dir = 4 @@ -83530,14 +83696,6 @@ /obj/machinery/light/directional/south, /turf/open/floor/circuit, /area/station/command/gateway) -"qoJ" = ( -/obj/structure/rack, -/obj/item/clothing/gloves/color/fyellow/old, -/obj/item/clothing/under/color/grey, -/obj/item/clothing/shoes/sneakers/black, -/obj/item/clothing/mask/gas, -/turf/open/floor/plating, -/area/station/security/prison) "qoL" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -83688,14 +83846,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/maintenance/starboard/fore) -"qpU" = ( -/obj/structure/closet/secure_closet/brig/genpop, -/obj/effect/turf_decal/bot, -/obj/structure/window/reinforced/spawner/directional/east, -/obj/machinery/light/directional/north, -/obj/machinery/camera/directional/north, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) "qpZ" = ( /obj/machinery/door/airlock/security{ name = "Armory" @@ -83725,6 +83875,11 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/central/fore) +"qqg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/security/prison/upper) "qqo" = ( /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/west, @@ -83812,15 +83967,6 @@ }, /turf/open/floor/plating/airless, /area/station/security/prison/mess) -"qrh" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "Labor Camp Shuttle Airlock" - }, -/turf/open/floor/iron, -/area/station/security/prison/upper) "qrm" = ( /obj/structure/grille, /turf/open/floor/plating, @@ -84092,23 +84238,6 @@ }, /turf/open/floor/iron/smooth_edge, /area/station/command/secure_bunker) -"qtl" = ( -/obj/machinery/door/airlock/research{ - name = "Xenobiology Controll Room" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/shutters/window/preopen{ - id = "XenoOffice"; - name = "Xenobiology Controll Room Shutters" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/obj/structure/liquid_barrier, -/turf/open/floor/iron/white, -/area/station/science/xenobiology/control) "qtm" = ( /obj/structure/window/spawner/directional/west, /obj/effect/turf_decal/bot, @@ -84139,6 +84268,14 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/plating, /area/station/maintenance/central) +"qtz" = ( +/obj/structure/rack, +/obj/item/clothing/gloves/color/fyellow/old, +/obj/item/clothing/under/color/grey, +/obj/item/clothing/shoes/sneakers/black, +/obj/item/clothing/mask/gas, +/turf/open/floor/plating, +/area/station/security/prison) "qtE" = ( /turf/closed/wall/r_wall/rust, /area/station/maintenance/starboard/fore) @@ -84225,6 +84362,18 @@ /obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/wood, /area/station/security/courtroom) +"quq" = ( +/obj/machinery/camera/directional/north{ + c_tag = " Prison - East"; + dir = 2; + network = list("ss13","prison") + }, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/side, +/area/station/security/prison) "qur" = ( /obj/structure/grille, /obj/structure/window/spawner/directional/west, @@ -84426,13 +84575,6 @@ "qvX" = ( /turf/closed/wall/r_wall, /area/station/science/server) -"qwc" = ( -/obj/structure/window/reinforced/spawner/directional/east, -/obj/effect/turf_decal/stripes/white/line{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) "qwf" = ( /turf/open/floor/iron/stairs/medium{ dir = 4 @@ -84560,12 +84702,6 @@ /obj/effect/landmark/start/shaft_miner, /turf/open/floor/iron, /area/station/cargo/miningoffice) -"qxT" = ( -/obj/effect/turf_decal/box/white/corners{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "qxV" = ( /obj/structure/grille, /obj/structure/window/spawner/directional/south, @@ -84756,6 +84892,16 @@ /obj/structure/cable, /turf/open/floor/wood, /area/station/service/barber) +"qzw" = ( +/obj/machinery/door/airlock/security/old{ + name = "Cryopods" + }, +/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, +/turf/open/floor/iron/white, +/area/station/security/prison) "qzx" = ( /obj/machinery/modular_computer/preset/command, /obj/structure/plaque/static_plaque/golden{ @@ -84829,6 +84975,22 @@ /obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/wood, /area/station/service/lawoffice) +"qzZ" = ( +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/neutral/mid_joiner{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/siding/dark_red, +/obj/machinery/duct, +/obj/structure/cable, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/security/medical) "qAa" = ( /obj/effect/turf_decal/tile/yellow/half/contrasted{ dir = 4 @@ -84931,14 +85093,6 @@ /obj/machinery/duct, /turf/open/floor/iron, /area/station/service/hydroponics) -"qBh" = ( -/obj/structure/cable, -/obj/machinery/newscaster/directional/north, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/prison/upper) "qBm" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/wood/parquet, @@ -84983,6 +85137,17 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/station/maintenance/department/security/greater) +"qBI" = ( +/obj/machinery/door/airlock/security/old{ + name = "Janitorial" + }, +/obj/effect/turf_decal/delivery/red, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/prison) "qBK" = ( /obj/item/kirbyplants/random, /obj/machinery/newscaster/directional/north, @@ -85005,27 +85170,20 @@ "qBT" = ( /turf/open/floor/iron/dark, /area/station/security/prison/workout) -"qBX" = ( -/obj/machinery/door/airlock/research{ - autoclose = 0; - frequency = 1449; - id_tag = "xeno_airlock_exterior"; - name = "Xenobiology Lab External Airlock" - }, -/obj/machinery/door_buttons/access_button{ - idDoor = "xeno_airlock_exterior"; - idSelf = "xeno_airlock_control"; - name = "Access Button"; - pixel_x = 25; - req_access = list("xenobiology") +"qBU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/firedoor, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/obj/structure/liquid_barrier, -/turf/open/floor/iron, -/area/station/science/xenobiology/hallway) +/turf/open/floor/iron/dark/small, +/area/station/security/prison) +"qBV" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 4; + pixel_x = -5 + }, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "qCg" = ( /obj/effect/turf_decal/siding/wood{ dir = 9 @@ -85083,18 +85241,6 @@ /obj/item/toy/talking/codex_gigas, /turf/open/floor/cult, /area/station/maintenance/cult_chapel_maint) -"qCI" = ( -/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/warning{ - color = "#DE3A3A" - }, -/obj/effect/turf_decal/trimline/red/line{ - dir = 1 - }, -/turf/open/floor/iron/dark/side, -/area/station/security/prison) "qCJ" = ( /obj/structure/chair/sofa/bench/right{ dir = 8; @@ -85319,6 +85465,10 @@ /obj/machinery/firealarm/directional/west, /turf/open/floor/wood, /area/station/command/meeting_room/council) +"qEl" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "qEn" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/caution/stand_clear{ @@ -85501,6 +85651,15 @@ dir = 1 }, /area/station/cargo/miningdock) +"qFY" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/prison) "qGc" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/structure/window/reinforced/spawner/directional/east, @@ -85546,11 +85705,6 @@ }, /turf/open/floor/iron/white, /area/station/science) -"qGA" = ( -/obj/structure/sign/departments/xenobio/directional/north, -/obj/structure/liquid_barrier, -/turf/open/floor/plating, -/area/station/maintenance/aft/upper) "qGC" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/duct, @@ -85596,22 +85750,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/hallway/primary/central) -"qGZ" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/rack, -/obj/machinery/button/crematorium{ - id = "crematoriumSec"; - pixel_y = 26; - req_access = list("crematorium") - }, -/obj/item/book/bible, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) "qHg" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 @@ -85682,13 +85820,6 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron/white/side, /area/station/science/xenobiology) -"qHK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/security/execution/transfer) "qHM" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/stripes/corner{ @@ -85831,21 +85962,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/hallway/secondary/service) -"qIZ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "qJb" = ( /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/stripes{ @@ -86008,13 +86124,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/cargo/sorting) -"qKH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/can, -/turf/open/floor/iron/smooth_edge{ - dir = 4 - }, -/area/station/security/bitden) "qKN" = ( /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, @@ -86104,13 +86213,6 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/security/detectives_office/private_investigators_office) -"qMm" = ( -/obj/structure/table, -/obj/structure/bedsheetbin, -/turf/open/floor/iron/kitchen{ - dir = 1 - }, -/area/station/security/prison) "qMs" = ( /obj/effect/turf_decal/weather/sand{ dir = 1 @@ -86234,10 +86336,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/circuit, /area/station/ai_monitored/turret_protected/ai) -"qNF" = ( -/obj/machinery/light/directional/south, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) "qNG" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, @@ -86249,6 +86347,9 @@ /obj/structure/curtain, /turf/open/floor/iron/white, /area/station/medical/patients_rooms) +"qNZ" = ( +/turf/closed/wall, +/area/station/security/bitden) "qOc" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -86349,6 +86450,11 @@ /obj/machinery/duct, /turf/open/floor/iron, /area/station/service/hydroponics) +"qPi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison/upper) "qPn" = ( /obj/item/book/codex_gigas, /obj/effect/turf_decal/tile/neutral{ @@ -86381,6 +86487,17 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/wood, /area/station/commons/dorms/vacantroom) +"qPw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Prison Side Wing" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) "qPz" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -86388,6 +86505,16 @@ /obj/structure/sign/poster/random/directional/north, /turf/open/floor/iron, /area/station/commons/dorms) +"qPB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/table/reinforced/rglass, +/obj/machinery/computer/records/medical/laptop{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/security/medical) "qPC" = ( /obj/item/rack_parts, /obj/effect/decal/cleanable/dirt, @@ -86406,6 +86533,17 @@ /obj/item/flashlight/flare/candle/infinite, /turf/open/floor/material/meat, /area/station/maintenance/department/science/xenobiology) +"qPL" = ( +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Maintenance" + }, +/obj/machinery/atmospherics/components/binary/pump/layer4{ + name = "Airmix Reserve to Distribution" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/security/prison) "qPM" = ( /obj/item/cigbutt, /turf/open/floor/plating, @@ -86449,6 +86587,14 @@ /obj/effect/spawner/random/maintenance/four, /turf/open/floor/plating, /area/station/maintenance/department/science/central) +"qQm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison) "qQn" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -86467,6 +86613,15 @@ dir = 8 }, /area/station/hallway/primary/port) +"qQx" = ( +/obj/item/radio/intercom/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron, +/area/station/security/prison/upper) "qQA" = ( /obj/machinery/door_buttons/airlock_controller{ idExterior = "virology_airlock_exterior"; @@ -86593,13 +86748,6 @@ /obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/station/maintenance/port/upper) -"qRV" = ( -/obj/structure/closet/secure_closet/brig/genpop, -/obj/effect/turf_decal/bot, -/obj/structure/window/reinforced/spawner/directional/west, -/obj/structure/window/reinforced/spawner/directional/south, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) "qSc" = ( /obj/item/kirbyplants/random, /obj/effect/turf_decal/trimline/purple/filled/line{ @@ -86635,6 +86783,13 @@ dir = 5 }, /area/station/commons/vacant_room/commissary) +"qSr" = ( +/obj/structure/chair/office, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "qSs" = ( /obj/structure/chair/stool/bar/directional{ dir = 1 @@ -86839,13 +86994,6 @@ }, /turf/open/floor/plating, /area/station/security/prison/safe) -"qUg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/security/execution/transfer) "qUm" = ( /obj/structure/table/reinforced, /obj/machinery/computer/security/telescreen/interrogation{ @@ -87287,6 +87435,18 @@ /obj/structure/extinguisher_cabinet/directional/west, /turf/open/floor/iron/cafeteria, /area/station/service/kitchen) +"qYn" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + color = "#DE3A3A"; + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison) "qYp" = ( /obj/effect/turf_decal/trimline/blue/filled/corner{ dir = 8 @@ -87394,6 +87554,11 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/entry) +"qZk" = ( +/obj/structure/railing, +/obj/effect/spawner/random/trash/graffiti, +/turf/closed/wall/rust, +/area/station/security/bitden) "qZs" = ( /obj/effect/turf_decal/stripes{ dir = 10 @@ -87478,12 +87643,10 @@ dir = 8 }, /area/station/security/brig) -"qZR" = ( -/obj/structure/table/glass, -/obj/item/folder/white, -/obj/item/stamp/rd, -/turf/open/floor/iron, -/area/station/command/heads_quarters/rd) +"qZW" = ( +/obj/machinery/gulag_teleporter, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "rah" = ( /obj/structure/flora/bush/lavendergrass, /obj/effect/turf_decal/siding/thinplating/light{ @@ -87540,20 +87703,6 @@ dir = 8 }, /area/station/hallway/primary/central) -"raG" = ( -/obj/machinery/washing_machine, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/kitchen{ - dir = 1 - }, -/area/station/security/prison) -"raI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/maintenance_hatch, -/obj/structure/cable, -/turf/open/floor/iron/smooth, -/area/station/security/bitden) "raJ" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -87654,19 +87803,6 @@ /obj/effect/spawner/random/maintenance, /turf/open/floor/plating/airless, /area/station/maintenance/fore/upper) -"rbJ" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/obj/item/stack/medical/mesh{ - pixel_x = -6 - }, -/obj/item/healthanalyzer/simple{ - pixel_y = 8 - }, -/turf/open/floor/iron/white, -/area/station/security/execution/transfer) "rbL" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, @@ -87723,6 +87859,11 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark, /area/station/cargo/miningoffice) +"rcA" = ( +/obj/structure/table, +/obj/item/fuel_pellet, +/turf/open/floor/iron, +/area/station/security/prison/upper) "rcB" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Engineering Maintenance" @@ -87794,20 +87935,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/department/security/prison_upper) -"rdj" = ( -/obj/structure/window/reinforced/spawner/directional/south, -/obj/structure/window/reinforced/spawner/directional/east, -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 3 - }, -/obj/item/borg/sight/hud/sec{ - pixel_y = 17 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "rdo" = ( /obj/machinery/firealarm/directional/east, /obj/machinery/light/directional/east, @@ -87839,12 +87966,6 @@ }, /turf/open/floor/plating, /area/station/cargo/miningdock) -"rdz" = ( -/obj/structure/table, -/obj/item/folder/red, -/obj/item/pen, -/turf/open/floor/iron, -/area/station/security/prison/upper) "rdB" = ( /obj/structure/closet/secure_closet/personal, /obj/effect/turf_decal/siding/wood{ @@ -88013,10 +88134,6 @@ }, /turf/open/floor/carpet, /area/station/commons/dorms/vacantroom) -"reQ" = ( -/obj/item/clothing/head/utility/hardhat, -/turf/open/floor/plating, -/area/station/security/prison/upper) "reW" = ( /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, @@ -88051,12 +88168,6 @@ /obj/structure/girder, /turf/open/floor/plating, /area/station/maintenance/aft/upper) -"rfs" = ( -/obj/effect/turf_decal/box/white/corners{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "rfv" = ( /obj/effect/turf_decal/bot_white, /obj/effect/turf_decal/tile/neutral{ @@ -88100,14 +88211,6 @@ }, /turf/open/floor/plating, /area/station/common/tailoring) -"rfQ" = ( -/obj/machinery/airalarm/directional/east, -/obj/machinery/light/small/directional/east, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/security/prison) "rfX" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/bed{ @@ -88214,6 +88317,12 @@ /obj/structure/window/reinforced/spawner/directional/west, /turf/open/floor/plating, /area/station/maintenance/department/engineering/engine_aft_port) +"rhd" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/security/execution/transfer) "rhi" = ( /obj/machinery/atmospherics/pipe/smart/simple/green/visible, /obj/machinery/atmospherics/pipe/smart/simple/brown/visible/layer2, @@ -88237,14 +88346,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/service/hydroponics) -"rhp" = ( -/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/dark/side{ - dir = 8 - }, -/area/station/security/execution/transfer) "rhs" = ( /obj/structure/chair/office/light, /obj/effect/turf_decal/stripes/white/corner{ @@ -88273,6 +88374,20 @@ /obj/effect/turf_decal/box/white, /turf/open/floor/iron/dark, /area/station/medical/morgue) +"rhP" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/table, +/obj/item/folder/red, +/obj/item/stamp/denied{ + pixel_y = 5 + }, +/obj/item/stamp, +/obj/item/reagent_containers/spray/pepper{ + pixel_x = 14 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "rhV" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/siding/thinplating_new/dark, @@ -88387,6 +88502,10 @@ /obj/machinery/light/small/directional/east, /turf/open/floor/iron/dark, /area/station/medical/medbay/central) +"riE" = ( +/obj/structure/closet/crate, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "riS" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -88491,18 +88610,6 @@ /obj/machinery/duct, /turf/open/floor/iron, /area/station/commons/dorms) -"rjM" = ( -/obj/machinery/door/airlock/research{ - name = "Cytology Lab" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/obj/structure/liquid_barrier, -/turf/open/floor/iron/white, -/area/station/science/cytology) "rjO" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -88561,9 +88668,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/maintenance/department/medical/central) -"rkk" = ( -/turf/closed/wall/r_wall, -/area/station/security/prison/upper) "rko" = ( /obj/effect/spawner/liquids_spawner{ reagent_list = list(/datum/reagent/water=600) @@ -88715,19 +88819,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood, /area/station/service/chapel) -"rlG" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Prison Sanitarium" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) "rlI" = ( /mob/living/basic/chicken/brown{ forced_gender = "female" @@ -88770,15 +88861,6 @@ /obj/structure/chair/sofa/middle/brown, /turf/open/floor/wood, /area/station/service/bar/atrium) -"rme" = ( -/obj/effect/turf_decal/delivery/white, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/obj/machinery/door/airlock/security/glass{ - name = "Flight Control" - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "rmf" = ( /obj/structure/curtain/cloth, /turf/open/floor/iron/freezer, @@ -88801,6 +88883,18 @@ /obj/effect/landmark/start/hangover/closet, /turf/open/floor/iron/dark, /area/station/hallway/primary/upper) +"rmo" = ( +/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/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/prison) "rmp" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical{ @@ -88813,17 +88907,6 @@ /obj/effect/turf_decal/tile/blue/fourcorners, /turf/open/floor/iron/white, /area/station/medical/treatment_center) -"rmr" = ( -/obj/effect/turf_decal/trimline/red/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/security/prison) "rmz" = ( /obj/machinery/camera/directional/east{ c_tag = "Leisure Area - Lasertag Red Fore"; @@ -88867,10 +88950,6 @@ /obj/machinery/duct, /turf/open/floor/iron/white, /area/station/science/cytology) -"rnl" = ( -/obj/machinery/gulag_teleporter, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "rno" = ( /turf/closed/wall, /area/station/science/ordnance/testlab) @@ -88948,6 +89027,21 @@ }, /turf/open/floor/carpet, /area/station/service/theater) +"roj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/red/corner, +/obj/effect/turf_decal/trimline/red/filled/line{ + color = "#DE3A3A"; + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/security/prison) "roA" = ( /obj/structure/flora/tree/jungle/small{ pixel_x = -30 @@ -89148,6 +89242,16 @@ /obj/item/radio/intercom/directional/south, /turf/open/floor/eighties/red, /area/station/common/arcade) +"rqd" = ( +/obj/effect/turf_decal/delivery/white{ + color = "#00ff00"; + name = "green" + }, +/obj/machinery/cryopod{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/prison) "rqj" = ( /obj/structure/flora/bush/jungle/a/style_3, /turf/open/floor/grass, @@ -89166,10 +89270,6 @@ dir = 8 }, /area/station/security/checkpoint/escape) -"rqq" = ( -/obj/structure/trash_pile, -/turf/open/floor/plating, -/area/station/security/prison) "rqt" = ( /obj/structure/chair{ dir = 8 @@ -89296,6 +89396,10 @@ }, /turf/open/floor/iron/white, /area/station/medical/chemistry) +"rrL" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/plating, +/area/station/security/prison/upper) "rrO" = ( /turf/closed/wall/rust, /area/station/maintenance/abandon_holding_cell) @@ -89305,6 +89409,11 @@ }, /turf/open/floor/iron/white, /area/station/medical/chemistry) +"rrW" = ( +/obj/structure/door_assembly/door_assembly_sec, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "rsc" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 8 @@ -89373,18 +89482,6 @@ }, /turf/open/floor/iron/dark, /area/station/security/brig) -"rsK" = ( -/obj/machinery/door/poddoor/preopen{ - id = "XenoOffice"; - name = "Xenobiology Lockdown Blast Doors" - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Toxins Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/obj/structure/liquid_barrier, -/turf/open/floor/plating, -/area/station/maintenance/department/science/xenobiology) "rsO" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -89497,13 +89594,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/department/science/central) -"rtH" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/turf_decal/trimline/red/line{ - dir = 1 - }, -/turf/open/floor/iron/dark/side, -/area/station/security/prison) "rtK" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/stripes/corner{ @@ -89567,6 +89657,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/engineering/main) +"ruf" = ( +/obj/machinery/computer/shuttle/labor{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "rum" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -89861,28 +89957,6 @@ dir = 8 }, /area/station/common/locker_room_shower) -"rwX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/security/execution/transfer) -"rwY" = ( -/obj/effect/turf_decal/trimline/red/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/obj/effect/turf_decal/siding/thinplating_new/dark{ - dir = 6 - }, -/turf/open/floor/iron/dark/side{ - dir = 6 - }, -/area/station/security/execution/transfer) "rwZ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -90047,6 +90121,7 @@ dir = 1 }, /obj/effect/landmark/start/medical_doctor, +/obj/machinery/station_map/engineering/directional/west, /turf/open/floor/iron/white, /area/station/medical/break_room) "ryu" = ( @@ -90200,18 +90275,6 @@ }, /turf/open/floor/iron/dark/corner, /area/station/hallway/primary/port) -"rAQ" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 6 - }, -/obj/machinery/quantum_server, -/obj/machinery/light/small/blacklight/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/item/pizzabox/meat{ - pixel_y = 14 - }, -/turf/open/floor/iron/dark/small, -/area/station/security/bitden) "rAY" = ( /obj/machinery/modular_computer/preset/cargochat/medical, /obj/effect/turf_decal/trimline/brown/filled/line{ @@ -90319,6 +90382,14 @@ }, /turf/open/floor/iron, /area/station/cargo/miningoffice) +"rBY" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/duct, +/turf/open/floor/iron/dark/small, +/area/station/security/prison) "rBZ" = ( /obj/structure/stairs/north, /obj/structure/sign/directions/command{ @@ -90531,6 +90602,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/maintenance/starboard/fore) +"rDC" = ( +/obj/effect/turf_decal/delivery/red, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "prisonlockdown3"; + name = "Lockdown" + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark, +/area/station/security/prison) "rDJ" = ( /obj/structure/chair/sofa/corp/left, /obj/item/toy/plush/space_lizard_plushie{ @@ -90691,11 +90772,24 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/white, /area/station/science) +"rEF" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/machinery/station_map/engineering/directional/south, +/turf/open/floor/iron/white, +/area/station/medical/virology/isolation) "rEH" = ( /obj/structure/curtain/bounty, /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/service/electronic_marketing_den) +"rEN" = ( +/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/side{ + dir = 1 + }, +/area/station/security/execution/transfer) "rER" = ( /obj/structure/grille, /obj/structure/window/reinforced/spawner/directional/south, @@ -90718,20 +90812,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/engine, /area/station/science/tele_sci) -"rFh" = ( -/obj/structure/cable, -/obj/machinery/camera/directional/north{ - c_tag = " Prison - Upper"; - network = list("ss13","prison") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/newscaster/directional/north, -/obj/machinery/duct, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/security/prison) "rFk" = ( /obj/machinery/atmospherics/components/binary/pump{ name = "Plasma to Pure" @@ -90741,13 +90821,6 @@ }, /turf/open/floor/plating/airless, /area/station/engineering/atmos/upper) -"rFr" = ( -/obj/effect/turf_decal/trimline/red/line{ - dir = 9 - }, -/obj/effect/turf_decal/trimline/red/filled/corner, -/turf/open/floor/iron/dark/corner, -/area/station/security/prison) "rFv" = ( /obj/structure/chair/comfy/brown{ dir = 4 @@ -90865,21 +90938,21 @@ dir = 8 }, /area/station/hallway/secondary/entry) -"rGh" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 +"rGg" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 5 }, -/obj/effect/turf_decal/tile/neutral{ +/obj/machinery/computer/quantum_console{ dir = 4 }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 +/obj/structure/sign/poster/contraband/random/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_containers/cup/soda_cans/pwr_game{ + pixel_x = -5; + pixel_y = 12 }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/bot, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) +/turf/open/floor/iron/dark/small, +/area/station/security/bitden) "rGl" = ( /obj/machinery/door/airlock/research{ name = "Ordnance Launch Site" @@ -90972,6 +91045,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood/parquet, /area/station/security/detectives_office) +"rGY" = ( +/obj/structure/closet/secure_closet/brig/genpop, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) "rGZ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, @@ -91112,9 +91191,6 @@ name = "Padded tile" }, /area/station/medical/aslyum) -"rIe" = ( -/turf/closed/wall/rust, -/area/station/security/bitden) "rIh" = ( /obj/structure/railing{ dir = 1 @@ -91174,12 +91250,16 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/commons/dorms) -"rIX" = ( -/obj/machinery/computer/prisoner/gulag_teleporter_computer{ - dir = 8 +"rJc" = ( +/obj/machinery/camera/directional/north{ + c_tag = " Prison - Middle"; + dir = 2; + network = list("ss13","prison") }, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) +/turf/open/floor/iron/stairs/left{ + dir = 4 + }, +/area/station/security/prison) "rJf" = ( /obj/structure/window/reinforced/tinted/spawner/directional/east, /obj/item/toy/plush/slimeplushie{ @@ -91190,6 +91270,18 @@ /obj/effect/turf_decal/tile/dark_blue/fourcorners, /turf/open/floor/iron/dark, /area/station/common/laser_tag) +"rJg" = ( +/obj/machinery/door/poddoor/preopen{ + id = "XenoOffice"; + name = "Xenobiology Lockdown Blast Doors" + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Toxins Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/obj/structure/liquid_barrier, +/turf/open/floor/plating, +/area/station/maintenance/department/science/xenobiology) "rJh" = ( /obj/machinery/corral_corner{ mapping_id = "6" @@ -91236,6 +91328,11 @@ dir = 4 }, /area/station/hallway/secondary/entry) +"rJp" = ( +/obj/effect/turf_decal/vg_decals/numbers/two, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "rJC" = ( /obj/structure/disposalpipe/junction/flip{ dir = 2 @@ -91327,10 +91424,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/maintenance/solars/port/fore) -"rKP" = ( -/obj/structure/sign/departments/cargo, -/turf/closed/wall, -/area/station/security/bitden) "rKQ" = ( /obj/machinery/photocopier, /turf/open/floor/carpet, @@ -91578,6 +91671,19 @@ /obj/structure/cable, /turf/open/floor/iron/dark/textured_large, /area/station/ai_monitored/security/armory) +"rNU" = ( +/obj/machinery/door/airlock/research{ + name = "Cytology Lab" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/liquid_barrier, +/turf/open/floor/iron/white, +/area/station/science/cytology) "rNV" = ( /obj/structure/railing{ dir = 8 @@ -91745,6 +91851,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, +/obj/machinery/station_map/engineering/directional/east, /turf/open/floor/iron/white, /area/station/commons/toilet/restrooms) "rPQ" = ( @@ -91761,6 +91868,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/maintenance/fore/upper) +"rPU" = ( +/obj/structure/cable, +/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/dark/side{ + dir = 4 + }, +/area/station/security/prison) "rPX" = ( /obj/structure/chair/wood{ dir = 8 @@ -92020,6 +92136,11 @@ /obj/effect/mapping_helpers/airlock/access/all/security/general, /turf/open/floor/iron/dark, /area/station/security/office) +"rTq" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/bounty/start_closed, +/turf/open/floor/plating, +/area/station/security/bitden) "rTv" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced/spawner/directional/west, @@ -92057,6 +92178,19 @@ /obj/effect/mapping_helpers/airlock/access/all/medical/general, /turf/open/floor/plating, /area/station/maintenance/department/medical/central) +"rTQ" = ( +/obj/machinery/camera/directional/south{ + c_tag = "Security - Perma Airlock"; + dir = 6 + }, +/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/cable, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/security/execution/transfer) "rUb" = ( /obj/machinery/button/curtain{ id = "prisoncell7"; @@ -92074,6 +92208,13 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, /area/station/maintenance/fore/upper) +"rUk" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/security/prison/upper) "rUl" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/structure/closet_maintenance, @@ -92085,10 +92226,6 @@ /obj/machinery/duct, /turf/open/floor/iron, /area/station/service/hydroponics) -"rUv" = ( -/obj/machinery/light/floor/has_bulb, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "rUA" = ( /obj/machinery/door/airlock/external{ space_dir = 8 @@ -92154,16 +92291,6 @@ }, /turf/open/floor/iron/dark, /area/station/science/auxlab/firing_range) -"rVz" = ( -/obj/effect/turf_decal/delivery/white{ - color = "#00ff00"; - name = "green" - }, -/obj/machinery/cryopod{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/prison) "rVD" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -92349,6 +92476,7 @@ /area/station/science/xenobiology) "rXp" = ( /obj/machinery/camera/autoname/directional/west, +/obj/machinery/station_map/engineering/directional/west, /turf/open/floor/iron, /area/station/hallway/secondary/command) "rXr" = ( @@ -92399,6 +92527,22 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/department/engineering/engine_aft_port) +"rXQ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/corner, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/prison) "rXY" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -92554,24 +92698,6 @@ /obj/structure/table/wood, /turf/open/floor/grass, /area/station/medical/patients_rooms) -"rZz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark/side, -/area/station/security/execution/transfer) -"rZC" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/window/reinforced/spawner/directional/east, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) "rZG" = ( /obj/structure/table/wood, /obj/item/paper_bin{ @@ -92936,6 +93062,16 @@ /mob/living/basic/chicken/teshari, /turf/open/floor/engine, /area/station/science/ordnance/burnchamber) +"scV" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 9 + }, +/obj/structure/chair/sofa/corp/left{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/small, +/area/station/security/bitden) "sdh" = ( /obj/machinery/door/airlock/external{ name = "External Thrusters Access" @@ -92952,6 +93088,13 @@ "sdi" = ( /turf/open/floor/engine, /area/station/cargo/miningdock) +"sdq" = ( +/obj/structure/chair/office, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "sdu" = ( /obj/effect/turf_decal/stripes{ dir = 8 @@ -93108,6 +93251,10 @@ "seM" = ( /turf/closed/wall, /area/station/cargo/miningoffice) +"seN" = ( +/obj/effect/spawner/random/trash/graffiti, +/turf/closed/wall, +/area/station/security/bitden) "seO" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -93256,6 +93403,15 @@ /obj/structure/window/fulltile, /turf/open/floor/grass, /area/station/hallway/primary/upper) +"sgv" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/structure/closet, +/obj/effect/spawner/random/medical/medkit, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) "sgw" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/trimline/blue/filled/line{ @@ -93540,10 +93696,6 @@ "sjA" = ( /turf/closed/wall, /area/station/service/bar/atrium) -"sjE" = ( -/obj/effect/spawner/random/trash/graffiti, -/turf/closed/wall, -/area/station/security/bitden) "sjF" = ( /obj/machinery/door/airlock/bathroom{ name = "Restroom" @@ -93609,25 +93761,6 @@ /obj/machinery/door/airlock/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/science/lower) -"skk" = ( -/obj/effect/decal/cleanable/oil/slippery, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) -"skq" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xenosecure"; - name = "Secure Pen Shutters" - }, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/window/brigdoor/left/directional/south{ - name = "Creature Pen"; - req_access = list("research") - }, -/obj/structure/liquid_barrier, -/turf/open/floor/engine, -/area/station/science/xenobiology) "skx" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/stripes{ @@ -93864,14 +93997,6 @@ /obj/structure/cable, /turf/open/floor/wood, /area/station/service/barber/spa) -"smY" = ( -/obj/structure/table, -/obj/item/screwdriver{ - pixel_y = 3 - }, -/obj/item/wirecutters, -/turf/open/floor/iron, -/area/station/security/prison/upper) "sna" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 8 @@ -93975,26 +94100,6 @@ /obj/effect/mapping_helpers/burnt_floor, /turf/open/floor/plating, /area/station/maintenance/department/medical) -"sof" = ( -/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/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating_new/dark{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/security/prison) "soi" = ( /obj/machinery/light/small/directional/west, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -94083,6 +94188,7 @@ /obj/effect/turf_decal/trimline/green/filled/line{ dir = 1 }, +/obj/machinery/atm/directional/north, /turf/open/floor/iron/dark/textured_edge{ dir = 1 }, @@ -94135,13 +94241,6 @@ "spO" = ( /turf/open/floor/iron/white, /area/station/science/genetics) -"spR" = ( -/obj/machinery/door/window/brigdoor/right/directional/east{ - name = "Crematorium"; - req_access = list("security") - }, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) "spS" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -94176,6 +94275,12 @@ }, /turf/open/floor/plating, /area/station/engineering/supermatter/room) +"sqr" = ( +/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/station/security/prison) "squ" = ( /obj/effect/turf_decal/siding/thinplating{ dir = 8 @@ -94192,6 +94297,15 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/department/science/lower) +"sqL" = ( +/obj/machinery/airalarm/directional/west, +/obj/machinery/light_switch/directional/south, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/security/prison/upper) "sqS" = ( /obj/structure/railing{ dir = 8 @@ -94298,13 +94412,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/maintenance/department/crew_quarters/dorms) -"srD" = ( -/obj/structure/window/reinforced/spawner/directional/west, -/obj/item/kirbyplants/random, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/security/prison/upper) "srJ" = ( /obj/structure/extinguisher_cabinet/directional/east, /turf/open/floor/iron/dark/side{ @@ -94374,17 +94481,6 @@ /obj/structure/cable, /turf/open/floor/wood, /area/station/service/lawoffice) -"sst" = ( -/obj/effect/turf_decal/trimline/red/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/warning{ - dir = 8 - }, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/security/prison) "ssv" = ( /obj/machinery/growing/soil, /turf/open/floor/grass, @@ -94475,6 +94571,21 @@ /obj/effect/decal/cleanable/blood/old, /turf/open/floor/plating, /area/station/maintenance/abandon_wrestle) +"stw" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_x = -5; + pixel_y = -3 + }, +/obj/item/storage/box/evidence{ + pixel_x = 9; + pixel_y = 8 + }, +/obj/item/storage/box/prisoner{ + pixel_x = 9 + }, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "stz" = ( /obj/machinery/door/airlock/security/glass{ name = "Security Checkpoint" @@ -94515,6 +94626,15 @@ /obj/effect/mapping_helpers/airlock/access/all/security/general, /turf/open/floor/iron/dark, /area/station/security/checkpoint/escape) +"stL" = ( +/obj/item/kirbyplants/organic/plant21, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/execution/transfer) "stP" = ( /obj/structure/filingcabinet/chestdrawer, /obj/machinery/newscaster/directional/north, @@ -94556,6 +94676,15 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/engineering/atmos) +"sub" = ( +/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, +/turf/open/floor/iron/stairs/right{ + dir = 8 + }, +/area/station/security/prison/upper) "suc" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plating, @@ -94991,15 +95120,6 @@ /obj/structure/window/spawner/directional/west, /turf/open/floor/plating, /area/station/maintenance/port/upper) -"sxI" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/camera/directional/east, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/security/execution/transfer) "sxJ" = ( /obj/structure/table, /obj/item/storage/photo_album, @@ -95080,6 +95200,19 @@ /obj/effect/decal/cleanable/food/flour, /turf/open/floor/iron/cafeteria, /area/station/common/wrestling/concessions) +"syG" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/prison) "syJ" = ( /turf/open/floor/iron, /area/station/engineering/lobby) @@ -95187,12 +95320,6 @@ /obj/machinery/light/directional/west, /turf/open/floor/iron/dark/small, /area/station/cargo/storage) -"sAv" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white/side, -/area/station/security/medical) "sAy" = ( /obj/structure/flora/grass/jungle, /obj/structure/flora/bush/grassy, @@ -95228,19 +95355,6 @@ }, /turf/open/floor/iron, /area/station/commons/fitness) -"sAH" = ( -/obj/effect/spawner/random/trash/graffiti, -/turf/closed/wall/rust, -/area/station/security/bitden) -"sAN" = ( -/obj/effect/turf_decal/stripes/full, -/obj/effect/turf_decal/stripes/white/full, -/obj/machinery/door/poddoor/shutters{ - id = "securitydock2"; - name = "Security Dock 2" - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "sAW" = ( /obj/structure/railing{ dir = 8 @@ -95267,12 +95381,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet/green, /area/station/service/abandoned_gambling_den) -"sBh" = ( -/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/station/security/prison/upper) "sBj" = ( /obj/structure/window/spawner/directional/east, /obj/structure/flora/bush/jungle/a/style_3, @@ -95382,10 +95490,6 @@ /obj/structure/sign/departments/lawyer/directional/south, /turf/open/floor/iron, /area/station/hallway/primary/central) -"sCh" = ( -/obj/machinery/door/airlock/maintenance, -/turf/open/floor/plating, -/area/station/security/prison) "sCm" = ( /turf/closed/wall, /area/station/science/ordnance/office) @@ -95451,6 +95555,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/security/checkpoint/escape) +"sCC" = ( +/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/white, +/area/station/security/prison) "sCE" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -95638,6 +95748,11 @@ /obj/effect/turf_decal/siding/wood, /turf/open/floor/iron/dark, /area/station/service/bar/atrium) +"sEA" = ( +/obj/structure/closet/secure_closet/brig/genpop, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) "sEF" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -95799,6 +95914,15 @@ /obj/effect/decal/remains/human, /turf/open/floor/plating, /area/station/security/courtroom) +"sFQ" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Labor Camp Shuttle Airlock" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "sFU" = ( /obj/machinery/light/small/directional/north, /turf/open/floor/plating, @@ -95814,10 +95938,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/ai_monitored/turret_protected/aisat_interior) -"sGa" = ( -/obj/machinery/light/small/directional/east, -/turf/open/floor/iron, -/area/station/security/prison/upper) "sGk" = ( /obj/structure/reagent_dispensers/fueltank{ pixel_y = 1 @@ -95929,14 +96049,6 @@ }, /turf/open/floor/wood, /area/station/service/library) -"sHr" = ( -/obj/structure/cable, -/obj/machinery/light/directional/south, -/obj/item/radio/intercom/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "sHt" = ( /turf/open/floor/iron/white, /area/station/medical/treatment_center) @@ -96017,20 +96129,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/hallway/primary/central/fore) -"sIg" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark/small, -/area/station/security/prison) -"sIh" = ( -/obj/machinery/computer/records/security{ - dir = 4 - }, -/obj/structure/window/spawner/directional/south, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "sIk" = ( /obj/structure/closet/cardboard, /obj/effect/spawner/random/maintenance, @@ -96047,6 +96145,12 @@ /obj/structure/hedge, /turf/open/floor/iron/dark, /area/station/hallway/primary/central) +"sIx" = ( +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/execution/transfer) "sIz" = ( /turf/open/floor/iron, /area/station/hallway/primary/upper) @@ -96140,28 +96244,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"sJC" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/item/folder/yellow, -/obj/item/stamp/qm, -/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{ - pixel_x = 6; - pixel_y = 16 - }, -/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{ - pixel_x = -4; - pixel_y = 16 - }, -/obj/item/hand_labeler_refill{ - pixel_x = -8; - pixel_y = -8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet/royalblack, -/area/station/command/heads_quarters/qm) "sJE" = ( /obj/machinery/light_switch{ pixel_y = 26 @@ -96475,12 +96557,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/port) -"sMb" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/carpet/black, -/area/station/security/execution/transfer) "sMd" = ( /obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, @@ -96614,15 +96690,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/carpet/executive, /area/station/command/heads_quarters/blueshield) -"sNl" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 10 - }, -/obj/structure/chair/sofa/corp/corner, -/obj/machinery/light/small/blacklight/directional/east, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/iron/dark/small, -/area/station/security/bitden) "sNn" = ( /obj/structure/trash_pile, /turf/open/floor/plating, @@ -96696,6 +96763,31 @@ }, /turf/open/floor/grass, /area/station/common/night_club/back_stage) +"sNV" = ( +/obj/structure/table/wood, +/obj/item/paper_bin/carbon{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/stamp{ + pixel_x = -3; + pixel_y = 9 + }, +/obj/item/stamp/head/hop{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/item/stamp/denied{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/structure/cable, +/obj/machinery/recharger{ + pixel_x = 8; + pixel_y = 5 + }, +/turf/open/floor/carpet, +/area/station/command/heads_quarters/hop) "sNY" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/smart/simple/green/visible{ @@ -97030,13 +97122,6 @@ }, /turf/open/floor/iron/white, /area/station/science/cytology) -"sRx" = ( -/obj/structure/table, -/obj/machinery/power/shuttle_engine/heater{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/prison/upper) "sRD" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -97120,6 +97205,12 @@ }, /turf/open/floor/carpet, /area/station/service/library) +"sSw" = ( +/obj/structure/reagent_dispensers/plumbed{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/security/prison) "sSz" = ( /obj/structure/table/wood, /obj/item/taperecorder, @@ -97197,6 +97288,14 @@ /obj/effect/turf_decal/bot_white, /turf/open/floor/iron, /area/station/engineering/transit_tube) +"sTi" = ( +/obj/structure/cable, +/obj/machinery/newscaster/directional/north, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/security/prison/upper) "sTk" = ( /turf/closed/wall, /area/station/service/theater) @@ -97209,11 +97308,6 @@ dir = 4 }, /area/station/science/xenobiology) -"sTA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/security/medical) "sTB" = ( /obj/machinery/door/airlock/public/glass{ name = "Holodeck Controls" @@ -97247,20 +97341,6 @@ /obj/structure/cable, /turf/open/floor/carpet, /area/station/maintenance/abandon_psych) -"sUe" = ( -/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/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/warning{ - dir = 8 - }, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/security/prison) "sUg" = ( /obj/effect/turf_decal/trimline/red/filled/corner{ color = "#DE3A3A"; @@ -97529,12 +97609,6 @@ /obj/structure/window/reinforced/spawner/directional/north, /turf/open/floor/iron/dark, /area/station/engineering/atmos/office) -"sWd" = ( -/obj/structure/closet/secure_closet/brig/genpop, -/obj/effect/turf_decal/bot, -/obj/structure/window/reinforced/spawner/directional/east, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) "sWk" = ( /obj/structure/closet, /obj/effect/decal/cleanable/dirt, @@ -97551,6 +97625,17 @@ }, /turf/open/floor/iron, /area/station/construction/mining/aux_base) +"sWs" = ( +/obj/structure/closet/crate/bin, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/item/clothing/mask/cigarette/pipe/crackpipe, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/security/prison) "sWA" = ( /turf/closed/wall, /area/station/service/janitor) @@ -97596,6 +97681,15 @@ /obj/item/radio/intercom/directional/east, /turf/open/floor/iron/dark, /area/station/engineering/atmos/office) +"sWQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/duct, +/obj/machinery/station_map/engineering/directional/west, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) "sWX" = ( /obj/effect/turf_decal/trimline/purple/filled/warning, /obj/effect/turf_decal/trimline/purple/filled/corner{ @@ -97606,6 +97700,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/science/xenobiology) +"sWY" = ( +/obj/structure/sign/departments/xenobio/directional/north, +/obj/structure/liquid_barrier, +/turf/open/floor/plating, +/area/station/maintenance/aft/upper) "sXb" = ( /obj/machinery/holopad, /obj/effect/turf_decal/bot, @@ -97744,20 +97843,6 @@ }, /turf/open/floor/iron, /area/station/construction/mining/aux_base) -"sYa" = ( -/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/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/security/prison) "sYd" = ( /obj/structure/sign/poster/contraband/have_a_puff/directional/south, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -97900,6 +97985,15 @@ dir = 4 }, /area/station/command/secure_bunker) +"sZv" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/structure/barricade/wooden/crude, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/bounty/start_closed, +/turf/open/floor/iron/dark/herringbone, +/area/station/security/bitden) "sZz" = ( /turf/open/floor/plating, /area/station/maintenance/department/medical/central) @@ -97954,6 +98048,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"sZN" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "sZO" = ( /obj/structure/chair/sofa/corp{ dir = 8 @@ -97964,16 +98066,6 @@ /obj/effect/spawner/random/trash/moisture_trap, /turf/open/floor/plating, /area/station/maintenance/port/upper) -"sZT" = ( -/obj/structure/chair/sofa/corp/right, -/obj/item/toy/katana{ - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/sign/poster/contraband/busty_backdoor_xeno_babes_6/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/small, -/area/station/security/bitden) "sZV" = ( /obj/machinery/portable_atmospherics/canister/nitrogen, /turf/open/floor/iron/dark, @@ -97989,16 +98081,6 @@ initial_gas_mix = "TEMP=2.7" }, /area/station/science/ordnance/bomb) -"tai" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 9 - }, -/obj/structure/chair/sofa/corp/left{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/small, -/area/station/security/bitden) "tan" = ( /obj/machinery/door/airlock/security{ name = "Courtroom Tunnel" @@ -98014,13 +98096,6 @@ /obj/effect/landmark/blobstart, /turf/open/floor/iron, /area/station/command/teleporter) -"tax" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/security/execution/transfer) "tay" = ( /obj/machinery/camera/autoname/directional/west, /turf/open/floor/wood, @@ -98342,6 +98417,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"tcK" = ( +/obj/structure/sign/departments/cargo, +/turf/closed/wall, +/area/station/security/bitden) "tcL" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -98349,11 +98428,6 @@ /obj/effect/turf_decal/tile/blue, /turf/open/floor/iron, /area/station/security/checkpoint/medical) -"tcM" = ( -/turf/open/floor/iron/stairs/right{ - dir = 4 - }, -/area/station/security/prison) "tcS" = ( /obj/structure/girder, /obj/structure/grille/broken, @@ -98387,6 +98461,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/science/xenobiology/control) +"tdp" = ( +/obj/structure/cable, +/obj/machinery/light/directional/east, +/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/dark/side{ + dir = 4 + }, +/area/station/security/prison) "tdr" = ( /obj/effect/turf_decal/stripes/end{ dir = 1 @@ -98431,12 +98515,6 @@ }, /turf/open/floor/iron/dark, /area/station/science/ordnance/storage) -"tdH" = ( -/obj/effect/turf_decal/stripes/white/line, -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/can, -/turf/open/floor/iron/dark/small, -/area/station/security/bitden) "tdK" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -98678,9 +98756,6 @@ dir = 8 }, /area/station/command/bridge) -"tfE" = ( -/turf/closed/wall/rust, -/area/station/security/prison) "tfG" = ( /obj/structure/chair/plastic{ dir = 8 @@ -98738,19 +98813,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) -"tgc" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/trimline/red/filled/line{ - color = "#DE3A3A"; - dir = 5 - }, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 8 - }, -/turf/open/floor/iron/dark/side{ - dir = 5 - }, -/area/station/security/prison) "tgl" = ( /obj/item/kirbyplants/organic/plant22, /obj/effect/turf_decal/trimline/red/filled/line{ @@ -98814,12 +98876,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/engineering/transit_tube) -"thg" = ( -/obj/structure/reagent_dispensers/plumbed{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) "thj" = ( /obj/effect/spawner/random/structure/table_or_rack, /obj/effect/spawner/random/maintenance, @@ -99216,13 +99272,20 @@ }, /turf/open/floor/iron, /area/station/engineering/gravity_generator) -"tlT" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/dark/side{ - dir = 6 +"tlW" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xenosecure"; + name = "Secure Pen Shutters" }, -/area/station/security/execution/transfer) +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/window/brigdoor/left/directional/south{ + name = "Creature Pen"; + req_access = list("research") + }, +/obj/structure/liquid_barrier, +/turf/open/floor/engine, +/area/station/science/xenobiology) "tme" = ( /obj/effect/decal/cleanable/glass, /obj/effect/mapping_helpers/broken_floor, @@ -99454,6 +99517,14 @@ }, /turf/open/floor/plating, /area/station/cargo/storage) +"ton" = ( +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/side, +/area/station/security/prison) "toq" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/trash/moisture, @@ -99469,33 +99540,6 @@ /obj/machinery/duct, /turf/open/floor/iron, /area/station/hallway/secondary/service) -"toE" = ( -/obj/structure/table/wood, -/obj/item/folder/blue{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/folder/blue, -/obj/item/stamp/denied{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/stamp/captain{ - pixel_x = 5; - pixel_y = 2 - }, -/obj/item/stamp{ - pixel_x = -6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/window/brigdoor/right/directional/west{ - name = "Captain's Desk"; - req_access = list("captain") - }, -/turf/open/floor/carpet/blue, -/area/station/command/heads_quarters/captain/private) "toI" = ( /obj/effect/spawner/random/trash/mess, /obj/effect/decal/cleanable/dirt, @@ -99903,6 +99947,14 @@ }, /turf/open/floor/iron/dark/small, /area/station/science/circuits) +"ttR" = ( +/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/stairs/medium{ + dir = 8 + }, +/area/station/security/prison) "ttS" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/machinery/duct, @@ -99963,6 +100015,13 @@ }, /turf/open/floor/iron/dark, /area/station/security/brig) +"tuy" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "tuC" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 6 @@ -100181,6 +100240,10 @@ }, /turf/open/floor/wood/parquet, /area/station/common/night_club) +"twJ" = ( +/obj/machinery/door/window/right/directional/north, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "twL" = ( /obj/structure/chair{ dir = 4 @@ -100524,6 +100587,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/hallway/primary/aft) +"tzB" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/security/prison) "tzE" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment, @@ -100634,6 +100701,13 @@ "tAj" = ( /turf/closed/wall, /area/station/hallway/secondary/entry) +"tAm" = ( +/obj/structure/rack, +/obj/item/pushbroom, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/execution/transfer) "tAn" = ( /obj/effect/turf_decal/trimline/blue/filled/corner{ dir = 4 @@ -100652,6 +100726,15 @@ "tAt" = ( /turf/closed/wall, /area/station/maintenance/department/crew_quarters/bar) +"tAv" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/execution/transfer) "tAw" = ( /obj/structure/table, /obj/item/restraints/handcuffs{ @@ -100896,6 +100979,10 @@ /obj/item/stamp, /turf/open/floor/iron/dark, /area/station/cargo/office) +"tCG" = ( +/obj/machinery/power/shuttle_engine/heater, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "tCJ" = ( /obj/effect/turf_decal/siding/wood{ dir = 6 @@ -101200,6 +101287,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/carpet, /area/station/security/courtroom) +"tGc" = ( +/obj/structure/curtain/bounty, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) "tGf" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/smart/simple/green/visible/layer4{ @@ -101207,15 +101298,6 @@ }, /turf/open/space/basic, /area/space/nearstation) -"tGg" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "Prison Gate"; - name = "Prison Blast Door" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/execution/transfer) "tGh" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -101271,6 +101353,36 @@ }, /turf/open/floor/iron/white, /area/station/science) +"tGO" = ( +/obj/machinery/button/flasher{ + id = "transferflash"; + pixel_y = -36 + }, +/obj/machinery/button/door{ + id = "permaouter"; + name = "Outer Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 6; + pixel_y = -25; + req_access = list("brig"); + specialfunctions = 4 + }, +/obj/machinery/button/door{ + id = "permainner"; + name = "Inner Bolt Control"; + normaldoorcontrol = 1; + pixel_x = -6; + pixel_y = -25; + req_access = list("brig"); + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/security/execution/transfer) "tHn" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/structure/cable, @@ -101456,6 +101568,13 @@ }, /turf/open/floor/iron/kitchen, /area/station/service/kitchen/diner) +"tIC" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) "tID" = ( /obj/effect/turf_decal/tile/brown/anticorner/contrasted{ dir = 8 @@ -101582,6 +101701,13 @@ }, /turf/open/floor/engine, /area/station/maintenance/disposal/incinerator) +"tJY" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/execution/transfer) "tKi" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -101631,6 +101757,7 @@ "tKH" = ( /obj/machinery/photocopier, /obj/structure/noticeboard/directional/north, +/obj/machinery/status_display/evac/directional/west, /turf/open/floor/wood, /area/station/command/heads_quarters/captain/private) "tKJ" = ( @@ -101708,6 +101835,20 @@ }, /turf/open/floor/iron/white, /area/station/science) +"tLF" = ( +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/security/execution/transfer) "tLI" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -101741,19 +101882,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/aslyum) -"tMc" = ( -/obj/machinery/camera/directional/south{ - c_tag = "Security - Perma Airlock"; - dir = 6 - }, -/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/cable, -/turf/open/floor/iron/dark/side{ - dir = 5 - }, -/area/station/security/execution/transfer) "tMh" = ( /obj/structure/bed{ dir = 1 @@ -101762,6 +101890,7 @@ dir = 1 }, /obj/effect/landmark/start/hangover, +/obj/machinery/station_map/engineering/directional/north, /turf/open/floor/carpet/black, /area/station/commons/dorms/room5) "tMn" = ( @@ -101804,14 +101933,6 @@ /obj/structure/cable, /turf/open/floor/carpet, /area/station/command/heads_quarters/captain) -"tMz" = ( -/obj/item/radio/intercom/directional/south, -/obj/machinery/light/directional/south, -/obj/machinery/computer/security/labor{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "tMA" = ( /obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/smart/simple/general/visible, @@ -101882,13 +102003,6 @@ /obj/effect/mapping_helpers/airlock/access/all/engineering/engine_equipment, /turf/open/floor/plating, /area/station/maintenance/aft/upper) -"tNa" = ( -/obj/structure/chair/comfy/barber_chair{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security/execution/transfer) "tNg" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -101911,6 +102025,22 @@ }, /turf/open/floor/grass, /area/station/hallway/primary/central) +"tNm" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/rack, +/obj/item/clothing/suit/caution, +/obj/item/clothing/suit/caution, +/obj/item/clothing/suit/caution, +/obj/item/clothing/suit/caution, +/obj/item/mop, +/obj/item/mop, +/obj/item/pushbroom, +/obj/item/pushbroom, +/obj/item/reagent_containers/cup/bucket, +/obj/item/reagent_containers/cup/bucket, +/obj/item/storage/bag/trash, +/turf/open/floor/iron, +/area/station/security/prison) "tNn" = ( /obj/machinery/modular_computer/preset/civilian, /obj/effect/turf_decal/stripes, @@ -102177,6 +102307,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/hallway/primary/upper) +"tPq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/small, +/area/station/security/bitden) "tPs" = ( /obj/structure/frame/computer{ anchored = 1; @@ -102217,6 +102351,18 @@ /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, /turf/open/floor/plating, /area/station/engineering/atmos/hfr_room) +"tPP" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/machinery/recharger{ + pixel_x = 8; + pixel_y = 3 + }, +/turf/open/floor/iron, +/area/station/security/prison/upper) "tPS" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -102502,6 +102648,7 @@ /turf/open/floor/plating, /area/station/maintenance/department/science/lower) "tSE" = ( +/obj/machinery/light_switch/directional/south, /turf/open/floor/iron/dark, /area/station/ai_monitored/command/nuke_storage) "tSF" = ( @@ -102541,12 +102688,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/department/medical) -"tSR" = ( -/obj/structure/closet/crate/bin, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/iron, -/area/station/security/execution/transfer) "tSU" = ( /obj/item/kirbyplants/random, /turf/open/floor/iron/dark/side{ @@ -102842,26 +102983,6 @@ }, /turf/open/floor/iron/white, /area/station/science/xenobiology) -"tWh" = ( -/obj/structure/table/wood, -/obj/item/clothing/mask/cigarette/syndicate, -/obj/item/food/sandwich{ - pixel_x = 5; - pixel_y = 14 - }, -/obj/item/reagent_containers/cup/glass/bottle/beer{ - desc = "Takes you to a whole new level of thinking."; - name = "Meta-Cider"; - pixel_x = -7; - pixel_y = 9 - }, -/obj/item/reagent_containers/cup/glass/drinkingglass{ - pixel_x = -14; - pixel_y = 1 - }, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/security/prison) "tWi" = ( /obj/machinery/light/directional/north, /turf/open/floor/iron, @@ -102990,14 +103111,13 @@ /obj/machinery/duct, /turf/open/floor/wood, /area/station/medical/patients_rooms) -"tXW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/falsewall, -/turf/open/floor/plating, -/area/station/security/prison) +"tXV" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/prison/upper) "tXX" = ( /obj/effect/turf_decal/trimline/purple/filled/warning{ dir = 1 @@ -103266,25 +103386,27 @@ /obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/security) -"ubj" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 5 - }, -/obj/machinery/computer/quantum_console{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/cup/soda_cans/pwr_game{ - pixel_x = -5; - pixel_y = 12 - }, -/turf/open/floor/iron/dark/small, -/area/station/security/bitden) "ubp" = ( /obj/structure/reagent_dispensers/beerkeg, /turf/open/floor/plating, /area/station/maintenance/aft/upper) +"uby" = ( +/obj/machinery/door/airlock/research{ + name = "Xenobiology Controll Room" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "XenoOffice"; + name = "Xenobiology Controll Room Shutters" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/obj/structure/liquid_barrier, +/turf/open/floor/iron/white, +/area/station/science/xenobiology/control) "ubC" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -103303,6 +103425,22 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/engineering/atmos/hfr_room) +"ubI" = ( +/obj/machinery/button/door/directional/west{ + id = "prison release"; + name = "Labor Camp Shuttle Lockdown"; + req_access = list("brig") + }, +/obj/structure/chair/sofa/bench/right{ + dir = 4; + pixel_x = -5 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "ubU" = ( /obj/machinery/atmospherics/pipe/smart/simple/orange/hidden{ dir = 6 @@ -103354,13 +103492,6 @@ /obj/machinery/camera/autoname/directional/west, /turf/open/floor/iron, /area/station/commons/dorms) -"ucn" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison) "ucs" = ( /obj/effect/spawner/random/trash/box, /turf/open/floor/plating, @@ -103409,13 +103540,6 @@ /obj/machinery/door/window/right/directional/north, /turf/open/floor/wood, /area/station/service/theater) -"uda" = ( -/obj/structure/chair/sofa/bench/left{ - dir = 4; - pixel_x = -5 - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "udb" = ( /obj/effect/turf_decal/siding/wood{ dir = 9 @@ -103524,14 +103648,6 @@ /obj/item/radio/intercom/directional/east, /turf/open/floor/carpet/black, /area/station/service/barber) -"udR" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron/white, -/area/station/security/execution/transfer) "udT" = ( /obj/effect/turf_decal/bot, /obj/machinery/conveyor_switch/oneway{ @@ -104091,6 +104207,13 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/central) +"uiP" = ( +/obj/structure/table, +/obj/machinery/power/shuttle_engine/propulsion{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/security/prison/upper) "uiR" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -104271,12 +104394,6 @@ }, /turf/open/floor/iron/dark, /area/station/security/brig) -"ukA" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) "ukD" = ( /obj/effect/turf_decal/stripes, /obj/structure/cable, @@ -104352,6 +104469,11 @@ /obj/structure/shipping_container/nakamura, /turf/open/floor/iron/dark/small, /area/station/cargo/miningdock) +"ula" = ( +/obj/structure/mirror/directional/north, +/obj/machinery/light/small/directional/north, +/turf/open/floor/carpet/black, +/area/station/security/execution/transfer) "ulc" = ( /obj/structure/window/reinforced/plasma/spawner/directional/north, /obj/machinery/power/shuttle_engine/heater{ @@ -104359,6 +104481,18 @@ }, /turf/open/floor/plating/airless, /area/station/maintenance/fore/upper) +"uld" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/fans/tiny/forcefield, +/obj/machinery/door/poddoor/preopen{ + id = "securityblast2"; + name = "Shuttle Bay Blast Door" + }, +/turf/open/floor/plating, +/area/station/security/prison/upper) "ulk" = ( /obj/structure/cable, /obj/effect/turf_decal/trimline/green/filled/line{ @@ -104505,14 +104639,6 @@ }, /turf/open/floor/carpet/blue, /area/station/command/captain_dining) -"ulK" = ( -/obj/structure/table/reinforced, -/obj/structure/window/spawner/directional/east, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "ulM" = ( /obj/structure/closet/crate/bin, /obj/effect/spawner/random/trash/garbage, @@ -104950,27 +105076,6 @@ /obj/machinery/newscaster/directional/north, /turf/open/floor/iron, /area/station/service/chapel) -"uqs" = ( -/obj/machinery/door/airlock/research{ - name = "Xenobiology Controll Room" - }, -/obj/machinery/door/poddoor/shutters/window/preopen{ - id = "XenoOffice"; - name = "Xenobiology Controll Room Shutters" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 4 - }, -/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/mapping_helpers/airlock/access/all/science/xenobio, -/obj/structure/liquid_barrier, -/turf/open/floor/iron/white, -/area/station/science/xenobiology/control) "uqt" = ( /obj/effect/turf_decal/stripes{ dir = 4 @@ -105004,49 +105109,6 @@ dir = 8 }, /area/station/hallway/primary/port) -"uqK" = ( -/obj/machinery/light/directional/south, -/obj/machinery/computer/security/labor{ - dir = 1 - }, -/obj/item/radio/intercom/directional/south, -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Security - Flight Control"; - dir = 5 - }, -/obj/machinery/button/door{ - id = "securitydock1"; - name = "Security Dock 1 Shutters"; - pixel_x = 26; - pixel_y = -6; - req_access = list("armory") - }, -/obj/machinery/button/door{ - id = "securitydock2"; - name = "Security Dock 2 Shutters"; - pixel_x = 37; - pixel_y = -6; - req_access = list("armory") - }, -/obj/machinery/button/door{ - id = "securityblast1"; - name = "Dock 1 blast doors"; - pixel_x = 26; - pixel_y = 5; - req_access = list("security") - }, -/obj/machinery/button/door{ - id = "securityblast2"; - name = "Dock 2 blast doors"; - pixel_x = 37; - pixel_y = 5; - req_access = list("security") - }, -/turf/open/floor/iron, -/area/station/security/prison/upper) "uqL" = ( /obj/structure/closet/crate/bin, /obj/machinery/light_switch/directional/west, @@ -105146,6 +105208,13 @@ /obj/structure/window/reinforced/spawner/directional/east, /turf/open/floor/iron/shuttle/arrivals/airless, /area/space/nearstation) +"urO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/execution/transfer) "usb" = ( /obj/structure/flora/bush/fullgrass, /obj/structure/flora/bush/sunny, @@ -105298,19 +105367,6 @@ /obj/machinery/shower/directional/south, /turf/open/floor/iron/freezer, /area/station/commons/dorms/room5) -"utC" = ( -/obj/structure/bed/roller{ - dir = 1 - }, -/obj/item/bedsheet/medical, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/structure/window/reinforced/spawner/directional/north{ - pixel_y = 1 - }, -/turf/open/floor/iron/white, -/area/station/security/execution/transfer) "utD" = ( /obj/machinery/atmospherics/pipe/smart/simple/green/visible{ dir = 10 @@ -105409,17 +105465,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, /area/station/service/hydroponics/garden/abandoned) -"uur" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/item/reagent_containers/cup/soda_cans/pwr_game, -/obj/effect/spawner/random/trash/garbage, -/obj/item/food/pizzaslice/moldy/bacteria, -/obj/structure/closet/mini_fridge, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/small, -/area/station/security/bitden) "uut" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -105469,16 +105514,6 @@ }, /turf/open/floor/engine, /area/station/science/xenobiology) -"uuZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "Labor Camp Shuttle Airlock" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron, -/area/station/security/prison/upper) "uve" = ( /obj/effect/turf_decal/stripes{ dir = 10 @@ -105533,6 +105568,15 @@ /obj/machinery/duct, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/hos) +"uvH" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Flight Control" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron/stairs/old, +/area/station/security/prison/upper) "uvM" = ( /obj/structure/chair/office, /obj/effect/landmark/start/cargo_technician, @@ -105599,6 +105643,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/port/upper) +"uwp" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "Prison Gate"; + name = "Prison Blast Door" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/execution/transfer) "uwr" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 4 @@ -105622,15 +105675,6 @@ /obj/machinery/airalarm/directional/west, /turf/open/floor/wood, /area/station/medical/psychology) -"uwC" = ( -/obj/item/kirbyplants/organic/plant21, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/iron/dark/side{ - dir = 4 - }, -/area/station/security/execution/transfer) "uwH" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -105641,12 +105685,6 @@ /obj/machinery/duct, /turf/open/floor/iron/white, /area/station/science/genetics) -"uwI" = ( -/obj/effect/turf_decal/vg_decals/numbers/one, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "uwO" = ( /obj/structure/cable, /turf/open/floor/plating, @@ -105904,13 +105942,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/upper) -"uzh" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "uzi" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -105939,14 +105970,6 @@ "uzo" = ( /turf/closed/wall/r_wall, /area/station/engineering/atmos/office) -"uzs" = ( -/obj/machinery/door/airlock/hatch{ - name = "Secure Pen" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/obj/structure/liquid_barrier, -/turf/open/floor/engine, -/area/station/science/xenobiology) "uzz" = ( /obj/structure/showcase/cyborg/old{ dir = 8; @@ -105966,11 +105989,6 @@ "uzK" = ( /turf/closed/wall, /area/station/medical/medbay/central) -"uzN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security/prison/upper) "uzV" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -106010,21 +106028,6 @@ /obj/effect/turf_decal/vg_decals/numbers/one, /turf/open/floor/iron, /area/station/hallway/primary/port) -"uAq" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/item/folder/blue{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/folder/white, -/obj/item/stamp/cmo{ - pixel_y = 5 - }, -/turf/open/floor/carpet/blue, -/area/station/command/heads_quarters/cmo) "uAr" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -106038,6 +106041,14 @@ }, /turf/open/floor/plating, /area/station/maintenance/department/crew_quarters/bar) +"uAv" = ( +/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/side{ + dir = 4 + }, +/area/station/security/execution/transfer) "uAI" = ( /obj/structure/table, /obj/item/storage/fancy/donut_box, @@ -106099,6 +106110,10 @@ /obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/medical) +"uBk" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron, +/area/station/security/prison/upper) "uBm" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/stripes{ @@ -106170,6 +106185,12 @@ /obj/structure/grandfatherclock, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/cmo) +"uBE" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "uBN" = ( /obj/structure/cable, /obj/machinery/duct, @@ -106205,6 +106226,12 @@ /obj/machinery/portable_atmospherics/pump, /turf/open/floor/iron, /area/station/engineering/atmos/pumproom) +"uBX" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/mechbay) "uCa" = ( /turf/closed/wall/r_wall, /area/station/maintenance/pool_maintenance) @@ -106250,6 +106277,11 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/maintenance/abandon_exam/cat) +"uCt" = ( +/turf/open/floor/iron/stairs/right{ + dir = 4 + }, +/area/station/security/prison) "uCu" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/machinery/button/door/directional/west{ @@ -106314,12 +106346,6 @@ }, /turf/open/floor/engine, /area/station/science/xenobiology) -"uCY" = ( -/obj/structure/window/reinforced/spawner/directional/south, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/security/execution/transfer) "uDb" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/oil, @@ -106385,6 +106411,27 @@ /obj/effect/turf_decal/tile/yellow/full, /turf/open/floor/iron/large, /area/station/command/heads_quarters/ce) +"uDQ" = ( +/obj/machinery/door/airlock/research{ + autoclose = 0; + frequency = 1449; + id_tag = "xeno_airlock_exterior"; + name = "Xenobiology Lab External Airlock" + }, +/obj/machinery/door_buttons/access_button{ + idDoor = "xeno_airlock_exterior"; + idSelf = "xeno_airlock_control"; + name = "Access Button"; + pixel_x = 25; + req_access = list("xenobiology") + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/obj/structure/liquid_barrier, +/turf/open/floor/iron, +/area/station/science/xenobiology/hallway) "uDU" = ( /obj/structure/window/reinforced/spawner/directional/west, /turf/open/floor/iron/dark, @@ -106474,6 +106521,20 @@ }, /turf/open/floor/iron, /area/station/science/research) +"uEB" = ( +/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/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/prison) "uEE" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/tile/yellow/half/contrasted{ @@ -106482,13 +106543,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/hallway/primary/aft) -"uEP" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 9 - }, -/obj/structure/railing, -/turf/closed/wall, -/area/station/security/bitden) "uEV" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -106870,6 +106924,12 @@ }, /turf/open/floor/glass/reinforced, /area/station/security/prison/safe) +"uIw" = ( +/obj/machinery/light/floor/has_bulb, +/obj/effect/turf_decal/bot_white, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "uID" = ( /obj/structure/cable, /obj/machinery/duct, @@ -106931,6 +106991,17 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/ai_monitored/command/storage/eva/upper) +"uJw" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/science/research) "uJz" = ( /obj/effect/spawner/random/trash/garbage, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -107085,6 +107156,13 @@ /obj/effect/turf_decal/siding/thinplating_new/dark, /turf/open/floor/iron/dark/textured, /area/station/ai_monitored/security/armory) +"uLc" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison) "uLe" = ( /obj/structure/chair{ dir = 1 @@ -107381,6 +107459,7 @@ name = "Command Chair"; req_access = list("command") }, +/obj/machinery/atm/directional/south, /turf/open/floor/iron, /area/station/command/bridge) "uOU" = ( @@ -107452,22 +107531,6 @@ /obj/effect/landmark/generic_maintenance_landmark, /turf/open/floor/iron/dark, /area/station/maintenance/thruster_room/central) -"uPT" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/obj/structure/table/reinforced/rglass, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -5; - pixel_y = 2 - }, -/obj/item/roller, -/obj/item/clothing/neck/stethoscope, -/turf/open/floor/iron/white/side{ - dir = 4 - }, -/area/station/security/medical) "uPU" = ( /obj/effect/turf_decal/stripes/end{ dir = 8 @@ -107864,6 +107927,16 @@ /obj/machinery/firealarm/directional/east, /turf/open/floor/iron, /area/station/hallway/primary/aft) +"uTo" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/security/execution/transfer) "uTp" = ( /obj/effect/mapping_helpers/broken_floor, /obj/structure/cable, @@ -107965,6 +108038,11 @@ dir = 1 }, /area/station/security/warden) +"uUr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/security/prison/upper) "uUt" = ( /obj/item/stack/sheet/plasmarglass{ amount = 2 @@ -108059,11 +108137,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/cargo/office) -"uVj" = ( -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/security/execution/transfer) "uVm" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -108349,6 +108422,12 @@ /obj/item/stack/cable_coil, /turf/open/floor/iron/dark, /area/station/maintenance/solars/port/fore) +"uYq" = ( +/obj/structure/table/glass, +/obj/item/folder/white, +/obj/item/stamp/head/rd, +/turf/open/floor/iron, +/area/station/command/heads_quarters/rd) "uYs" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 1 @@ -108416,15 +108495,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/science/auxlab/firing_range) -"uYO" = ( -/obj/effect/mapping_helpers/broken_floor, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Security Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/obj/machinery/duct, -/turf/open/floor/plating, -/area/station/security/medical) "uYQ" = ( /obj/structure/closet/athletic_mixed, /obj/effect/turf_decal/bot, @@ -108558,23 +108628,17 @@ /obj/structure/window/reinforced/spawner/directional/east, /turf/open/floor/iron/dark, /area/station/ai_monitored/aisat/exterior) +"vaq" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/iron/stairs/left{ + dir = 8 + }, +/area/station/security/prison/upper) "vaB" = ( /obj/structure/disposalpipe/segment, /obj/structure/sign/departments/botany/directional/east, /turf/open/floor/iron/stairs/right, /area/station/hallway/primary/central) -"vaE" = ( -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/line, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/security/prison) "vaK" = ( /obj/structure/closet/secure_closet/security, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -108633,13 +108697,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/hallway/primary/aft) -"vbd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/duct, -/turf/open/floor/iron/dark/small, -/area/station/security/prison) "vbj" = ( /obj/effect/turf_decal/trimline/purple/filled/warning{ dir = 8 @@ -108800,13 +108857,6 @@ }, /turf/open/floor/plating, /area/station/common/arcade) -"vdS" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) "vdT" = ( /obj/structure/reflector/box, /turf/open/floor/plating, @@ -109029,6 +109079,11 @@ /obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/open/floor/engine, /area/station/ai_monitored/turret_protected/aisat_interior) +"vfS" = ( +/obj/effect/spawner/random/trash/mess, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) "vfU" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -109190,10 +109245,6 @@ /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/medical/central) -"vhs" = ( -/obj/effect/spawner/random/trash/moisture_trap, -/turf/open/floor/plating, -/area/station/security/prison) "vhv" = ( /obj/effect/turf_decal/trimline/blue/filled/warning{ dir = 1 @@ -109437,6 +109488,12 @@ }, /turf/open/floor/iron/dark, /area/station/science/ordnance) +"vjG" = ( +/obj/item/kirbyplants/random, +/obj/machinery/airalarm/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron, +/area/station/security/prison/upper) "vjJ" = ( /turf/closed/wall/r_wall, /area/station/science/cytology) @@ -109570,6 +109627,16 @@ /obj/item/storage/photo_album/library, /turf/open/floor/carpet, /area/station/service/library) +"vkA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Prison Sanitarium" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/turf/open/floor/iron/white/side, +/area/station/security/execution/transfer) "vkC" = ( /obj/effect/spawner/random/trash/mess, /turf/open/floor/plating, @@ -109956,6 +110023,10 @@ "vor" = ( /turf/closed/wall/rust, /area/station/maintenance/department/security) +"vot" = ( +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "voA" = ( /obj/effect/turf_decal/tile/yellow{ dir = 1 @@ -109991,6 +110062,13 @@ dir = 1 }, /area/station/hallway/primary/port) +"voJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/execution/transfer) "voN" = ( /obj/structure/sign/warning/vacuum/external/directional/west, /turf/closed/wall/r_wall, @@ -110002,6 +110080,15 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/maintenance/xenobio_disposals) +"voR" = ( +/obj/machinery/door/airlock/research{ + name = "Cytology Lab" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/obj/structure/liquid_barrier, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) "voV" = ( /obj/structure/window/reinforced/spawner/directional/east, /obj/machinery/conveyor_switch/oneway{ @@ -110168,16 +110255,6 @@ /obj/effect/turf_decal/stripes/corner, /turf/open/floor/engine, /area/station/command/secure_bunker) -"vqT" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/bluespace_vendor/directional/east, -/turf/open/floor/iron/white/corner{ - dir = 4 - }, -/area/station/hallway/secondary/entry) "vqU" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/curtain/cloth/fancy/mechanical{ @@ -110885,15 +110962,6 @@ dir = 4 }, /area/station/medical/medbay/lobby) -"vxj" = ( -/obj/structure/window/reinforced/spawner/directional/north, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/security/execution/transfer) "vxk" = ( /obj/structure/rack/shelf, /obj/item/radio/intercom/directional/north, @@ -111230,6 +111298,14 @@ "vzh" = ( /turf/closed/wall, /area/station/maintenance/department/medical/central) +"vzl" = ( +/obj/structure/table, +/obj/item/screwdriver{ + pixel_y = 3 + }, +/obj/item/wirecutters, +/turf/open/floor/iron, +/area/station/security/prison/upper) "vzq" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -111360,6 +111436,14 @@ /obj/effect/mapping_helpers/burnt_floor, /turf/open/floor/plating/airless, /area/space/nearstation) +"vAG" = ( +/obj/structure/chair/plastic{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/station/security/prison) "vAH" = ( /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/window/reinforced/spawner/directional/south, @@ -111368,21 +111452,6 @@ /obj/structure/flora/bush/lavendergrass, /turf/open/floor/grass, /area/station/hallway/primary/central) -"vAO" = ( -/obj/structure/closet/crate/bin, -/obj/effect/spawner/random/trash/garbage, -/obj/effect/spawner/random/trash/garbage, -/obj/effect/spawner/random/contraband/prison, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark/side{ - dir = 6 - }, -/area/station/security/prison) "vAT" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -111415,19 +111484,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/treatment_center) -"vBr" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/effect/turf_decal/trimline/red/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/security/prison) "vBs" = ( /obj/effect/turf_decal/tile/red, /obj/structure/cable, @@ -111487,16 +111543,6 @@ /obj/structure/window/reinforced/spawner/directional/east, /turf/open/floor/iron/shuttle/arrivals/airless, /area/space/nearstation) -"vCl" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/security/execution/transfer) "vCp" = ( /obj/item/kirbyplants/random, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -111517,13 +111563,12 @@ /obj/structure/extinguisher_cabinet/directional/east, /turf/open/floor/iron/white, /area/station/medical/chemistry) -"vCC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/cable, +"vCK" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/can, /turf/open/floor/iron/dark/small, -/area/station/security/prison) +/area/station/security/bitden) "vCM" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4; @@ -111601,16 +111646,13 @@ /obj/structure/closet/secure_closet/personal, /obj/effect/turf_decal/bot, /obj/machinery/light/small/directional/west, +/obj/machinery/station_map/engineering/directional/west, /turf/open/floor/iron, /area/station/science/breakroom) "vDO" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/common/cryopods) -"vDP" = ( -/obj/structure/chair/sofa/bench/left, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "vDR" = ( /obj/machinery/holopad, /obj/effect/turf_decal/bot, @@ -111779,11 +111821,6 @@ /obj/item/storage/toolbox/mechanical, /turf/open/floor/plating, /area/station/maintenance/fore/upper) -"vFo" = ( -/obj/structure/decorative/shelf/crates1, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/station/security/prison/upper) "vFr" = ( /obj/machinery/light/floor/has_bulb, /turf/open/floor/iron, @@ -111834,6 +111871,14 @@ dir = 1 }, /area/station/command/heads_quarters/ce) +"vFQ" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/reagent_dispensers/water_cooler, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "vFS" = ( /obj/effect/landmark/start/assistant, /turf/open/floor/carpet, @@ -111856,9 +111901,10 @@ }, /turf/open/floor/iron/dark, /area/station/service/kitchen/coldroom) -"vGh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible/layer4, -/turf/open/floor/plating, +"vGk" = ( +/obj/structure/table/reinforced/rglass, +/obj/structure/cable, +/turf/open/floor/iron/white, /area/station/security/prison) "vGm" = ( /obj/structure/toilet{ @@ -111874,6 +111920,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, +/obj/machinery/station_map/engineering/directional/east, /turf/open/floor/iron/white, /area/station/commons/toilet/restrooms) "vGn" = ( @@ -112024,6 +112071,7 @@ dir = 4 }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/station_map/engineering/directional/east, /turf/open/floor/iron/white, /area/station/medical/cryo) "vHQ" = ( @@ -112098,13 +112146,6 @@ /obj/machinery/duct, /turf/open/floor/iron, /area/station/engineering/main) -"vIi" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison) "vIm" = ( /obj/structure/chair{ dir = 4 @@ -112227,10 +112268,6 @@ /obj/machinery/duct, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"vJe" = ( -/obj/structure/curtain/bounty, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) "vJi" = ( /obj/effect/decal/cleanable/blood/old, /obj/effect/mapping_helpers/burnt_floor, @@ -112321,6 +112358,19 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/command) +"vKt" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/security/prison/upper) +"vKu" = ( +/obj/structure/table, +/obj/effect/spawner/random/decoration/ornament, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/station/security/prison) "vKI" = ( /turf/closed/wall/r_wall, /area/station/maintenance/abandon_wrestle) @@ -112642,15 +112692,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/aft/upper) -"vMY" = ( -/obj/machinery/airalarm/directional/west, -/obj/machinery/light_switch/directional/south, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/prison/upper) "vNd" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -112679,11 +112720,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/station/commons/dorms) -"vNi" = ( -/obj/machinery/prisongate, -/obj/machinery/door/firedoor, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) "vNm" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/cable, @@ -113104,23 +113140,6 @@ }, /turf/open/floor/iron, /area/station/science/ordnance) -"vSg" = ( -/obj/effect/turf_decal/trimline/neutral/warning{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/mid_joiner{ - dir = 4 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Security - Medbay" - }, -/obj/structure/bodycontainer/morgue{ - dir = 2 - }, -/turf/open/floor/iron/dark/textured_half{ - dir = 1 - }, -/area/station/security/medical) "vSn" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, @@ -113166,6 +113185,10 @@ }, /turf/open/floor/plating, /area/station/command/captain_dining) +"vTa" = ( +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/security/prison) "vTd" = ( /obj/effect/decal/cleanable/oil, /obj/structure/cable, @@ -113279,6 +113302,19 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/engineering/atmos/office) +"vTU" = ( +/obj/machinery/computer/prisoner/gulag_teleporter_computer{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) +"vTW" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 5 + }, +/obj/structure/railing, +/turf/closed/wall/rust, +/area/station/security/bitden) "vUa" = ( /obj/effect/turf_decal/stripes{ dir = 8 @@ -113330,6 +113366,12 @@ }, /turf/open/floor/iron/white, /area/station/medical/medbay/central) +"vUv" = ( +/obj/structure/closet/secure_closet/brig/genpop, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) "vUz" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -113541,13 +113583,6 @@ /obj/machinery/light/directional/east, /turf/open/floor/engine, /area/station/engineering/supermatter/room) -"vWk" = ( -/obj/structure/cable, -/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, -/area/station/security/prison) "vWp" = ( /obj/item/trash/syndi_cakes, /obj/structure/cable, @@ -113668,17 +113703,6 @@ name = "pool" }, /area/station/command/heads_quarters/captain/private) -"vYb" = ( -/obj/machinery/door/airlock/security/old{ - name = "Janitorial" - }, -/obj/effect/turf_decal/delivery/red, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark, -/area/station/security/prison) "vYi" = ( /obj/structure/cable, /obj/machinery/power/emitter{ @@ -113761,11 +113785,27 @@ }, /turf/open/floor/wood, /area/station/service/library/printer) -"vZt" = ( -/obj/effect/spawner/random/trash/mess, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/small, -/area/station/security/bitden) +"vZu" = ( +/obj/structure/closet/crate/trashcart/laundry, +/obj/effect/spawner/random/contraband/prison, +/obj/machinery/camera/directional/north{ + c_tag = " Prison - Custodial Closet"; + network = list("ss13","prison") + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/spawner/random/contraband/prison, +/obj/item/clothing/under/rank/prisoner/skirt, +/obj/item/clothing/under/rank/prisoner/skirt, +/obj/item/clothing/under/rank/prisoner/skirt, +/obj/item/clothing/under/rank/prisoner/skirt, +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/under/rank/prisoner, +/turf/open/floor/iron/kitchen{ + dir = 1 + }, +/area/station/security/prison) "vZv" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -113775,6 +113815,20 @@ }, /turf/open/floor/iron/dark/side, /area/station/hallway/secondary/command) +"vZz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible/layer4, +/turf/open/floor/plating, +/area/station/security/prison) +"vZD" = ( +/obj/structure/extinguisher_cabinet/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/red{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/security/prison/upper) "vZI" = ( /obj/effect/turf_decal/stripes{ dir = 8 @@ -113799,6 +113853,27 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) +"vZL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/execution/transfer) "vZN" = ( /obj/structure/chair/office/light{ dir = 4 @@ -113857,12 +113932,6 @@ /obj/structure/flora/bush/flowers_pp/style_2, /turf/open/floor/grass, /area/station/maintenance/port/fore) -"was" = ( -/obj/effect/turf_decal/bot, -/obj/structure/cable, -/obj/machinery/disease2/centrifuge, -/turf/open/floor/iron, -/area/station/medical/virology) "wax" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -113905,6 +113974,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/station/service/hydroponics/garden/abandoned) +"waW" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/security/prison/upper) "waY" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/shuttle/evac/airless, @@ -113997,6 +114073,12 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, /area/station/maintenance/pool_maintenance) +"wbZ" = ( +/obj/machinery/computer/records/security{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "wcf" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -114111,6 +114193,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/engineering/gravity_generator) +"wcM" = ( +/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/red/opposingcorners, +/turf/open/floor/iron, +/area/station/security/prison/upper) "wcO" = ( /obj/effect/landmark/event_spawn, /obj/structure/flora/grass/jungle, @@ -114135,6 +114224,7 @@ dir = 8 }, /obj/machinery/light/directional/east, +/obj/machinery/station_map/engineering/directional/east, /turf/open/floor/iron/white, /area/station/medical/medbay/central) "wde" = ( @@ -114215,21 +114305,6 @@ }, /turf/open/floor/wood, /area/station/hallway/primary/port) -"wdA" = ( -/obj/effect/turf_decal/delivery/red, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/window/preopen{ - id = "prisonlockdown3"; - name = "Lockdown" - }, -/obj/machinery/button/door{ - id = "prisonlockdown3"; - name = "Lockdown"; - pixel_x = 24; - req_access = list("security") - }, -/turf/open/floor/iron/dark, -/area/station/security/prison) "wdE" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -114661,6 +114736,27 @@ /obj/effect/spawner/random/trash/moisture_trap, /turf/open/floor/plating, /area/station/maintenance/port/upper) +"whf" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 3 + }, +/obj/item/borg/sight/hud/sec{ + pixel_y = 17 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) +"whh" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/security/prison/upper) "whj" = ( /obj/machinery/light/directional/south, /turf/open/floor/iron, @@ -114880,34 +114976,10 @@ /obj/effect/spawner/random/maintenance/two, /turf/open/floor/plating, /area/station/maintenance/port/central) -"wjd" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating_new/dark{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/corner, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/security/prison) "wjj" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/carpet, /area/station/command/heads_quarters/qm) -"wjv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/airalarm/directional/south, -/obj/structure/cable, -/obj/machinery/camera/autoname/directional/south, -/turf/open/floor/iron/dark/side, -/area/station/security/execution/transfer) "wjw" = ( /obj/structure/cable, /obj/structure/sign/warning/vacuum/directional/west, @@ -114974,6 +115046,21 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/port/upper) +"wkg" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Prison Wing" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery/blue, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/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/access/all/security/brig, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) "wks" = ( /obj/effect/turf_decal/trimline/purple/filled/corner{ dir = 4 @@ -115271,25 +115358,6 @@ /obj/machinery/duct, /turf/open/floor/iron, /area/station/commons/dorms) -"wmS" = ( -/obj/machinery/door/airlock/research{ - autoclose = 0; - frequency = 1449; - id_tag = "xeno_airlock_interior"; - name = "Xenobiology Lab Internal Airlock" - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/obj/structure/liquid_barrier, -/turf/open/floor/iron/white, -/area/station/science/xenobiology/hallway) "wmV" = ( /obj/effect/turf_decal/stripes{ dir = 10 @@ -115563,6 +115631,17 @@ }, /turf/open/floor/iron/dark, /area/station/maintenance/aux_eva) +"wpP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/prison) "wpT" = ( /obj/structure/cable, /obj/machinery/door/airlock/maintenance_hatch, @@ -115761,6 +115840,49 @@ /obj/structure/cable, /turf/open/floor/iron/dark/herringbone, /area/station/security/brig) +"wrQ" = ( +/obj/machinery/light/directional/south, +/obj/machinery/computer/security/labor{ + dir = 1 + }, +/obj/item/radio/intercom/directional/south, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Security - Flight Control"; + dir = 5 + }, +/obj/machinery/button/door{ + id = "securitydock1"; + name = "Security Dock 1 Shutters"; + pixel_x = 26; + pixel_y = -6; + req_access = list("armory") + }, +/obj/machinery/button/door{ + id = "securitydock2"; + name = "Security Dock 2 Shutters"; + pixel_x = 37; + pixel_y = -6; + req_access = list("armory") + }, +/obj/machinery/button/door{ + id = "securityblast1"; + name = "Dock 1 blast doors"; + pixel_x = 26; + pixel_y = 5; + req_access = list("security") + }, +/obj/machinery/button/door{ + id = "securityblast2"; + name = "Dock 2 blast doors"; + pixel_x = 37; + pixel_y = 5; + req_access = list("security") + }, +/turf/open/floor/iron, +/area/station/security/prison/upper) "wrR" = ( /obj/effect/decal/cleanable/glass, /obj/structure/grille/broken, @@ -115791,16 +115913,6 @@ }, /turf/open/floor/plating, /area/station/cargo/drone_bay) -"wsg" = ( -/obj/effect/turf_decal/delivery/red, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/window/preopen{ - id = "prisonlockdown3"; - name = "Lockdown" - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron/dark, -/area/station/security/prison) "wsh" = ( /obj/item/kirbyplants/random, /obj/effect/mapping_helpers/broken_floor, @@ -115856,18 +115968,6 @@ }, /turf/open/floor/iron, /area/station/medical/storage) -"wsy" = ( -/obj/item/spear, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/obj/item/clothing/head/helmet/old{ - pixel_y = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison) "wsF" = ( /obj/structure/grille/broken, /turf/open/floor/plating, @@ -116107,13 +116207,6 @@ }, /turf/open/floor/iron, /area/station/command/heads_quarters/rd) -"wuE" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/prison) "wuF" = ( /obj/effect/decal/cleanable/dirt, /obj/item/clothing/under/rank/cargo/miner, @@ -116157,6 +116250,11 @@ /obj/effect/spawner/random/trash/cigbutt, /turf/open/floor/plating, /area/station/maintenance/department/science/lower) +"wva" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "wvd" = ( /obj/structure/railing, /turf/open/floor/carpet, @@ -116270,6 +116368,14 @@ "www" = ( /turf/closed/wall, /area/station/maintenance/department/security/lesser) +"wwx" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/security/execution/transfer) "wwD" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/iron/smooth_large, @@ -116334,11 +116440,6 @@ /obj/effect/turf_decal/stripes, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/rd) -"wxH" = ( -/obj/structure/railing, -/obj/effect/spawner/random/trash/graffiti, -/turf/closed/wall/rust, -/area/station/security/bitden) "wxI" = ( /obj/structure/chair/office{ dir = 1 @@ -116380,6 +116481,11 @@ "wyc" = ( /turf/open/floor/carpet, /area/station/service/chapel/funeral) +"wyd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "wyf" = ( /obj/structure/window/reinforced/spawner/directional/north, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -116841,6 +116947,13 @@ }, /turf/open/floor/iron/white, /area/station/science/research) +"wCm" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/photobooth/security, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/security/execution/transfer) "wCw" = ( /obj/machinery/camera/directional/south{ c_tag = "Courtroom - Holding Cell" @@ -116999,14 +117112,6 @@ }, /turf/open/floor/carpet, /area/station/service/lawoffice) -"wDi" = ( -/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/side{ - dir = 4 - }, -/area/station/security/execution/transfer) "wDj" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 5 @@ -117173,13 +117278,6 @@ name = "Padded tile" }, /area/station/medical/aslyum) -"wEJ" = ( -/obj/structure/closet/secure_closet/brig/genpop, -/obj/effect/turf_decal/bot, -/obj/structure/window/reinforced/spawner/directional/east, -/obj/structure/window/reinforced/spawner/directional/south, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) "wEM" = ( /obj/machinery/power/shuttle_engine/heater{ dir = 8 @@ -117334,6 +117432,20 @@ /obj/item/clothing/mask/breath, /turf/open/floor/plating/airless, /area/space/nearstation) +"wGq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/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/machinery/duct, +/obj/structure/cable, +/obj/machinery/station_map/engineering/directional/west, +/turf/open/floor/iron, +/area/station/commons/dorms) "wGx" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -117356,6 +117468,16 @@ }, /turf/open/floor/iron, /area/station/service/bar/atrium) +"wGG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Security Shuttlebay" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron, +/area/station/security/prison/upper) "wGO" = ( /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/plating, @@ -117441,9 +117563,6 @@ "wHI" = ( /turf/closed/wall, /area/station/maintenance/central) -"wHR" = ( -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "wHW" = ( /obj/machinery/status_display/ai/directional/north, /obj/structure/cable, @@ -117502,6 +117621,13 @@ /obj/effect/turf_decal/siding/thinplating_new/dark, /turf/open/floor/iron/dark/side, /area/station/security/brig) +"wIB" = ( +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/security/prison) "wIE" = ( /turf/open/floor/iron, /area/station/maintenance/abandon_holding_cell) @@ -117567,22 +117693,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"wJg" = ( -/obj/machinery/button/door/directional/west{ - id = "prison release"; - name = "Labor Camp Shuttle Lockdown"; - req_access = list("brig") - }, -/obj/structure/chair/sofa/bench/right{ - dir = 4; - pixel_x = -5 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/camera/autoname/directional/west, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "wJj" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 @@ -117622,12 +117732,6 @@ /obj/machinery/light/directional/west, /turf/open/floor/carpet, /area/station/science/ordnance/office) -"wJB" = ( -/obj/effect/turf_decal/siding/dark_red, -/obj/machinery/defibrillator_mount/directional/east, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/dark, -/area/station/security/medical) "wJQ" = ( /obj/structure/chair/office{ dir = 8 @@ -117893,6 +117997,10 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/security/prison/garden) +"wMG" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/iron, +/area/station/security/prison/upper) "wMN" = ( /obj/structure/chair/sofa/bench/right{ dir = 8; @@ -118063,11 +118171,6 @@ /obj/item/kirbyplants/random, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"wOH" = ( -/obj/effect/turf_decal/stripes, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/security/prison/upper) "wOR" = ( /obj/structure/cable, /obj/machinery/door/airlock/maintenance_hatch{ @@ -118464,13 +118567,6 @@ /obj/effect/spawner/random/structure/steam_vent, /turf/open/floor/plating, /area/station/maintenance/department/science/upper) -"wSj" = ( -/obj/machinery/power/shuttle_engine/propulsion, -/obj/structure/fluff/big_chain{ - pixel_y = 30 - }, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "wSn" = ( /obj/structure/closet{ name = "security locker" @@ -118667,9 +118763,9 @@ /obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/machinery/light/directional/north, +/obj/machinery/station_map/engineering/directional/north, /turf/open/floor/iron, /area/station/commons/dorms) "wUv" = ( @@ -118794,13 +118890,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/aft/upper) -"wWj" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/iron, -/area/station/security/prison/upper) "wWk" = ( /obj/effect/turf_decal/trimline/blue/filled/line, /obj/machinery/airalarm/directional/south, @@ -118849,6 +118938,13 @@ /obj/machinery/status_display/evac/directional/north, /turf/open/floor/iron/dark/side, /area/station/maintenance/department/engineering/engine_aft_starboard) +"wWS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/security/prison) "wWZ" = ( /obj/structure/hedge, /obj/effect/turf_decal/siding/wood{ @@ -118900,6 +118996,13 @@ }, /turf/open/floor/iron/dark/small, /area/station/medical/morgue) +"wXp" = ( +/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, +/turf/open/floor/iron/dark/small, +/area/station/security/prison) "wXw" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -118938,6 +119041,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, /area/station/security/detectives_office) +"wYg" = ( +/obj/structure/cable, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) "wYj" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -119089,17 +119197,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/department/science/xenobiology) -"wZr" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Maintenance" - }, -/obj/machinery/atmospherics/components/binary/pump/layer4{ - name = "Airmix Reserve to Distribution" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/obj/machinery/duct, -/turf/open/floor/plating, -/area/station/security/prison) "wZt" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 4 @@ -119146,6 +119243,10 @@ }, /turf/open/floor/carpet/green, /area/station/command/heads_quarters/nt_rep) +"wZP" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron, +/area/station/security/prison/upper) "wZQ" = ( /turf/closed/wall, /area/station/service/kitchen/coldroom) @@ -119156,15 +119257,6 @@ }, /turf/open/floor/iron/white/telecomms, /area/station/tcommsat/server) -"wZT" = ( -/obj/effect/turf_decal/stripes/end, -/obj/machinery/shower/directional/south, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/item/reagent_containers/blood, -/obj/machinery/iv_drip, -/turf/open/floor/iron/white/textured, -/area/station/security/medical) "wZW" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/blue/half/contrasted{ @@ -119174,6 +119266,12 @@ dir = 1 }, /area/station/hallway/secondary/command) +"wZY" = ( +/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/station/security/prison/upper) "xah" = ( /obj/effect/turf_decal/stripes{ dir = 4 @@ -119354,6 +119452,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/maintenance/solars/starboard/fore) +"xce" = ( +/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, +/turf/open/floor/iron, +/area/station/security/execution/transfer) "xcn" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -119474,6 +119579,10 @@ dir = 8 }, /area/station/hallway/primary/upper) +"xdA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/r_wall, +/area/station/security/medical) "xdB" = ( /obj/structure/table/reinforced, /obj/item/folder/blue, @@ -119572,6 +119681,18 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/fore/upper) +"xeF" = ( +/obj/structure/table, +/obj/item/poster/random_official{ + pixel_y = 10 + }, +/obj/item/poster/random_official, +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/mechbay) "xeQ" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Teleporter Maintenance" @@ -119692,6 +119813,17 @@ /obj/item/construction/rcd, /turf/open/floor/iron/dark, /area/station/ai_monitored/command/storage/eva/upper) +"xgc" = ( +/obj/machinery/firealarm/directional/north{ + pixel_x = -22 + }, +/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/side{ + dir = 9 + }, +/area/station/security/execution/transfer) "xgg" = ( /obj/structure/closet/secure_closet/medical3, /obj/effect/turf_decal/bot, @@ -120061,15 +120193,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood, /area/station/common/pool/sauna) -"xkm" = ( -/obj/structure/table/reinforced/rglass, -/obj/structure/mirror/directional/west, -/obj/machinery/light/directional/west, -/obj/item/scissors, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/security/execution/transfer) "xko" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -120243,6 +120366,14 @@ }, /turf/open/floor/wood, /area/station/service/bar/atrium) +"xma" = ( +/obj/structure/table/rolling, +/obj/item/wrench{ + pixel_y = 3 + }, +/obj/item/crowbar, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "xml" = ( /obj/item/trash/pistachios, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -120426,6 +120557,13 @@ }, /turf/open/floor/grass, /area/station/command/heads_quarters/nt_rep) +"xoi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/plumbed{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) "xon" = ( /obj/machinery/atmospherics/pipe/smart/simple/cyan/hidden{ dir = 4 @@ -120455,6 +120593,18 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) +"xoA" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison) "xoC" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -120490,6 +120640,18 @@ }, /turf/open/floor/iron/white, /area/station/medical/treatment_center) +"xoN" = ( +/obj/item/spear, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/obj/item/clothing/head/helmet/old{ + pixel_y = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison) "xoO" = ( /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark, @@ -120698,6 +120860,7 @@ dir = 1 }, /obj/machinery/door/firedoor, +/obj/machinery/station_map/engineering/directional/north, /turf/open/floor/iron/white, /area/station/medical/medbay/central) "xrl" = ( @@ -120734,12 +120897,6 @@ }, /turf/open/floor/iron, /area/station/service/hydroponics) -"xrF" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/security/prison) "xrI" = ( /obj/effect/turf_decal/trimline/blue/filled/corner{ dir = 1 @@ -120869,6 +121026,14 @@ }, /turf/open/floor/iron/dark, /area/station/cargo/sorting) +"xsB" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/station_map/engineering/directional/east, +/turf/open/floor/iron, +/area/station/hallway/primary/aft) "xsC" = ( /obj/item/stack/ore/iron, /turf/open/floor/plating/airless, @@ -120928,6 +121093,12 @@ dir = 8 }, /area/station/science/explab) +"xtc" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/execution/transfer) "xtd" = ( /obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, /turf/open/floor/engine, @@ -120978,11 +121149,6 @@ }, /turf/open/floor/wood, /area/station/security/courtroom) -"xtG" = ( -/obj/structure/table/reinforced/rglass, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/security/prison) "xtI" = ( /obj/structure/flora/tree/jungle/small, /turf/open/floor/grass, @@ -121162,6 +121328,11 @@ dir = 1 }, /area/station/security/brig) +"xuQ" = ( +/turf/open/floor/iron/stairs{ + dir = 1 + }, +/area/station/security/prison) "xuR" = ( /obj/structure/filingcabinet/security, /obj/machinery/camera/directional/east{ @@ -121173,13 +121344,6 @@ }, /turf/open/floor/iron, /area/station/security/checkpoint/escape) -"xuV" = ( -/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/red/opposingcorners, -/turf/open/floor/iron, -/area/station/security/prison/upper) "xuX" = ( /obj/machinery/computer/shuttle/mining, /obj/effect/turf_decal/tile/brown, @@ -121188,6 +121352,10 @@ }, /turf/open/floor/iron/dark, /area/station/command/bridge) +"xuY" = ( +/obj/machinery/station_map/engineering/directional/west, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) "xva" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -121231,15 +121399,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) -"xvo" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/turf/open/floor/iron/dark/side{ - dir = 9 - }, -/area/station/security/prison) "xvy" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -121396,17 +121555,6 @@ "xxp" = ( /turf/closed/wall/rust, /area/station/maintenance/library/lower) -"xxz" = ( -/obj/machinery/computer/cryopod{ - dir = 1; - pixel_y = -30 - }, -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/security/prison) "xxH" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -121565,11 +121713,6 @@ /obj/structure/window/spawner/directional/south, /turf/open/floor/iron, /area/station/medical/cryo) -"xzF" = ( -/turf/open/floor/iron/stairs/left{ - dir = 8 - }, -/area/station/security/prison) "xzG" = ( /obj/effect/landmark/start/medical_doctor, /obj/effect/turf_decal/trimline/blue/filled/warning{ @@ -121660,25 +121803,6 @@ }, /turf/open/floor/iron, /area/station/command/gateway) -"xAL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating_new/dark{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/corner, -/turf/open/floor/iron/dark/side{ - dir = 8 - }, -/area/station/security/execution/transfer) "xAU" = ( /obj/effect/turf_decal/stripes, /obj/machinery/light/directional/south, @@ -122270,6 +122394,14 @@ }, /turf/open/floor/iron, /area/station/commons/dorms) +"xGu" = ( +/obj/structure/chair/office, +/obj/structure/window/spawner/directional/west, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "xGF" = ( /obj/structure/table/wood/poker, /obj/effect/decal/cleanable/dirt, @@ -122425,10 +122557,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/aft/upper) -"xIb" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark/small, -/area/station/security/bitden) "xIf" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/machinery/computer/shuttle/mining/common{ @@ -122660,6 +122788,7 @@ /area/station/maintenance/rus_gambling) "xKH" = ( /obj/machinery/cassette/mailbox, +/obj/machinery/atm/directional/north, /turf/open/floor/wood, /area/station/service/library) "xKK" = ( @@ -122798,6 +122927,7 @@ dir = 1 }, /obj/machinery/camera/autoname/directional/west, +/obj/machinery/atm/directional/west, /turf/open/floor/iron, /area/station/commons/dorms) "xMj" = ( @@ -122891,6 +123021,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atm/directional/south, /turf/open/floor/iron/white/corner{ dir = 8 }, @@ -122923,12 +123054,6 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron, /area/station/engineering/storage/tech) -"xNm" = ( -/obj/machinery/light/floor/has_bulb, -/obj/effect/turf_decal/bot_white, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "xNy" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/liquids_spawner, @@ -123223,6 +123348,12 @@ /obj/machinery/newscaster/directional/east, /turf/open/floor/wood, /area/station/hallway/primary/central) +"xQJ" = ( +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/machinery/disease2/centrifuge, +/turf/open/floor/iron, +/area/station/medical/virology) "xQR" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -123233,8 +123364,8 @@ }, /area/station/security/interrogation) "xQS" = ( -/obj/machinery/light_switch/directional/south, /obj/machinery/camera/autoname/directional/south, +/obj/machinery/atm/directional/south, /turf/open/floor/circuit, /area/station/ai_monitored/command/nuke_storage) "xQY" = ( @@ -123357,6 +123488,10 @@ }, /turf/open/floor/iron, /area/station/command/gateway) +"xSI" = ( +/obj/item/clothing/head/utility/hardhat, +/turf/open/floor/plating, +/area/station/security/prison/upper) "xSK" = ( /turf/open/floor/iron/white/side{ dir = 4 @@ -123386,10 +123521,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/station/maintenance/abandon_office) -"xTd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/r_wall, -/area/station/security/medical) "xTh" = ( /obj/effect/spawner/random/trash/mess, /obj/structure/cable, @@ -123424,6 +123555,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/station_map/engineering/directional/north, /turf/open/floor/iron, /area/station/science/research) "xTr" = ( @@ -123480,6 +123612,20 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/hallway/primary/upper) +"xUa" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison) "xUb" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -123891,17 +124037,6 @@ "xYg" = ( /turf/open/floor/iron/grimy, /area/station/maintenance/starboard/fore) -"xYh" = ( -/obj/machinery/gulag_item_reclaimer{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/camera/directional/east{ - c_tag = "Security - Prisoner Labor Transfer Dock" - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/security/prison/upper) "xYm" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -124007,6 +124142,26 @@ }, /turf/open/floor/iron, /area/station/cargo/miningoffice) +"xZe" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/red, +/obj/item/storage/box/bodybags{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/storage/box/prisoner{ + pixel_x = -4 + }, +/obj/item/radio/intercom/directional/west, +/obj/item/pushbroom, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) "xZi" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -124074,7 +124229,6 @@ /area/station/engineering/main) "xZS" = ( /obj/effect/turf_decal/bot, -/obj/machinery/status_display/ai/directional/south, /obj/machinery/light/directional/south, /turf/open/floor/iron/dark, /area/station/science/auxlab/firing_range) @@ -124417,6 +124571,12 @@ }, /turf/open/floor/plating, /area/station/maintenance/disposal) +"ycG" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/security/execution/transfer) "ycI" = ( /obj/machinery/light/small/directional/north, /obj/machinery/duct, @@ -124643,12 +124803,6 @@ }, /turf/open/floor/iron/dark, /area/station/hallway/primary/starboard) -"yez" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/security/execution/transfer) "yeC" = ( /obj/structure/table, /obj/effect/turf_decal/stripes/line{ @@ -124893,6 +125047,13 @@ /obj/machinery/camera/directional/south, /turf/open/floor/iron/white, /area/station/command/gateway) +"ygH" = ( +/obj/structure/cable, +/obj/item/electronics/airlock, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "ygI" = ( /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/shutters/window/preopen{ @@ -125072,6 +125233,11 @@ }, /turf/open/floor/iron/white, /area/station/medical/surgery) +"yie" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/red, +/turf/open/floor/iron/dark/small, +/area/station/security/prison) "yif" = ( /obj/effect/turf_decal/delivery, /obj/structure/disposalpipe/segment{ @@ -125109,14 +125275,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/science/auxlab/firing_range) -"yiy" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/duct, -/turf/open/floor/iron/dark/small, -/area/station/security/prison) "yiA" = ( /obj/machinery/computer/slot_machine, /turf/open/floor/plating, @@ -125221,6 +125379,11 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/carpet, /area/station/security/courtroom) +"yjg" = ( +/obj/machinery/light_switch/directional/north, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark, +/area/station/security/prison/upper) "yjp" = ( /obj/structure/grille, /turf/open/floor/plating, @@ -125276,6 +125439,25 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/ai_monitored/turret_protected/aisat_interior) +"ykv" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) +"ykx" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/station_map/engineering/directional/south, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) "yky" = ( /obj/item/assembly/shock_kit, /obj/structure/rack, @@ -125327,13 +125509,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/port) -"ykO" = ( -/obj/item/stack/sheet/cardboard, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/maintenance, -/obj/structure/closet/crate, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) "ykR" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/broken_floor, @@ -125433,15 +125608,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/hallway/primary/aft) -"ymb" = ( -/obj/effect/turf_decal/trimline/red/filled/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/line, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/security/prison) "ymf" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 8; @@ -146322,14 +146488,14 @@ egv iKs iKs iKs -rkk -rkk -rkk -rkk -rkk -rkk +lSv +lSv +lSv +lSv +lSv +lSv gLI -rkk +lSv ltN cDn cDn @@ -146579,14 +146745,14 @@ iKs iKs fZI exN -rkk -bba -hLH -wHR -bba -hHM -chC -rkk +lSv +riE +bfk +jcg +riE +cKc +waW +lSv ltN ltN fNe @@ -146836,14 +147002,14 @@ bsG bsG fZI sJq -rkk -wHR -inc -rUv -wHR -hLH -chC -rkk +lSv +jcg +cCU +dhi +jcg +bfk +waW +lSv ylg frJ uWm @@ -147092,21 +147258,21 @@ fZI fZI bsG bsG -rkk -rkk -iIe -iIe -iIe -iIe -iIe -moF -rkk -rkk -rkk -rkk -rkk -rkk -rkk +lSv +lSv +dLD +dLD +dLD +dLD +dLD +cBJ +lSv +lSv +lSv +lSv +lSv +lSv +lSv bbm aXM ltX @@ -147349,21 +147515,21 @@ fZI fZI fZI fZI -bng -rfs -wHR -wHR -wHR -wHR -wHR -iHC -iRJ -skk -wHR -hce -sAN -wHR -gKk +uld +neq +jcg +jcg +jcg +jcg +jcg +vot +nom +jvw +jcg +cUG +pKo +jcg +ixc bbm dfX uCl @@ -147606,21 +147772,21 @@ fZI fZI fZI fZI -bng -wHR -faw -wHR -wHR -cQf -wHR -iHC -wHR -wHR -wHR -wHR -sAN -wHR -wHR +uld +jcg +huh +jcg +jcg +xma +jcg +vot +jcg +jcg +jcg +jcg +pKo +jcg +jcg bbm jVT cBY @@ -147863,21 +148029,21 @@ fZI fZI fZI fZI -bng -wHR -wHR -wHR -qdQ -wHR -eTL -iHC -xNm -iHC -iHC -iHC -mQE -iHC -pYt +uld +jcg +jcg +jcg +mbb +jcg +rJp +vot +uIw +vot +vot +vot +pBy +vot +eSm bbm bmN nct @@ -148120,21 +148286,21 @@ fZI fZI fZI fZI -bng -wHR -wHR -inc -wHR -wHR -wHR -wHR -wHR -fri -wSj -wHR -sAN -wHR -iHC +uld +jcg +jcg +cCU +jcg +jcg +jcg +jcg +jcg +tCG +hbX +jcg +pKo +jcg +vot bbm oRy igP @@ -148377,21 +148543,21 @@ fZI fZI fZI fZI -bng -qxT -wHR -wHR -wHR -faw -wHR -wHR -nOQ -wHR -wHR -cgu -sAN -wHR -iHC +uld +nJN +jcg +jcg +jcg +huh +jcg +jcg +mgC +jcg +jcg +gnd +pKo +jcg +vot bbm bbm bbm @@ -148633,28 +148799,28 @@ fZI fZI fZI fZI -rkk -rkk -kzx -doG -doG -eTH -iNB -feJ -faw -jPf -bdt -jPf -hZI -hZI -jLj -glU -eDx -grX -vFo -hZI -mfh -rkk +lSv +lSv +ppu +pXf +pXf +oya +rUk +huc +huh +qPi +lqF +qPi +lWC +lWC +mfG +wyd +wMG +cgO +pYU +lWC +uBk +lSv cXk rYT mWp @@ -148890,28 +149056,28 @@ fZI fZI fZI fZI -oql -rGh -dwh -aIF -iFX -smY -ejd -doG -doG -jPf -ciS -wOH -odg -dVC -iHC -glU -wHR -wHR -wHR -rme -wHR -iQb +hmu +dIh +mfN +gAp +uiP +vzl +eka +pXf +pXf +qPi +tPP +lqy +mgS +uvH +vot +wyd +jcg +jcg +jcg +meR +jcg +fTu tcI mzK rKn @@ -149147,28 +149313,28 @@ fZI fZI fZI fZI -oql -qIZ -dwh -miw -sRx -mIY -ejd -msT -msT -jPf -rdz -ixK -uqK -hZI -mfE -glU -wHR -wHR -wHR -rme -wHR -iQb +hmu +lPS +mfN +jMu +pas +rcA +eka +cmx +cmx +qPi +pTb +vKt +wrQ +lWC +yjg +wyd +jcg +jcg +jcg +meR +jcg +fTu tcI ctM vpO @@ -149404,28 +149570,28 @@ fZI fZI fZI fZI -rkk -rkk -occ -msT -msT -wWj -lMz -jpA -wHR -jPf -mHe -jPf -hZI -hZI -aSL -sBh -eDx -lgZ -ewk -hZI -sGa -rkk +lSv +lSv +mFF +cmx +cmx +eCl +iqd +nNy +jcg +qPi +oMa +qPi +lWC +lWC +hTj +wZY +wMG +nCL +bbZ +lWC +wZP +lSv wMc rYT xyx @@ -149662,27 +149828,27 @@ fZI fZI fZI fZI -cHs -rfs -wHR -wHR -wHR -wHR -oyI -wHR -wHR -wHR -wHR -hce -mKJ -wHR -sBh -jPf -jPf -jPf -hZI -hZI -rkk +fqv +neq +jcg +jcg +jcg +jcg +kOy +jcg +jcg +jcg +jcg +cUG +mzi +jcg +wZY +qPi +qPi +qPi +lWC +lWC +lSv rKn pEk mWp @@ -149919,27 +150085,27 @@ fZI fZI fZI fZI -cHs -wHR -faw -wHR -wHR -wHR -oyI -inc -wHR -wHR -wHR -wHR -mKJ -wHR -sBh -jPf -jYd -dQz -lWM -uzh -rkk +fqv +jcg +huh +jcg +jcg +jcg +kOy +cCU +jcg +jcg +jcg +jcg +mzi +jcg +wZY +qPi +hwo +nSZ +tuy +aMk +lSv iNU rYT rtp @@ -150176,27 +150342,27 @@ fZI fZI fZI fZI -cHs -wHR -wHR -wHR -qdQ -wHR -uwI -wHR -qdQ -wHR -wHR -inc -mKJ -wHR -sHr -hZI -oih -ghV -gly -ulK -rkk +fqv +jcg +jcg +jcg +mbb +jcg +bhs +jcg +mbb +jcg +jcg +cCU +mzi +jcg +kXj +lWC +qds +uBE +fPs +ini +lSv qaa rYT eKa @@ -150433,27 +150599,27 @@ fZI fZI fZI fZI -cHs -wHR -wHR -wHR -wHR -inc -oyI -wHR -faw -wHR -wHR -wHR -mKJ -wHR -bYs -kKk -dwh -fvF -oWD -dnO -rkk +fqv +jcg +jcg +jcg +jcg +cCU +kOy +jcg +huh +jcg +jcg +jcg +mzi +jcg +ygH +rrW +mfN +aAZ +bCW +xGu +lSv rYi rYT rKn @@ -150690,31 +150856,31 @@ fZI fZI fZI fZI -cHs -qxT -wHR -piH -wHR -wHR -oyI -wHR -kWs -piH -wHR -cgu -mKJ -wHR -sBh -hZI -aSZ -reQ -eKF -gPp -rkk +fqv +nJN +jcg +qEl +jcg +jcg +kOy +jcg +bwU +qEl +jcg +gnd +mzi +jcg +wZY +lWC +rrL +xSI +qSr +sdq +lSv ofH -pyk +wYg eBw -etj +xoi rKn xrJ ejO @@ -150947,29 +151113,29 @@ fZI fZI mcS hQc -rkk -hZI -jPf -hZI -uuZ -hZI -bsN -hZI -qrh -hZI -jPf -hZI -hZI -inl -cyc -hZI -rkk -pSi -pSi -pSi -rkk -low -kxG +lSv +lWC +qPi +lWC +gmR +lWC +lxT +lWC +lpB +lWC +qPi +lWC +lWC +vaq +sub +lWC +lSv +nkM +nkM +nkM +lSv +hFV +paT rKn rKn rKn @@ -151206,35 +151372,35 @@ mcS brg gBn ebG -dwK -mgt -iHC -jPf -pub -jPf -iHC -xYh -aHZ -hZI -qBh -phD -aCT -vMY -rkk -jPf -jPf -jPf -rkk -pyk -dAg +aod +bzd +vot +qPi +qqg +qPi +vot +drN +dIC +lWC +sTi +whh +pKI +sqL +lSv +qPi +qPi +qPi +lSv +wYg +gWy eBw -gci -kif +vfS +pME eBw eBw tNz -bop -dTy +xeF +doI fYr kxe dyS @@ -151463,38 +151629,38 @@ mcS aSr mcS ebG -vDP -peU -iCC -jPf -bRo -jPf -fJP -hZI -gAV -hZI -pBb -oDh -kow -pps -jPf +cIT +aub +ruf +qPi +pNz +qPi +jHS +lWC +sFQ +lWC +exg +mRr +vFQ +aWf +qPi xVt cFu poD hGf -pRF +obF fAy rKn bii bii bii -uYO +oRx bii cZT -qiF +uBX bAo bAo -lHT +azm cZT lSs qDO @@ -151720,33 +151886,33 @@ mcS als dkM ebG -hZI -mEr -hZI -hZI -nJe -hZI -jPf -hZI -osb -hZI -pPF -oBL -hxO -tMz -rkk +lWC +nim +lWC +lWC +wGG +lWC +qPi +lWC +fej +lWC +qQx +twJ +wva +kXq +lSv cYq saz nnK hGf -kxG -gci -thg +paT +vfS +hNf bii -wZT -fbj -cue -uPT +dOd +qzZ +puP +dRF cZT hAz nDO @@ -151977,33 +152143,33 @@ hjL uLe fDq ebG -iRb -uzN -jMz -sIh -pub -hZI -uda -wJg -cFI -jPf -phD -kYo -lMR -oUI -rkk +vjG +uUr +jVM +aLE +qqg +lWC +qBV +ubI +cZN +qPi +whh +rhP +sZN +wbZ +lSv dsA nwj pAF hGf rYT -ykO -piO +cXS +oBU bii -vSg -kcW -cAi -bVB +nJo +maC +kpa +qPB yiK ipO eSi @@ -152234,21 +152400,21 @@ hjL btQ iuU lzN -akv -qby -jvQ -mkp -jvQ -iuT -jvQ -mkp -xuV -bPE -aCT -hef -rdj -srD -jPf +fSD +bBR +ihA +bag +ihA +gtc +ihA +bag +wcM +mXJ +pKI +nmU +whf +tXV +qPi cYq nwj nnK @@ -152256,11 +152422,11 @@ hGf rYT kbf cXk -xTd -lSN -piE -sAv -sTA +xdA +lmp +krL +kFJ +mNo fxE enO vNg @@ -152491,21 +152657,21 @@ hjL lhI iuU mcS -rkk -rkk -rIX -rnl -bUp -hZI -obJ -eLF -fgg -jPf -fHM -qlC -qlC -mXO -pKX +lSv +lSv +vTU +qZW +stw +lWC +jNW +iKO +fsV +qPi +vZD +aSJ +aSJ +nlW +knE wQP asc nnK @@ -152514,10 +152680,10 @@ uTp hGf nLa bii -bSH -wJB -aiV -ewr +evF +aDo +hyH +eYn yiK aEA qTW @@ -152748,21 +152914,21 @@ mcS ptx bbi nZp -rkk -rkk -rkk -rkk -rkk -rkk -rkk -rkk -rkk -rkk -rkk -rkk -rkk -rkk -rkk +lSv +lSv +lSv +lSv +lSv +lSv +lSv +lSv +lSv +lSv +lSv +lSv +lSv +lSv +lSv kts lTN nnK @@ -153027,8 +153193,8 @@ euj eAn mrc fOy -kdE -ckZ +kqq +feC tbW tbW qZQ @@ -153804,7 +153970,7 @@ gdj lBJ lBJ gdj -cYq +nSB pvr sXy fAw @@ -153922,7 +154088,7 @@ qhV wTj jmk uDH -bqH +oKh dFZ fhB kLf @@ -154411,7 +154577,7 @@ bkw ail wGh slp -amx +xsB uTj xMs lwf @@ -155369,7 +155535,7 @@ csj uiE ceg mOg -knY +jWC mME ntd qGV @@ -156865,7 +157031,7 @@ fZI ugq mbg sjx -dqS +pap lRD eEZ nHB @@ -161084,7 +161250,7 @@ sNz sNz sNz sNz -sNz +egV pSa rfv bTx @@ -161251,9 +161417,9 @@ bIr caW lWh mjE -etR -ewH -jYm +lQh +lmF +xZe mjE guH koJ @@ -161508,18 +161674,18 @@ cLU cLU qlm mjE -qGZ +pco euE -vdS +tIC mjE iLK iLK iLK -tGg -gZf -tGg +uwp +bfU +uwp mjE -rlG +fzp mjE mjE mjE @@ -161762,23 +161928,23 @@ usE qeT ktT cLU -nJY -pQr -uCY -rZC -spR -mzV -vxj -mkH -jwD +ycG +sIx +xtc +ykv +kVR +oLZ +tAv +hVv +bjD mhN -plQ -qHK -pVI +xgc +voJ +aIm mhN -nhb -ukA -nMV +caP +aQX +aaZ mjE iwe ogh @@ -161835,7 +162001,7 @@ wtf bZp qBm uoz -sJC +oXl lUP vms aky @@ -162019,23 +162185,23 @@ ciT ciT jfR rVN -lBj +rEN yfU yfU yfU -cLP +xce qnt -mYn -eWy -rZz -hZz -mgu -kkF -pUq +ohJ +hFz +nYK +qPw +eQX +ina +jNo mhN -kas -bvl -qNF +ouA +jhe +iPY mjE wJa oNH @@ -162276,23 +162442,23 @@ usE jqG mKX cLU -jUg -wDi -rwX -sxI -dnD -dnD -ouK -ilY -tlT +rhd +uAv +exx +fqB +ocU +ocU +tJY +fps +aYv mhN -tMc -tax -aoI +rTQ +ccW +kRE mhN -kas -qwc -ltK +ouA +hZe +sgv mjE mne qzO @@ -162544,12 +162710,12 @@ mjE mjE mjE mhN -pai +wkg mhN mjE -vCl -yez -rbJ +uTo +mVR +oaW mjE jId erj @@ -162795,18 +162961,18 @@ oqu knV eoX eKU -sMb +gSN mjE -jSV -jSV -hbD -cuh -rhp -oiU +sEA +sEA +rGY +wCm +mcr +fSX mjE -ePN -nCO -joM +wwx +hlJ +fOf mjE jte wJl @@ -163052,18 +163218,18 @@ voj tim tim eKU -fRu -vJe -uVj +ula +tGc +dGm jHK jHK jHK yfU yfU -ojW -udR -utC -lfI +vkA +aDf +lnD +otH mjE qjr sCM @@ -163311,12 +163477,12 @@ ojn eKU mjE mjE -qpU -sWd -wEJ -fPm -kkF -boS +nKO +vUv +qmO +gzb +ina +bLp mjE mjE mjE @@ -163566,18 +163732,18 @@ evJ jTj jZN eKU -sMb +gSN mjE -nCJ -nCJ -qRV -biV -kkF -wjv +anf +anf +hjb +cCh +ina +hri mjE -cpw -xkm -jXV +bci +ifM +eCX mjE pxu hEu @@ -163823,18 +163989,18 @@ uCB tTy xEA eKU -fRu -vJe -uVj +ula +tGc +dGm jHK jHK vUC yfU yfU -pir +haA xJs -tNa -tSR +gDP +bwi mjE mrV vGn @@ -164082,16 +164248,16 @@ hCX eKU mjE mjE -jSV -jSV -hbD -eMK -qUg -qdm +sEA +sEA +rGY +dSa +urO +tGO mjE -joC -fbS -uwC +kjl +tAm +stL mjE qgy hEu @@ -164334,17 +164500,17 @@ qvK wDK wDK hZE -dwO -sUe -pRI +nfH +cDV +juI fLW fLW fLW fLW fLW -bxW +aRP mhN -vNi +jtX mjE cIP cIP @@ -164591,17 +164757,17 @@ kkM fzZ qGh aFR -pWt -dHq -rtH +wpP +vTa +olx hCF sOD upE mVi fLW -cdU -xAL -psC +aFN +cGn +kMa mjE qHR tVI @@ -164848,17 +165014,17 @@ cfv ygo rvW ykH -pWt -oyy -rtH +wpP +yie +olx hCF wos sCo ybd fLW -bvP -pSF -rwY +gsE +vZL +tLF mjE kXG jPh @@ -165105,17 +165271,17 @@ eNX vfL oSo hZE -fqM -sIg -geu +moD +qBU +nfl fLW sOD upE lwp fLW -bxW +aRP mhN -vNi +jtX mjE jxo jxo @@ -165362,18 +165528,18 @@ obs qrD bjv lCu -pWt -jUN -rtH +wpP +jTp +olx hCF wos sCo kIH lkS -icN -wjd +roj +rXQ rFW -hmu +fWC aYN eEq lWL @@ -165610,7 +165776,7 @@ xqy hwT xUM tKm -nUH +bLP nCt hZE bpN @@ -165619,18 +165785,18 @@ pXe pnj iUM xPu -pWt -jUN -rtH +wpP +jTp +olx hCF lIC jYJ kIH lkS bQp -sof +gqm gSL -hmu +fWC aYN qUa nnC @@ -165867,7 +166033,7 @@ wnF wVn hss aef -nUH +bLP nCt hZE luD @@ -165876,17 +166042,17 @@ hZE oUs qjb hZE -pWt -kUy -gkk +wpP +aKW +ton fLW hCF cwm fLW fLW -tcM -nVB -pWT +uCt +iOt +rJc fBz fBz sqS @@ -166124,7 +166290,7 @@ saS dJp nPa tKm -xvo +ikN ssh ssh ssh @@ -166132,20 +166298,20 @@ ssh ssh ssh dDf -wsg -aqa -jUN -hdl -rmr -rmr -sYa -dBq -vBr -lXx -sUe -sst -grD -dBq +rDC +gzn +jTp +mib +dLV +dLV +uEB +gJA +syG +hLT +cDV +hJv +jHe +gJA jbr eid nPi @@ -166381,28 +166547,28 @@ tKm tKm tKm tKm -rFh +mbh lmI rSs rSs rSs rSs -vWk -iEp -pWk -klV -yiy -eKt -auR -eKt -vbd -jBC -auR -vbd -vbd -eKt -auR -jBC +kCv +cEm +oYn +aAC +rBY +nXF +lCA +nXF +iJi +hMC +lCA +iJi +iJi +nXF +lCA +hMC rbq wyz nPi @@ -166635,31 +166801,31 @@ eAw fhV vKf tKm -mJa -mJa -dda -fOj -kmG -kmG -qgZ -kmG -kmG -kmG -fdu -wdA -ymb -hYo -rFr -jcV -jcV -jcV -jJA -kVN -iQi -nQe -fdm -kVN -jJA +jRQ +jRQ +gti +pKs +rPU +rPU +tdp +rPU +rPU +rPU +dbJ +kgu +cAO +pwf +cNQ +qYn +qYn +qYn +lEZ +mAp +ote +kew +xUa +mAp +lEZ tHo jZq iYU @@ -166892,11 +167058,11 @@ eAw oAZ siV tKm -jfW +nrY cIP cIP -vYb -jaK +qBI +tzB jGp jGp xBL @@ -166904,17 +167070,17 @@ xBL xBL jGp jGp -aZo -jGf -rtH +qFY +kcz +olx nes nes nes vwF vwF -xzF -pWV -eLK +nZv +ttR +guJ fBz fBz noo @@ -167149,11 +167315,11 @@ eAw tKm tKm tKm -mJa +jRQ cIP -raG -nTK -aVv +oDk +lHo +kVx jGp ngQ jdy @@ -167161,9 +167327,9 @@ kGe sVR xfL xBL -aZo -hYo -rtH +qFY +pwf +olx nes qCL oDC @@ -167402,15 +167568,15 @@ fpm aOU hcM tfU -jnr -mZZ -fnG +fyC +lmL +sSw cIP -mJa +jRQ cIP -fKw -nOf -qMm +nar +gKW +kFx jGp yiR kOs @@ -167418,9 +167584,9 @@ muY pRs bns sUs -gWf -hYo -rtH +rmo +pwf +olx nes arP pda @@ -167659,15 +167825,15 @@ xYZ hcM nbp tfU -jnr -vGh -knn -wZr -eXo +fyC +vZz +hkm +qPL +wWS cIP -ffG -hVk -iDH +vZu +gwn +sWs jGp lkn hiH @@ -167675,9 +167841,9 @@ hiH fbY wUF xBL -pWt -vCC -rtH +wpP +hbs +olx nes xAb bEU @@ -167916,15 +168082,15 @@ lTn clo gXM tfU -ftI -rfQ -fnG +jAO +arx +sSw cIP -nBh +sqr cIP -ezQ +iMZ lmI -oav +tNm jGp aWj qwx @@ -167932,9 +168098,9 @@ hiH pTR rBW jGp -vaE -oyy -aaR +bBw +yie +quq vwF aqd hPZ @@ -168166,22 +168332,22 @@ fZI tfU tfU iMF -poM +bSZ cIP cIP -tfE -tfE +jXw +jXw cIP fBz fBz cIP cIP cIP -nBh +sqr cIP -agZ +hwu lmI -orl +mtA jGp gjv jAq @@ -168189,10 +168355,10 @@ bvy fqn atF xBL -pWt -dHq -gXp -pWG +wpP +vTa +laE +xuQ eyi oSX oSX @@ -168423,21 +168589,21 @@ fZI fZI tfU qXA -poM -dsi -gim +bSZ +hRR +jgA cIP -pXp -nTp -jtO +lwL +vKu +azM fBz -glJ -bkC +mpU +fsZ cIP -nBh +sqr cIP cIP -sCh +hRs cIP jGp rBW @@ -168446,9 +168612,9 @@ hiH rOj ihM xBL -pWt -dHq -gkk +wpP +vTa +ton vwF vwF nes @@ -168680,22 +168846,22 @@ fZI fZI tfU qXA -mJh -lcR -lcR -tXW -eFq -wsy -lRK -vIi -aoU -wuE -ucn -nBh -dzS -dzS -dzS -ggy +nBw +qQm +qQm +dpa +jZj +xoN +pwd +fzC +bqY +uLc +fzi +sqr +ghk +ghk +ghk +kbn jGp gjv jAq @@ -168703,15 +168869,15 @@ hiH fyW iwm xBL -pWt -dHq -rtH -jaK -eoQ -eoQ -lXr -eoQ -eoQ +wpP +vTa +olx +tzB +rqd +rqd +wIB +rqd +rqd fBz rtc ehq @@ -168935,24 +169101,24 @@ fZI fZI fZI fZI -rKP -sjE -rIe -raI -lWC -sAH -dtw -dBh -qoJ +tcK +seN +bzz +cqv +qNZ +jiM +dvL +bGO +qtz fBz -aFg -nnc +nos +iDR cIP -rqq -dzS +jPX +ghk cIP -dzS -vhs +ghk +pFc jGp mCG uuD @@ -168960,15 +169126,15 @@ wUP sgi sgi jGp -pWt -ita -qCI -gzE -fYU -fYU -fYU -qkw -xxz +wpP +wXp +lsv +qzw +sCC +sCC +sCC +hiq +bUd fBz ajA mNQ @@ -169192,15 +169358,15 @@ fZI fZI fZI fZI -pDW -rAQ -ubj -lGf -hyU -bGT -tWh -jNq -jZy +dEE +nWV +rGg +esf +cMQ +vTW +gNP +vAG +ggz fBz fBz fBz @@ -169208,8 +169374,8 @@ fBz chV chV fBz -gBc -xrF +mjJ +pzV mln mln mln @@ -169217,15 +169383,15 @@ mln mln mln mln -tgc -afI -vAO -jaK -lNb -rVz -xtG -rVz -rVz +hth +xoA +cbK +tzB +cQU +jAE +vGk +jAE +jAE fBz dOm eLD @@ -169449,15 +169615,15 @@ fZI fZI fZI fZI -hJJ -vZt -xIb -ooh -uur -kxy -hmu -hmu -hmu +sZv +jMJ +tPq +pBl +jsS +ciC +fWC +fWC +fWC fBz fZI fZI @@ -169571,8 +169737,8 @@ iwN mpD tAy iwN -klO -ilJ +tAj +jOP aqq olO llO @@ -169706,12 +169872,12 @@ fZI fZI fZI fZI -pDW -iQv -tdH -aCD -gKf -hEX +dEE +ePh +vCK +eQz +bWq +joZ fZI fZI fZI @@ -169963,12 +170129,12 @@ fZI fZI fZI fZI -lSv -sZT -gcP -aCD -lFY -wxH +ais +pjj +aiw +eQz +aId +qZk iqz wQY qLU @@ -170086,7 +170252,7 @@ rfm mWW hCB eId -vqT +ixC kXP kXP uFh @@ -170220,12 +170386,12 @@ fZI fZI fZI fZI -lSv -sNl -tai -qKH -kpg -uEP +ais +cfO +scV +hKq +fRF +qgF fZI fZI fZI @@ -170344,7 +170510,7 @@ aAb iwN ahn ahn -adv +aFX dFQ ixC kXP @@ -170352,7 +170518,7 @@ xSK jec jNK uAS -adv +ykx ahn ahn gLc @@ -170477,12 +170643,12 @@ fZI fZI fZI fZI -lSv -lSv -nkn -nkn -lSv -lSv +ais +ais +rTq +rTq +ais +ais fZI fZI fZI @@ -212971,7 +213137,7 @@ rCV bcK ucm fjj -rCV +wGq bcK fic eVg @@ -217365,7 +217531,7 @@ dBJ tJS bGf aOY -qZR +uYq sCa adx pfs @@ -218415,14 +218581,14 @@ nYY bet rPv rmY -rjM +bvh ggt krV paj fwe ewU fDT -qGA +sWY nko oAL rLE @@ -218676,7 +218842,7 @@ vjJ czk fDT jwX -uzs +pcb krV fDT xhn @@ -218852,7 +219018,7 @@ rXp qsP gwW qsP -qsP +xuY neN hcL sIz @@ -219167,7 +219333,7 @@ hJR hJR hJR hJR -uIq +uJw aKI fQu hJR @@ -219355,7 +219521,7 @@ bbX xEE rdo iKj -qsP +ihe qsP qsP qsP @@ -219697,7 +219863,7 @@ snw gOs snw nYY -bRW +rNU vjJ lqt lqt @@ -219711,7 +219877,7 @@ mBc mOS oEB hWT -skq +tlW mzy qaH lXo @@ -219882,7 +220048,7 @@ jYP xai xai xai -hCo +foj sIz xFd cJU @@ -219960,7 +220126,7 @@ uTg cmJ kpH cWg -jUX +eBK rYe bSd fDT @@ -220195,7 +220361,7 @@ xwD lZX nLy hJR -uIq +nnj sXH etB vtz @@ -220466,7 +220632,7 @@ lMa gZO rFd nYY -qkI +voR fDT krV krV @@ -220903,7 +221069,7 @@ mMZ mMZ mMZ ccV -beF +sNV bZH eMw kus @@ -221751,7 +221917,7 @@ eKe qPf vxY pog -uqs +dzj pog byl hGm @@ -222514,11 +222680,11 @@ sFG iqZ mah mah -qBX +uDQ gpD wlu lEf -wmS +kzu geG vRO oWi @@ -223293,7 +223459,7 @@ pog vtk pog pog -qtl +uby pog byl mVo @@ -224321,7 +224487,7 @@ ofB ofB ofB ofB -rsK +rJg fDT gnn eax @@ -224582,7 +224748,7 @@ hXo fDT gDN jwX -eYw +oFM krV gDN fDT @@ -224590,7 +224756,7 @@ fDT fDT fDT fDT -mDg +huD fDT fDT fDT @@ -228864,7 +229030,7 @@ fUa gTZ gTZ aOC -toE +dEj uvY iZC gTZ @@ -231466,7 +231632,7 @@ lNi nNB fem hTD -hTD +sWQ iOb gzR tph @@ -231677,7 +231843,7 @@ eOw vzW kxk aFD -vhb +fmQ uhZ rOD uJF @@ -231998,7 +232164,7 @@ bcQ ybu dbM cFT -uAq +gjZ mJc bcQ bcQ @@ -234284,7 +234450,7 @@ sPm sPm sPm tff -dRn +kXC kys dRn dRn @@ -234808,7 +234974,7 @@ iWJ cGO nBU aEh -qma +eSf cmP hwO cEu @@ -236339,11 +236505,11 @@ tSL tSL sPm dZZ -tNy +rEF cmP cjk xlA -gpq +fFu cYe tOH ben @@ -236855,7 +237021,7 @@ sPm jky cWw uLA -was +xQJ vZN yiD iXD diff --git a/_maps/map_files/BoxStation/BoxStation.dmm b/_maps/map_files/BoxStation/BoxStation.dmm index b72b0be9d248..03125504e524 100644 --- a/_maps/map_files/BoxStation/BoxStation.dmm +++ b/_maps/map_files/BoxStation/BoxStation.dmm @@ -761,6 +761,25 @@ /obj/structure/cable, /turf/open/floor/wood, /area/station/command/heads_quarters/hop) +"aoI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_y = 6 + }, +/obj/item/clipboard{ + pixel_y = 6 + }, +/obj/item/folder/yellow{ + pixel_y = 6 + }, +/obj/item/paper/monitorkey, +/obj/item/pen{ + pixel_y = 4 + }, +/obj/item/stamp/head/ce, +/turf/open/floor/iron, +/area/station/command/heads_quarters/ce) "aoL" = ( /obj/effect/turf_decal/trimline/yellow/filled/warning{ dir = 8 @@ -2147,6 +2166,13 @@ }, /turf/open/floor/wood, /area/station/commons/dorms) +"aNl" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/stamp/head/hop, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/hop) "aNs" = ( /obj/machinery/light/small/directional/north, /obj/machinery/firealarm/directional/north, @@ -4583,23 +4609,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/security/courtroom) -"bBK" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/machinery/camera/autoname/directional/west, -/obj/machinery/light_switch/directional/west, -/obj/structure/rack, -/obj/item/storage/medkit/regular{ - pixel_x = 3; - pixel_y = 7 - }, -/obj/item/storage/medkit/regular{ - pixel_y = 3 - }, -/obj/item/storage/box/bodybags, -/turf/open/floor/iron/white, -/area/station/security/medical) "bBO" = ( /obj/effect/turf_decal/box/white{ color = "#EFB341" @@ -4620,12 +4629,6 @@ }, /turf/open/floor/iron/dark, /area/station/engineering/atmos/office) -"bBR" = ( -/obj/effect/turf_decal/stripes/end, -/obj/structure/window/reinforced/spawner/directional/east, -/obj/machinery/shower/directional/south, -/turf/open/floor/iron/white/textured, -/area/station/security/medical) "bCg" = ( /obj/machinery/light/small/built/directional/north, /obj/structure/toilet{ @@ -6713,7 +6716,7 @@ /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 1 }, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron/dark/side{ dir = 1 }, @@ -9105,23 +9108,6 @@ /obj/structure/cable, /turf/open/floor/iron/white, /area/station/medical/pharmacy) -"cYM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "testlab"; - name = "Xenobiology Secure Chamber Blast Door" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/machinery/door/window/left/directional/north{ - name = "Test Chamber"; - req_access = list("xenobiology") - }, -/obj/structure/liquid_barrier, -/turf/open/floor/engine, -/area/station/science/xenobiology) "cYN" = ( /obj/effect/turf_decal/tile/blue/fourcorners, /obj/machinery/airalarm/directional/west, @@ -9192,6 +9178,22 @@ /obj/structure/table/reinforced/plasmarglass, /turf/open/floor/iron/white, /area/station/science/xenobiology) +"cZM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/obj/structure/cable, +/obj/machinery/door/airlock/hatch{ + name = "Cytology Pen" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/obj/structure/liquid_barrier, +/turf/open/floor/engine, +/area/station/science/xenobiology) "cZU" = ( /obj/machinery/light/small/directional/west, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -11207,24 +11209,6 @@ /obj/effect/turf_decal/trimline/purple/filled/line, /turf/open/floor/iron/white, /area/station/science/research) -"dJA" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/obj/machinery/airalarm/directional/north, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/structure/table/reinforced/rglass, -/obj/item/reagent_containers/syringe{ - name = "steel point" - }, -/obj/item/clothing/mask/surgical, -/obj/item/reagent_containers/cup/bottle/epinephrine, -/obj/item/reagent_containers/cup/bottle/multiver, -/obj/item/clothing/neck/stethoscope, -/obj/item/clothing/gloves/latex, -/obj/item/reagent_containers/spray/cleaner, -/turf/open/floor/iron/white, -/area/station/security/medical) "dJV" = ( /obj/machinery/light/neon_lining{ dir = 8 @@ -12607,6 +12591,28 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/large, /area/station/commons/storage/primary) +"eji" = ( +/obj/machinery/status_display/supply{ + pixel_x = -32 + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/stamp/head/qm{ + pixel_x = 8; + pixel_y = 12 + }, +/obj/item/stamp{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/stamp/denied{ + pixel_x = 8 + }, +/turf/open/floor/wood, +/area/station/command/heads_quarters/qm) "ejt" = ( /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 1 @@ -16382,6 +16388,11 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/aft) +"fyK" = ( +/obj/structure/chair/office, +/obj/effect/landmark/start/brig_physician, +/turf/open/floor/iron/white, +/area/station/security/medical) "fyZ" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -16530,6 +16541,23 @@ /obj/machinery/holopad, /turf/open/floor/carpet, /area/station/service/library) +"fCd" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/west, +/obj/machinery/light_switch/directional/west, +/obj/structure/rack, +/obj/item/storage/medkit/regular{ + pixel_x = 3; + pixel_y = 7 + }, +/obj/item/storage/medkit/regular{ + pixel_y = 3 + }, +/obj/item/storage/box/bodybags, +/turf/open/floor/iron/white, +/area/station/security/medical) "fCw" = ( /obj/effect/spawner/random/structure/table, /obj/effect/spawner/random/entertainment/cigarette_pack, @@ -16945,6 +16973,12 @@ dir = 4 }, /area/station/service/janitor) +"fJr" = ( +/obj/effect/turf_decal/stripes/end, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/machinery/shower/directional/south, +/turf/open/floor/iron/white/textured, +/area/station/security/medical) "fJv" = ( /obj/structure/bed{ dir = 4 @@ -17451,22 +17485,6 @@ dir = 6 }, /area/station/cargo/sorting) -"fSG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/science/xenobio, -/obj/structure/liquid_barrier, -/turf/open/floor/plating, -/area/station/maintenance/department/science/xenobiology) "fSM" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/dark_blue{ @@ -17584,6 +17602,20 @@ /obj/machinery/newscaster/directional/north, /turf/open/floor/wood, /area/station/security/detectives_office) +"fVg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/science/xenobio, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/liquid_barrier, +/turf/open/floor/plating, +/area/station/maintenance/department/science/xenobiology) "fVh" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -18108,6 +18140,20 @@ /obj/item/crowbar/red, /turf/open/floor/iron/dark, /area/station/command/teleporter) +"gdF" = ( +/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/structure/cable, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/science/xenobio, +/obj/structure/liquid_barrier, +/turf/open/floor/plating, +/area/station/maintenance/department/science/xenobiology) "gea" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -18253,6 +18299,38 @@ }, /turf/open/floor/iron/white, /area/station/medical/medbay/central) +"ghn" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door_buttons/access_button{ + idDoor = "xeno_airlock_exterior"; + idSelf = "xeno_airlock_control"; + name = "Access Button"; + req_access = list("xenobiology"); + pixel_x = 24 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + autoclose = 0; + frequency = 1449; + id_tag = "xeno_airlock_exterior"; + name = "Xenobiology Lab External Airlock" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/obj/effect/mapping_helpers/airlock/locked, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/duct, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/liquid_barrier, +/turf/open/floor/iron/white/textured, +/area/station/science/xenobiology/hallway) "ghp" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -19951,6 +20029,15 @@ /obj/structure/cable, /turf/open/floor/iron/dark/smooth_large, /area/station/security/checkpoint/engineering) +"gIw" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/obj/structure/closet/secure_closet/brig_physician, +/obj/item/clothing/suit/jacket/straight_jacket, +/turf/open/floor/iron/white, +/area/station/security/medical) "gIy" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 8 @@ -23308,7 +23395,7 @@ dir = 1 }, /obj/effect/turf_decal/trimline/red/line, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron/dark, /area/station/hallway/secondary/entry) "hLW" = ( @@ -24398,11 +24485,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/department/engine) -"iiQ" = ( -/obj/structure/chair/office, -/obj/effect/landmark/start/brig_physician, -/turf/open/floor/iron/white, -/area/station/security/medical) "ija" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -25284,28 +25366,6 @@ }, /turf/open/floor/wood, /area/station/service/lawoffice) -"iue" = ( -/obj/machinery/status_display/supply{ - pixel_x = -32 - }, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 7 - }, -/obj/item/stamp/qm{ - pixel_x = 8; - pixel_y = 12 - }, -/obj/item/stamp{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/stamp/denied{ - pixel_x = 8 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/qm) "ium" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -27571,20 +27631,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/department/science/xenobiology) -"jhk" = ( -/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/structure/cable, -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/science/xenobio, -/obj/structure/liquid_barrier, -/turf/open/floor/plating, -/area/station/maintenance/department/science/xenobiology) "jhq" = ( /obj/structure/disposalpipe/segment{ dir = 6 @@ -28724,6 +28770,23 @@ }, /turf/open/floor/iron/dark, /area/station/hallway/primary/starboard) +"jCM" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/table, +/obj/item/folder/white, +/obj/item/folder/blue{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/folder/blue{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/item/stamp/head/cmo, +/turf/open/floor/iron/dark/side, +/area/station/command/heads_quarters/cmo) "jCP" = ( /obj/effect/turf_decal/trimline/red/filled/line, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -30065,6 +30128,24 @@ /obj/machinery/light/directional/east, /turf/open/floor/grass, /area/station/science/genetics) +"jYQ" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/machinery/airalarm/directional/north, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/structure/table/reinforced/rglass, +/obj/item/reagent_containers/syringe{ + name = "steel point" + }, +/obj/item/clothing/mask/surgical, +/obj/item/reagent_containers/cup/bottle/epinephrine, +/obj/item/reagent_containers/cup/bottle/multiver, +/obj/item/clothing/neck/stethoscope, +/obj/item/clothing/gloves/latex, +/obj/item/reagent_containers/spray/cleaner, +/turf/open/floor/iron/white, +/area/station/security/medical) "jZa" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 5 @@ -30871,20 +30952,6 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark, /area/station/hallway/primary/central) -"knW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/science/xenobio, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/liquid_barrier, -/turf/open/floor/plating, -/area/station/maintenance/department/science/xenobiology) "knX" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible, @@ -31822,7 +31889,7 @@ /area/station/hallway/primary/central) "kFc" = ( /obj/effect/turf_decal/tile/purple/fourcorners, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron/dark, /area/station/hallway/primary/starboard) "kFf" = ( @@ -32316,38 +32383,6 @@ /obj/effect/mapping_helpers/airlock/unres, /turf/open/floor/iron/dark/textured, /area/station/hallway/secondary/exit/departure_lounge) -"kNH" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door_buttons/access_button{ - idDoor = "xeno_airlock_exterior"; - idSelf = "xeno_airlock_control"; - name = "Access Button"; - req_access = list("xenobiology"); - pixel_x = 24 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - autoclose = 0; - frequency = 1449; - id_tag = "xeno_airlock_exterior"; - name = "Xenobiology Lab External Airlock" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/obj/effect/mapping_helpers/airlock/locked, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/duct, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/liquid_barrier, -/turf/open/floor/iron/white/textured, -/area/station/science/xenobiology/hallway) "kNJ" = ( /obj/structure/cable, /turf/open/floor/iron, @@ -33440,27 +33475,6 @@ }, /turf/open/floor/iron/dark, /area/station/ai_monitored/turret_protected/ai_upload) -"lfd" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/table/reinforced/rglass, -/obj/item/paper_bin{ - pixel_y = 6 - }, -/obj/item/folder/red{ - pixel_x = 3 - }, -/obj/item/folder/white{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/pen, -/obj/item/roller, -/turf/open/floor/iron/white, -/area/station/security/medical) "lfg" = ( /obj/effect/turf_decal/trimline/neutral/filled/warning{ dir = 4 @@ -35586,6 +35600,23 @@ /obj/machinery/power/energy_accumulator/tesla_coil, /turf/open/floor/plating, /area/station/engineering/main) +"lOq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/obj/structure/cable, +/obj/machinery/door/airlock/research/glass{ + name = "Kill Chamber"; + normalspeed = 0 + }, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/obj/structure/liquid_barrier, +/turf/open/floor/iron/freezer, +/area/station/science/xenobiology) "lOA" = ( /obj/effect/turf_decal/bot, /obj/machinery/navbeacon{ @@ -36694,26 +36725,6 @@ }, /turf/open/floor/iron/dark, /area/station/ai_monitored/turret_protected/aisat/foyer) -"mkx" = ( -/obj/structure/table/wood, -/obj/item/phone{ - pixel_x = -6; - pixel_y = 10 - }, -/obj/machinery/recharger{ - pixel_x = -4; - pixel_y = -1 - }, -/obj/item/paper_bin{ - pixel_y = 4; - pixel_x = 9 - }, -/obj/item/stamp/hos{ - pixel_x = 10; - pixel_y = 6 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hos) "mky" = ( /obj/effect/turf_decal/trimline/red/filled/warning, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -36801,6 +36812,22 @@ /obj/machinery/light/directional/south, /turf/open/floor/iron/dark, /area/station/security/prison/visit) +"mlw" = ( +/obj/machinery/requests_console/directional/west{ + anon_tips_receiver = 1; + assistance_requestable = 1; + department = "Captain's Desk"; + name = "Captain's Requests Console"; + can_send_announcements = 1 + }, +/obj/machinery/camera/autoname/directional/west, +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/folder/blue, +/obj/item/pen/fountain, +/obj/item/stamp/head/captain, +/turf/open/floor/wood, +/area/station/command/heads_quarters/captain) "mlJ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -37891,13 +37918,6 @@ /obj/machinery/light/directional/west, /turf/open/floor/iron, /area/station/hallway/primary/aft) -"mFi" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/defibrillator_mount/directional/south, -/obj/machinery/iv_drip, -/obj/item/reagent_containers/blood, -/turf/open/floor/iron/white, -/area/station/security/medical) "mFK" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /obj/effect/decal/cleanable/dirt, @@ -38073,6 +38093,22 @@ /obj/machinery/space_heater, /turf/open/floor/iron, /area/station/maintenance/disposal/incinerator) +"mJu" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_y = 5 + }, +/obj/item/folder/white{ + pixel_y = 7 + }, +/obj/item/pen{ + pixel_y = 7 + }, +/obj/item/stamp/head/rd{ + pixel_y = 10 + }, +/turf/open/floor/carpet/purple, +/area/station/command/heads_quarters/rd) "mJw" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -40042,7 +40078,7 @@ /area/station/hallway/primary/aft) "nrX" = ( /obj/machinery/light/small/directional/north, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /obj/structure/closet/secure_closet/personal, /turf/open/floor/iron/dark/side{ dir = 1 @@ -41845,6 +41881,26 @@ }, /turf/open/floor/iron/dark/textured, /area/station/science/robotics/mechbay) +"nVB" = ( +/obj/structure/table/wood, +/obj/item/phone{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/machinery/recharger{ + pixel_x = -4; + pixel_y = -1 + }, +/obj/item/paper_bin{ + pixel_y = 4; + pixel_x = 9 + }, +/obj/item/stamp/head/hos{ + pixel_x = 10; + pixel_y = 6 + }, +/turf/open/floor/wood, +/area/station/command/heads_quarters/hos) "nVC" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, @@ -42921,25 +42977,6 @@ /obj/machinery/photocopier, /turf/open/floor/wood, /area/station/service/library/lounge) -"ond" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_y = 6 - }, -/obj/item/clipboard{ - pixel_y = 6 - }, -/obj/item/folder/yellow{ - pixel_y = 6 - }, -/obj/item/paper/monitorkey, -/obj/item/pen{ - pixel_y = 4 - }, -/obj/item/stamp/ce, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) "one" = ( /obj/effect/turf_decal/trimline/red/filled/line, /obj/effect/turf_decal/trimline/red/line{ @@ -43729,7 +43766,7 @@ dir = 1 }, /obj/effect/turf_decal/trimline/dark_blue/line, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron/dark, /area/station/hallway/primary/central) "oAe" = ( @@ -45929,22 +45966,6 @@ }, /turf/open/floor/iron/white, /area/station/science/explab) -"poD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/obj/structure/cable, -/obj/machinery/door/airlock/hatch{ - name = "Cytology Pen" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/obj/structure/liquid_barrier, -/turf/open/floor/engine, -/area/station/science/xenobiology) "poG" = ( /turf/closed/wall/r_wall, /area/station/ai_monitored/command/nuke_storage) @@ -47108,23 +47129,6 @@ /obj/structure/sign/departments/botany/directional/south, /turf/open/floor/iron/dark, /area/station/hallway/primary/port) -"pHn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/structure/cable, -/obj/machinery/door/airlock/research/glass{ - name = "Kill Chamber"; - normalspeed = 0 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/obj/structure/liquid_barrier, -/turf/open/floor/iron/freezer, -/area/station/science/xenobiology) "pHr" = ( /obj/effect/turf_decal/box, /obj/machinery/holopad, @@ -47182,7 +47186,7 @@ dir = 1 }, /obj/machinery/light/directional/north, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /obj/effect/spawner/random/vending/colavend, /turf/open/floor/iron/dark, /area/station/hallway/secondary/exit/departure_lounge) @@ -48873,15 +48877,6 @@ }, /turf/open/floor/plating/airless, /area/space/nearstation) -"qph" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/obj/structure/closet/secure_closet/brig_physician, -/obj/item/clothing/suit/jacket/straight_jacket, -/turf/open/floor/iron/white, -/area/station/security/medical) "qpi" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -50498,6 +50493,15 @@ /obj/effect/mapping_helpers/airlock/access/all/engineering/ce, /turf/open/floor/iron/textured, /area/station/command/heads_quarters/ce) +"qSt" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, +/obj/structure/table/reinforced/rglass, +/obj/machinery/computer/records/medical/laptop, +/turf/open/floor/iron/white, +/area/station/security/medical) "qSw" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/structure/chair_flipped{ @@ -50978,6 +50982,20 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/maintenance/starboard/aft) +"rbO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/science/xenobio, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/liquid_barrier, +/turf/open/floor/plating, +/area/station/maintenance/department/science/xenobiology) "rbW" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 10 @@ -51942,6 +51960,27 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"rrs" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/table/reinforced/rglass, +/obj/item/paper_bin{ + pixel_y = 6 + }, +/obj/item/folder/red{ + pixel_x = 3 + }, +/obj/item/folder/white{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/pen, +/obj/item/roller, +/turf/open/floor/iron/white, +/area/station/security/medical) "rrv" = ( /mob/living/carbon/human/species/monkey, /turf/open/floor/grass, @@ -56582,7 +56621,7 @@ dir = 1 }, /obj/effect/turf_decal/trimline/yellow/line, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron, /area/station/hallway/primary/aft) "sWq" = ( @@ -57564,6 +57603,23 @@ /obj/effect/spawner/random/entertainment/money, /turf/open/floor/carpet/green, /area/station/maintenance/starboard/aft) +"tlI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "testlab"; + name = "Xenobiology Secure Chamber Blast Door" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/obj/machinery/door/window/left/directional/north{ + name = "Test Chamber"; + req_access = list("xenobiology") + }, +/obj/structure/liquid_barrier, +/turf/open/floor/engine, +/area/station/science/xenobiology) "tlO" = ( /turf/closed/wall/r_wall, /area/station/tcommsat/computer) @@ -58386,13 +58442,6 @@ /obj/machinery/disposal/bin, /turf/open/floor/iron, /area/station/science/ordnance/office) -"tyF" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/stamp/hop, -/turf/open/floor/carpet/royalblue, -/area/station/command/heads_quarters/hop) "tyG" = ( /obj/effect/turf_decal/trimline/blue/filled/line, /obj/machinery/airalarm/directional/south, @@ -59309,22 +59358,6 @@ /obj/item/disk/nuclear, /turf/open/floor/iron/dark, /area/station/command/bridge) -"tQH" = ( -/obj/machinery/requests_console/directional/west{ - anon_tips_receiver = 1; - assistance_requestable = 1; - department = "Captain's Desk"; - name = "Captain's Requests Console"; - can_send_announcements = 1 - }, -/obj/machinery/camera/autoname/directional/west, -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/folder/blue, -/obj/item/pen/fountain, -/obj/item/stamp/captain, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) "tQJ" = ( /obj/structure/disposalpipe/segment{ dir = 10 @@ -60869,6 +60902,22 @@ /obj/structure/cable, /turf/open/floor/wood, /area/station/service/library) +"upi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/science/xenobio, +/obj/structure/liquid_barrier, +/turf/open/floor/plating, +/area/station/maintenance/department/science/xenobiology) "upz" = ( /obj/effect/turf_decal/tile/blue/fourcorners, /obj/machinery/defibrillator_mount/directional/east, @@ -61794,20 +61843,6 @@ }, /turf/open/floor/iron, /area/station/command/heads_quarters/ce) -"uIQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/science/xenobio, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/liquid_barrier, -/turf/open/floor/plating, -/area/station/maintenance/department/science/xenobiology) "uJk" = ( /obj/effect/turf_decal/trimline/red/filled/line, /obj/machinery/button/door/directional/south{ @@ -63360,44 +63395,6 @@ }, /turf/open/floor/iron/dark, /area/station/security/brig/entrance) -"vhh" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/door_buttons/access_button{ - idDoor = "xeno_airlock_interior"; - idSelf = "xeno_airlock_control"; - name = "Access Button"; - pixel_x = -24; - pixel_y = -5; - req_access = list("xenobiology") - }, -/obj/machinery/door_buttons/airlock_controller{ - idExterior = "xeno_airlock_exterior"; - idInterior = "xeno_airlock_interior"; - idSelf = "xeno_airlock_control"; - name = "Access Console"; - pixel_x = 25; - req_access = list("xenobiology") - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - autoclose = 0; - frequency = 1449; - id_tag = "xeno_airlock_interior"; - name = "Xenobiology Lab Internal Airlock" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/obj/effect/mapping_helpers/airlock/locked, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/liquid_barrier, -/turf/open/floor/iron/white/textured, -/area/station/science/xenobiology/hallway) "vho" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -65308,23 +65305,6 @@ /obj/effect/spawner/random/structure/girder, /turf/open/floor/plating, /area/station/maintenance/department/security/brig) -"vPF" = ( -/obj/effect/turf_decal/tile/blue/fourcorners, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/table, -/obj/item/folder/white, -/obj/item/folder/blue{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/folder/blue{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/item/stamp/cmo, -/turf/open/floor/iron/dark/side, -/area/station/command/heads_quarters/cmo) "vPG" = ( /obj/structure/cable, /turf/open/floor/carpet/red, @@ -65560,22 +65540,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"vSA" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_y = 5 - }, -/obj/item/folder/white{ - pixel_y = 7 - }, -/obj/item/pen{ - pixel_y = 7 - }, -/obj/item/stamp/rd{ - pixel_y = 10 - }, -/turf/open/floor/carpet/purple, -/area/station/command/heads_quarters/rd) "vSE" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, @@ -67003,7 +66967,7 @@ /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 1 }, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron/dark, /area/station/hallway/primary/port) "wtt" = ( @@ -69479,6 +69443,44 @@ }, /turf/open/floor/iron, /area/station/command/gateway) +"xkI" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/door_buttons/access_button{ + idDoor = "xeno_airlock_interior"; + idSelf = "xeno_airlock_control"; + name = "Access Button"; + pixel_x = -24; + pixel_y = -5; + req_access = list("xenobiology") + }, +/obj/machinery/door_buttons/airlock_controller{ + idExterior = "xeno_airlock_exterior"; + idInterior = "xeno_airlock_interior"; + idSelf = "xeno_airlock_control"; + name = "Access Console"; + pixel_x = 25; + req_access = list("xenobiology") + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + autoclose = 0; + frequency = 1449; + id_tag = "xeno_airlock_interior"; + name = "Xenobiology Lab Internal Airlock" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/obj/effect/mapping_helpers/airlock/locked, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/liquid_barrier, +/turf/open/floor/iron/white/textured, +/area/station/science/xenobiology/hallway) "xkQ" = ( /obj/structure/closet/emcloset, /turf/open/floor/plating, @@ -69756,15 +69758,6 @@ /obj/machinery/recharge_station, /turf/open/floor/iron/dark, /area/station/ai_monitored/command/storage/eva) -"xqZ" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/item/radio/intercom/directional/north, -/obj/structure/table/reinforced/rglass, -/obj/machinery/computer/records/medical/laptop, -/turf/open/floor/iron/white, -/area/station/security/medical) "xrf" = ( /obj/structure/cable, /turf/open/floor/iron, @@ -70774,6 +70767,13 @@ }, /turf/open/floor/iron/white, /area/station/medical/patients_rooms/room_b) +"xHC" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/defibrillator_mount/directional/south, +/obj/machinery/iv_drip, +/obj/item/reagent_containers/blood, +/turf/open/floor/iron/white, +/area/station/security/medical) "xHH" = ( /obj/structure/chair/office/light, /obj/effect/landmark/start/chemist, @@ -84874,7 +84874,7 @@ bKO oIc fvH vyC -iue +eji suW boe wAR @@ -99201,9 +99201,9 @@ sUf qQg qow ait -dJA -qph -bBK +jYQ +gIw +fCd eaW ait xbP @@ -99266,7 +99266,7 @@ bxK tzm mqu qdk -tyF +aNl oJX aZW lFc @@ -99458,10 +99458,10 @@ twl qQg jTa ait -lfd +rrs pbF avB -mFi +xHC ait utj bYk @@ -99715,8 +99715,8 @@ lfi qQg uwf ait -xqZ -iiQ +qSt +fyK ezd msS ait @@ -99972,7 +99972,7 @@ twl qQg qVR ait -bBR +fJr vCs pLV oLJ @@ -101360,7 +101360,7 @@ eRr nVC kQz oJd -ond +aoI mdk qRR goC @@ -103370,7 +103370,7 @@ pDD qDK mUJ aUx -tQH +mlw vBp hDl trg @@ -104847,7 +104847,7 @@ xXP mrP pOC rQs -mkx +nVB uUq bLO mrP @@ -110288,7 +110288,7 @@ kaP qvC mkl gSE -vSA +mJu min cst qQz @@ -113653,7 +113653,7 @@ hTS tLN dWN ydu -vPF +jCM uwq rjn mHp @@ -114112,10 +114112,10 @@ cDv cDv cDv cDv -knW +rbO cDv owu -pHn +lOq owu wtF wtF @@ -114864,7 +114864,7 @@ cDv cDv cDv cDv -fSG +upi cDv cDv nBS @@ -115889,7 +115889,7 @@ dYt wpO uAP nYl -cYM +tlI rEL cmn kRS @@ -115916,11 +115916,11 @@ qjq rYV hyd nJb -vhh +xkI sos aEg aEg -kNH +ghn mvc saI dQL @@ -116920,7 +116920,7 @@ cDv cDv cDv cDv -jhk +gdF cDv cDv nBS @@ -117710,10 +117710,10 @@ cDv cDv cDv cDv -uIQ +fVg cDv owu -poD +cZM owu wtF wtF diff --git a/_maps/map_files/Deltastation/DeltaStation2.dmm b/_maps/map_files/Deltastation/DeltaStation2.dmm index 3d7fbcb2dd1c..2835d6b71a5a 100644 --- a/_maps/map_files/Deltastation/DeltaStation2.dmm +++ b/_maps/map_files/Deltastation/DeltaStation2.dmm @@ -1478,6 +1478,15 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/primary/port) +"aqC" = ( +/obj/structure/chair/sofa/bench{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/hot_pink/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/security/prison) "aqD" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -1779,6 +1788,16 @@ }, /turf/open/floor/iron/dark, /area/station/science/ordnance) +"atb" = ( +/obj/structure/chair/sofa/bench{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/hot_pink/filled/line{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/dark/herringbone, +/area/station/security/prison) "ath" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/structure/cable, @@ -2309,13 +2328,6 @@ /obj/effect/turf_decal/trimline/blue/filled/line, /turf/open/floor/iron/white, /area/station/medical/medbay) -"azu" = ( -/obj/effect/turf_decal/tile/hot_pink/anticorner/contrasted{ - dir = 1 - }, -/obj/item/training_toolbox, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison/workout) "azy" = ( /obj/effect/turf_decal/tile/yellow{ dir = 1 @@ -2361,20 +2373,6 @@ }, /turf/open/floor/iron, /area/station/security/processing) -"aAg" = ( -/obj/effect/turf_decal/trimline/neutral/warning{ - dir = 10 - }, -/obj/effect/turf_decal/trimline/neutral/mid_joiner{ - dir = 8 - }, -/obj/item/radio/intercom/directional/west, -/obj/effect/turf_decal/siding/dark_red, -/obj/machinery/duct, -/turf/open/floor/iron/dark/textured_half{ - dir = 1 - }, -/area/station/security/medical) "aAh" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -4020,15 +4018,6 @@ /obj/machinery/duct, /turf/open/floor/iron, /area/station/science/research) -"aUM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/chair/office{ - dir = 8 - }, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/security/office) "aUN" = ( /obj/structure/lattice/catwalk, /obj/item/toy/plush/space_lizard_plushie{ @@ -4715,13 +4704,6 @@ }, /turf/open/floor/iron, /area/station/cargo/quartermaster) -"bdH" = ( -/obj/effect/turf_decal/tile/red/half/contrasted, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/security/brig) "bdI" = ( /obj/effect/turf_decal/tile/purple/half/contrasted{ dir = 1 @@ -5486,6 +5468,33 @@ /obj/structure/window/reinforced/spawner/directional/west, /turf/open/space, /area/space/nearstation) +"bmR" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 9 + }, +/obj/structure/rack, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -6 + }, +/obj/item/book/manual/wiki/infections, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/syringe/antiviral, +/obj/item/reagent_containers/syringe/antiviral, +/obj/item/reagent_containers/cup/tube, +/obj/item/reagent_containers/cup/tube, +/obj/item/reagent_containers/cup/tube, +/obj/item/reagent_containers/cup/tube, +/obj/item/reagent_containers/cup/tube, +/obj/item/reagent_containers/cup/tube, +/obj/item/reagent_containers/cup/tube, +/obj/item/reagent_containers/cup/tube, +/obj/item/reagent_containers/cup/tube, +/obj/item/reagent_containers/cup/tube, +/obj/item/storage/box/monkeycubes/mousecubes, +/obj/item/storage/box/monkeycubes/mousecubes, +/obj/item/storage/box/monkeycubes/mousecubes, +/turf/open/floor/iron/white, +/area/station/medical/pathology) "bmU" = ( /obj/machinery/door/airlock/external{ name = "External Docking Port" @@ -5827,17 +5836,6 @@ "brb" = ( /turf/closed/wall, /area/station/service/chapel/funeral) -"brc" = ( -/obj/effect/turf_decal/trimline/hot_pink/filled/line{ - dir = 4 - }, -/obj/structure/chair/sofa/bench{ - dir = 8 - }, -/turf/open/floor/iron/dark/textured_edge{ - dir = 4 - }, -/area/station/security/prison/workout) "brl" = ( /obj/structure/cable, /obj/effect/turf_decal/stripes/line{ @@ -5858,6 +5856,17 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/herringbone, /area/station/security/prison) +"brJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/maintenance/department/security) "brQ" = ( /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 4 @@ -6311,31 +6320,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"bxj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "sci-toxins-passthrough" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/duct, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/landmark/navigate_destination, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Lab" - }, -/obj/effect/mapping_helpers/airlock/access/any/science/xenobio, -/obj/structure/cable, -/obj/structure/liquid_barrier, -/turf/open/floor/iron, -/area/station/science/xenobiology) "bxp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/item/shard, @@ -6713,6 +6697,13 @@ }, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/rd) +"bCg" = ( +/obj/effect/turf_decal/tile/red/half/contrasted, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/duct, +/turf/open/floor/iron, +/area/station/security/brig) "bCn" = ( /obj/effect/turf_decal/trimline/yellow/corner, /turf/open/floor/iron, @@ -7193,6 +7184,11 @@ /obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, /turf/open/floor/iron, /area/station/engineering/atmos/project) +"bGI" = ( +/obj/machinery/vending/wallmed/directional/north, +/obj/structure/table/optable, +/turf/open/floor/iron/dark, +/area/station/security/medical) "bGM" = ( /obj/effect/turf_decal/loading_area{ dir = 8 @@ -8657,6 +8653,13 @@ /obj/effect/turf_decal/tile/neutral/anticorner/contrasted, /turf/open/floor/iron, /area/station/hallway/primary/central/aft) +"bXh" = ( +/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, +/obj/machinery/duct, +/turf/open/floor/iron, +/area/station/security/brig) "bXl" = ( /obj/structure/window/reinforced/spawner/directional/south, /obj/structure/rack, @@ -9177,14 +9180,6 @@ "cdt" = ( /turf/closed/wall/r_wall, /area/station/ai_monitored/turret_protected/ai_upload) -"cdv" = ( -/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, -/obj/structure/cable, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/security/brig) "cdB" = ( /obj/structure/chair/sofa/bench/right{ dir = 1 @@ -9376,12 +9371,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/science/robotics/lab) -"cgA" = ( -/obj/effect/turf_decal/trimline/hot_pink/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison/workout) "cgH" = ( /obj/structure/table/wood/fancy, /obj/item/reagent_containers/cup/glass/bottle/holywater, @@ -9573,6 +9562,23 @@ /obj/item/radio/intercom/directional/south, /turf/open/floor/iron/dark, /area/station/medical/morgue) +"cjh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Xenobiology Lab" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/liquid_barrier, +/turf/open/floor/iron, +/area/station/science/xenobiology) "cjj" = ( /obj/structure/cable, /obj/machinery/door/firedoor, @@ -11116,6 +11122,17 @@ /obj/machinery/newscaster/directional/south, /turf/open/floor/iron, /area/station/engineering/main) +"cCp" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/item/folder/yellow, +/obj/item/folder/blue{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stamp/head/ce, +/turf/open/floor/iron, +/area/station/command/heads_quarters/ce) "cCw" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/yellow/anticorner/contrasted, @@ -12214,6 +12231,13 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, /area/station/maintenance/port/aft) +"cQa" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/duct, +/turf/open/floor/iron, +/area/station/security/brig) "cQh" = ( /obj/machinery/porta_turret/ai, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -12357,6 +12381,13 @@ }, /turf/open/floor/iron, /area/station/engineering/main) +"cSb" = ( +/obj/effect/turf_decal/tile/hot_pink/anticorner/contrasted{ + dir = 1 + }, +/obj/item/training_toolbox, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/workout) "cSm" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/red/half/contrasted{ @@ -13182,6 +13213,26 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/plating, /area/station/service/library/abandoned) +"ddp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/button/door/directional/north{ + id = "brigprison"; + name = "Prison Lockdown"; + req_access = list("brig_entrance") + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/security/execution/transfer) "dds" = ( /obj/machinery/camera/directional/east{ c_tag = "Virology - Break Room"; @@ -13280,7 +13331,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron, /area/station/hallway/secondary/command) "dep" = ( @@ -14006,25 +14057,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/engineering/atmos/project) -"dpB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/maintenance/department/security) "dpI" = ( /obj/structure/table, /obj/item/clothing/gloves/latex, @@ -14035,19 +14067,6 @@ }, /turf/open/floor/iron/white, /area/station/science/research) -"dpN" = ( -/obj/machinery/door/airlock/research/glass{ - name = "Xenobiology Kill Room" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, -/obj/structure/liquid_barrier, -/turf/open/floor/iron, -/area/station/science/xenobiology) "dpQ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/box, @@ -14093,16 +14112,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/station/maintenance/port/aft) -"dqr" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/radio/intercom/directional/north, -/obj/machinery/light/small/red/directional/north, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) "dqs" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -14863,23 +14872,6 @@ /obj/effect/landmark/start/prisoner, /turf/open/floor/iron/dark/side, /area/station/security/prison/workout) -"dAU" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Security Office" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/security/office) "dAX" = ( /obj/machinery/light/small/directional/west, /obj/structure/sign/poster/official/work_for_a_future{ @@ -14993,14 +14985,6 @@ /obj/structure/cable, /turf/open/floor/circuit, /area/station/ai_monitored/turret_protected/ai_upload) -"dBU" = ( -/obj/structure/table/wood, -/obj/item/radio/intercom/prison, -/obj/item/storage/box/lights/mixed{ - pixel_x = 7 - }, -/turf/open/floor/carpet/black, -/area/station/security/prison/mess) "dCd" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -15969,6 +15953,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/airless, /area/space/nearstation) +"dNu" = ( +/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/station/security/medical) "dNF" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -16260,6 +16250,15 @@ }, /turf/open/floor/iron/telecomms, /area/station/tcommsat/server) +"dRn" = ( +/obj/structure/cable, +/obj/machinery/holopad/secure, +/obj/effect/turf_decal/tile/neutral/full, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment, +/obj/machinery/duct, +/turf/open/floor/iron/large, +/area/station/security/brig) "dRo" = ( /obj/structure/chair/stool/bar/directional/south, /obj/effect/decal/cleanable/dirt, @@ -16715,6 +16714,12 @@ /obj/item/flashlight/lamp, /turf/open/floor/carpet, /area/station/service/library/abandoned) +"dXC" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/duct, +/turf/open/floor/iron, +/area/station/security/brig) "dXF" = ( /obj/structure/table/reinforced, /obj/machinery/light_switch/directional/south{ @@ -16873,7 +16878,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron, /area/station/hallway/secondary/entry) "dZD" = ( @@ -17497,20 +17502,6 @@ /obj/item/toy/figure/curator, /turf/open/floor/iron/dark, /area/station/service/library/printer) -"ehh" = ( -/obj/effect/turf_decal/trimline/neutral/warning{ - dir = 6 - }, -/obj/effect/turf_decal/trimline/neutral/mid_joiner{ - dir = 4 - }, -/obj/effect/turf_decal/siding/dark_red, -/obj/machinery/iv_drip, -/obj/item/reagent_containers/blood, -/turf/open/floor/iron/dark/textured_half{ - dir = 1 - }, -/area/station/security/medical) "ehj" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 4 @@ -18639,6 +18630,14 @@ }, /turf/open/floor/iron/white, /area/station/medical/chemistry) +"euh" = ( +/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/duct, +/turf/open/floor/iron, +/area/station/security/brig) "euk" = ( /obj/effect/turf_decal/tile/red{ dir = 8 @@ -19075,17 +19074,6 @@ }, /turf/open/floor/iron/white, /area/station/science/research) -"eAT" = ( -/obj/structure/cable, -/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, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/security/brig) "eAV" = ( /obj/structure/cable, /obj/effect/turf_decal/trimline/red/filled/line{ @@ -20063,6 +20051,15 @@ /obj/effect/spawner/random/structure/steam_vent, /turf/open/floor/plating, /area/station/maintenance/department/chapel) +"eMX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/obj/structure/chair/office, +/obj/effect/landmark/start/brig_physician, +/turf/open/floor/iron/white/side, +/area/station/security/medical) "eNd" = ( /obj/effect/landmark/start/hangover, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -20516,7 +20513,7 @@ dir = 4 }, /obj/machinery/status_display/ai/directional/north, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron/cafeteria, /area/station/service/cafeteria) "eSq" = ( @@ -20905,6 +20902,20 @@ /obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, /turf/open/floor/iron, /area/station/engineering/atmos/project) +"eWX" = ( +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/neutral/mid_joiner{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/siding/dark_red, +/obj/machinery/duct, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/security/medical) "eXf" = ( /obj/structure/cable, /obj/structure/chair/comfy/brown{ @@ -21026,19 +21037,6 @@ }, /turf/open/floor/iron/dark, /area/station/engineering/atmos/storage) -"eYB" = ( -/obj/item/kirbyplants/random, -/obj/structure/sign/warning/pods/directional/south{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) "eYG" = ( /obj/machinery/shower/directional/west{ name = "emergency shower" @@ -21579,6 +21577,20 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, /area/station/engineering/supermatter/room) +"feQ" = ( +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/neutral/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark_red, +/obj/machinery/iv_drip, +/obj/item/reagent_containers/blood, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/security/medical) "feS" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -22662,17 +22674,6 @@ }, /turf/open/floor/iron/dark/herringbone, /area/station/security/prison) -"fsb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/turf/open/floor/plating, -/area/station/maintenance/department/security) "fse" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 8 @@ -23570,6 +23571,11 @@ /obj/structure/lattice/catwalk, /turf/open/space/basic, /area/space/nearstation) +"fBH" = ( +/obj/effect/turf_decal/stripes/end, +/obj/machinery/shower/directional/south, +/turf/open/floor/iron/white/textured, +/area/station/security/medical) "fBK" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/effect/decal/cleanable/dirt, @@ -23844,6 +23850,15 @@ /obj/structure/extinguisher_cabinet/directional/south, /turf/open/floor/iron/cafeteria, /area/station/service/kitchen) +"fGx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/chair/office{ + dir = 8 + }, +/obj/machinery/duct, +/turf/open/floor/iron, +/area/station/security/office) "fGD" = ( /obj/machinery/light/directional/south, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -24558,15 +24573,6 @@ }, /turf/open/floor/carpet/green, /area/station/service/library) -"fPB" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/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, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/security/brig) "fPJ" = ( /obj/machinery/status_display/ai/directional/north, /obj/machinery/firealarm/directional/east, @@ -24987,6 +24993,12 @@ /obj/item/reagent_containers/dropper, /turf/open/floor/iron/dark, /area/station/medical/chemistry) +"fUZ" = ( +/obj/effect/turf_decal/siding/dark_red, +/obj/machinery/defibrillator_mount/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark, +/area/station/security/medical) "fVa" = ( /obj/effect/turf_decal/stripes/red/line{ dir = 9 @@ -25681,25 +25693,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/medbay) -"gdU" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 5 - }, -/obj/item/pen{ - pixel_x = -6; - pixel_y = 5 - }, -/obj/item/storage/dice{ - pixel_y = 1; - pixel_x = -2 - }, -/obj/item/toy/plush/lizard_plushie{ - pixel_x = 7 - }, -/turf/open/floor/carpet/black, -/area/station/security/prison/mess) "gee" = ( /obj/structure/sign/painting/library{ pixel_y = -32 @@ -25952,14 +25945,6 @@ }, /turf/open/floor/iron/dark, /area/station/security/courtroom) -"ggk" = ( -/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/duct, -/turf/open/floor/iron, -/area/station/security/brig) "ggu" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -26114,6 +26099,18 @@ /obj/item/taperecorder, /turf/open/floor/iron/grimy, /area/station/command/bridge) +"giN" = ( +/obj/effect/turf_decal/trimline/hot_pink/filled/line{ + dir = 4 + }, +/obj/structure/sign/poster/random/directional/east, +/obj/structure/chair/sofa/bench{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/security/prison/workout) "giP" = ( /obj/item/radio/intercom/prison/directional/east, /turf/open/floor/iron/showroomfloor, @@ -26807,18 +26804,6 @@ }, /turf/open/floor/iron/dark, /area/station/security/brig) -"grh" = ( -/obj/structure/sink/directional/south{ - dir = 8; - pixel_x = 14; - pixel_y = 0 - }, -/obj/structure/mirror/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/ghost_critter_spawn, -/turf/open/floor/wood/parquet, -/area/station/security/prison/safe) "gri" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -27516,6 +27501,15 @@ }, /turf/open/floor/engine, /area/station/science/xenobiology) +"gyV" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/duct, +/turf/open/floor/iron, +/area/station/security/brig) "gyW" = ( /obj/structure/cable, /obj/effect/turf_decal/siding/wood/corner{ @@ -27707,15 +27701,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white/side, /area/station/science/research) -"gBw" = ( -/obj/structure/cable, -/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, -/obj/structure/disposalpipe/segment, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/security/brig) "gBx" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -27924,6 +27909,16 @@ /obj/structure/displaycase_chassis, /turf/open/floor/wood/large, /area/station/service/library/abandoned) +"gDU" = ( +/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/machinery/duct, +/turf/open/floor/iron, +/area/station/security/office) "gDV" = ( /turf/closed/wall, /area/station/service/library/lounge) @@ -28490,13 +28485,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/solars/port/fore) -"gKU" = ( -/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, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/security/brig) "gKW" = ( /obj/machinery/portable_atmospherics/canister, /obj/machinery/atmospherics/components/unary/portables_connector/visible{ @@ -28877,6 +28865,23 @@ }, /turf/open/floor/iron, /area/station/security/checkpoint/supply) +"gPN" = ( +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/mid_joiner{ + dir = 4 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Security - Medbay" + }, +/obj/structure/bodycontainer/morgue{ + dir = 2 + }, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/security/medical) "gPO" = ( /obj/structure/table/reinforced, /obj/item/flashlight/lamp/green, @@ -29342,12 +29347,9 @@ }, /turf/open/floor/iron, /area/station/service/kitchen/abandoned) -"gWc" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags, -/obj/item/pen, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 +"gWj" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 }, /turf/open/floor/iron, /area/station/security/execution/transfer) @@ -30055,17 +30057,6 @@ /obj/effect/turf_decal/trimline/neutral, /turf/open/floor/iron/dark, /area/station/medical/pharmacy) -"hfi" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: BLAST DOORS"; - pixel_y = 32 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) "hfk" = ( /obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ dir = 1 @@ -30241,15 +30232,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/security/execution/education) -"hhq" = ( -/obj/structure/chair/sofa/bench{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/hot_pink/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/dark/herringbone, -/area/station/security/prison) "hhB" = ( /obj/structure/table/reinforced, /obj/machinery/light/directional/east, @@ -30324,15 +30306,6 @@ }, /turf/open/floor/iron/white, /area/station/science/research) -"hit" = ( -/obj/structure/cable, -/obj/machinery/holopad/secure, -/obj/effect/turf_decal/tile/neutral/full, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/segment, -/obj/machinery/duct, -/turf/open/floor/iron/large, -/area/station/security/brig) "hiy" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/newscaster/directional/east, @@ -30573,15 +30546,6 @@ /obj/effect/turf_decal/tile/neutral/full, /turf/open/floor/iron/dark/smooth_large, /area/station/security/checkpoint/customs/aft) -"hlk" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/maintenance/department/security) "hlv" = ( /obj/effect/turf_decal/tile/purple/half/contrasted{ dir = 4 @@ -30854,6 +30818,21 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, /area/station/medical/cryo) +"hoy" = ( +/obj/machinery/light_switch/directional/east, +/obj/machinery/firealarm/directional/east{ + pixel_x = 38 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/obj/structure/closet/secure_closet/brig_physician, +/obj/item/clothing/suit/jacket/straight_jacket, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/side{ + dir = 8 + }, +/area/station/security/medical) "hoz" = ( /obj/effect/turf_decal/tile/brown, /obj/effect/decal/cleanable/dirt, @@ -30936,6 +30915,15 @@ }, /turf/open/floor/iron/dark, /area/station/science/research) +"hpF" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/turf/open/floor/iron, +/area/station/maintenance/department/security) "hpG" = ( /obj/machinery/light/directional/south, /obj/effect/turf_decal/stripes/corner{ @@ -30996,24 +30984,6 @@ }, /turf/open/floor/iron/dark, /area/station/engineering/transit_tube) -"hrq" = ( -/obj/structure/table/wood, -/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/item/clipboard, -/obj/item/pen/red{ - pixel_x = 1 - }, -/obj/item/stamp/hos{ - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/iron/grimy, -/area/station/command/heads_quarters/hos) "hrs" = ( /obj/structure/lattice, /obj/structure/sign/warning/secure_area/directional/north, @@ -31029,6 +30999,16 @@ /obj/machinery/newscaster/directional/north, /turf/open/floor/wood, /area/station/maintenance/starboard/aft) +"hrC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral/full, +/obj/machinery/duct, +/turf/open/floor/iron/large, +/area/station/security/brig) "hrG" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -32547,17 +32527,6 @@ /obj/effect/turf_decal/bot_red, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/hos) -"hMm" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/poddoor/preopen{ - id = "brigprison"; - name = "Prison Blast Door" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/security/execution/transfer) "hMn" = ( /obj/machinery/mineral/stacking_unit_console{ pixel_x = 32 @@ -32857,6 +32826,14 @@ }, /turf/open/floor/iron, /area/station/cargo/storage) +"hQn" = ( +/obj/structure/table, +/obj/item/restraints/handcuffs, +/obj/item/clothing/suit/armor/vest, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red/half/contrasted, +/turf/open/floor/iron, +/area/station/security/execution/transfer) "hQq" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -33142,6 +33119,21 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/carpet/black, /area/station/security/prison/mess) +"hTF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Security Maintenance" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/machinery/duct, +/turf/open/floor/iron, +/area/station/security/brig) "hTR" = ( /obj/structure/closet/crate/coffin, /obj/effect/decal/cleanable/cobweb/cobweb2, @@ -33373,14 +33365,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/security/checkpoint/customs/aft) -"hWN" = ( -/obj/structure/table, -/obj/item/restraints/handcuffs, -/obj/item/clothing/suit/armor/vest, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron, -/area/station/security/execution/transfer) "hWP" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -33705,12 +33689,6 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark, /area/station/commons/fitness/recreation) -"iam" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) "iao" = ( /obj/effect/turf_decal/tile/purple/half/contrasted{ dir = 8 @@ -35116,7 +35094,7 @@ /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 }, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron/white, /area/station/medical/medbay/lobby) "ipN" = ( @@ -35129,21 +35107,6 @@ "ipQ" = ( /turf/closed/wall, /area/station/command/bridge) -"ipW" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Infirmary" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/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/machinery/duct, -/turf/open/floor/iron, -/area/station/security/medical) "iqa" = ( /obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, /obj/machinery/airalarm/directional/east, @@ -36080,12 +36043,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/maintenance/port/aft) -"iBB" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white, -/obj/item/stamp/rd, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/rd) "iBO" = ( /obj/machinery/power/turbine/inlet_compressor, /turf/open/floor/engine, @@ -36114,7 +36071,7 @@ /obj/effect/turf_decal/trimline/hot_pink/filled/line{ dir = 1 }, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron/dark/textured_edge{ dir = 1 }, @@ -36835,16 +36792,6 @@ /obj/effect/turf_decal/tile/blue/half/contrasted, /turf/open/floor/iron/dark, /area/station/command/bridge) -"iMh" = ( -/obj/effect/mapping_helpers/airalarm/engine_access, -/obj/machinery/incident_display/delam/directional/west, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Gas to Chamber" - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/engine, -/area/station/engineering/supermatter) "iMp" = ( /obj/structure/cable, /obj/machinery/airalarm/directional/east, @@ -37125,6 +37072,16 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron, /area/station/maintenance/fore) +"iPO" = ( +/obj/structure/closet/secure_closet/brig{ + name = "Prisoner Locker" + }, +/obj/machinery/status_display/ai/directional/south, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/bot, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) "iQf" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/turf_decal/siding/wood/corner, @@ -37364,6 +37321,26 @@ /obj/machinery/firealarm/directional/north, /turf/open/floor/iron, /area/station/hallway/primary/starboard) +"iSY" = ( +/obj/machinery/door/airlock/security{ + name = "Brig" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/poster/official/nanotrasen_logo{ + pixel_x = -32 + }, +/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/access/all/security/general, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/firedoor, +/obj/machinery/duct, +/turf/open/floor/iron, +/area/station/security/brig) "iTi" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/neutral/half/contrasted{ @@ -37768,6 +37745,15 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/station/engineering/storage/tech) +"iZc" = ( +/obj/structure/table, +/obj/item/storage/box/bodybags, +/obj/item/pen, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/security/execution/transfer) "iZf" = ( /obj/effect/turf_decal/tile/yellow/fourcorners, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -38224,6 +38210,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/security/checkpoint/escape) +"jdx" = ( +/obj/machinery/door/poddoor/preopen{ + id = "brigprison"; + name = "Prison Blast Door" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/station/security/execution/transfer) "jdB" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/turf_decal/siding/yellow/corner{ @@ -38331,6 +38325,11 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/dark, /area/station/command/bridge) +"jeG" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/sign/warning/secure_area/directional/south, +/turf/open/floor/iron, +/area/station/security/execution/transfer) "jeI" = ( /obj/structure/sign/nanotrasen{ pixel_x = -32; @@ -38925,6 +38924,16 @@ /obj/structure/chair/stool/bar/directional/west, /turf/open/floor/iron/cafeteria, /area/station/service/cafeteria) +"jlb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/landmark/start/prisoner, +/obj/structure/chair/sofa/bench{ + dir = 8 + }, +/turf/open/floor/carpet/donk, +/area/station/security/prison/safe) "jll" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/effect/turf_decal/bot, @@ -40026,6 +40035,25 @@ /obj/machinery/airalarm/directional/north, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"jzs" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/pen{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/storage/dice{ + pixel_y = 1; + pixel_x = -2 + }, +/obj/item/toy/plush/lizard_plushie{ + pixel_x = 7 + }, +/turf/open/floor/carpet/black, +/area/station/security/prison/mess) "jzt" = ( /obj/structure/table/wood, /obj/item/paper_bin/construction, @@ -40740,6 +40768,20 @@ /obj/effect/turf_decal/trimline/yellow/filled/line, /turf/open/floor/iron, /area/station/engineering/atmos) +"jGU" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/bodybags{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/prisoner, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) "jGX" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/stripes/line{ @@ -41238,10 +41280,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"jNH" = ( -/obj/effect/turf_decal/siding/dark_red, -/turf/open/floor/iron/dark, -/area/station/security/medical) "jNM" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -41317,6 +41355,23 @@ /obj/machinery/newscaster/directional/south, /turf/open/floor/iron, /area/station/science/research/abandoned) +"jOW" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/obj/structure/table/reinforced/rglass, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/item/roller, +/obj/item/clothing/neck/stethoscope, +/obj/machinery/duct, +/turf/open/floor/iron/white/side{ + dir = 4 + }, +/area/station/security/medical) "jOY" = ( /obj/structure/window/reinforced/spawner/directional/north, /obj/structure/lattice, @@ -41701,6 +41756,15 @@ }, /turf/open/floor/plating, /area/station/maintenance/solars/starboard/fore) +"jSG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/landmark/start/hangover, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/incident_display/delam/directional/north, +/turf/open/floor/iron, +/area/station/engineering/break_room) "jSH" = ( /obj/structure/disposalpipe/junction{ dir = 1 @@ -43452,6 +43516,17 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, /area/station/hallway/primary/central/fore) +"klV" = ( +/obj/effect/turf_decal/trimline/hot_pink/filled/line{ + dir = 4 + }, +/obj/structure/chair/sofa/bench{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/security/prison/workout) "kmb" = ( /obj/structure/cable, /obj/machinery/computer/security{ @@ -43552,13 +43627,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/fore) -"knL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/security/brig) "knP" = ( /obj/structure/chair{ dir = 8 @@ -43590,12 +43658,6 @@ /obj/effect/mapping_helpers/burnt_floor, /turf/open/floor/plating, /area/station/maintenance/department/science) -"koe" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) "kol" = ( /obj/effect/turf_decal/tile/yellow{ dir = 1 @@ -43752,6 +43814,24 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/disposal) +"kqT" = ( +/obj/structure/table/wood, +/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/item/clipboard, +/obj/item/pen/red{ + pixel_x = 1 + }, +/obj/item/stamp/head/hos{ + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/iron/grimy, +/area/station/command/heads_quarters/hos) "kri" = ( /obj/effect/spawner/random/structure/tank_holder, /turf/open/floor/plating, @@ -44294,6 +44374,17 @@ }, /turf/open/floor/iron, /area/station/commons/lounge) +"kyu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: BLAST DOORS"; + pixel_y = 32 + }, +/turf/open/floor/iron, +/area/station/security/execution/transfer) "kyx" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ @@ -44333,15 +44424,6 @@ /obj/structure/sign/warning/fire/directional/east, /turf/open/floor/iron, /area/station/engineering/main) -"kyK" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/full, -/obj/machinery/duct, -/turf/open/floor/iron/large, -/area/station/security/brig) "kyR" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/blue, @@ -45399,15 +45481,6 @@ }, /turf/open/floor/iron, /area/station/security/processing) -"kMz" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/security/brig) "kMI" = ( /obj/structure/table/reinforced, /obj/effect/decal/cleanable/dirt, @@ -45685,6 +45758,17 @@ }, /turf/open/floor/carpet/black, /area/station/security/prison/mess) +"kPY" = ( +/obj/effect/turf_decal/trimline/hot_pink/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/hot_pink/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/workout) "kQr" = ( /obj/effect/spawner/random/engineering/atmospherics_portable, /obj/effect/turf_decal/bot, @@ -46896,6 +46980,15 @@ "leE" = ( /turf/closed/wall/r_wall, /area/station/engineering/storage_shared) +"leP" = ( +/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/neutral/half/contrasted, +/obj/machinery/duct, +/turf/open/floor/iron, +/area/station/security/office) "leU" = ( /obj/machinery/duct, /obj/effect/decal/cleanable/dirt, @@ -47102,6 +47195,16 @@ }, /turf/open/floor/wood, /area/station/service/lawoffice) +"lhq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/radio/intercom/directional/north, +/obj/machinery/light/small/red/directional/north, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/security/execution/transfer) "lhC" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 @@ -47535,11 +47638,6 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/iron, /area/station/hallway/primary/central/aft) -"lnf" = ( -/obj/machinery/vending/wallmed/directional/north, -/obj/structure/table/optable, -/turf/open/floor/iron/dark, -/area/station/security/medical) "lnm" = ( /obj/structure/closet/secure_closet/captains, /obj/effect/turf_decal/stripes/line{ @@ -47735,6 +47833,12 @@ /obj/item/clothing/mask/gas/sechailer, /turf/open/floor/iron/dark, /area/station/security/office) +"lpW" = ( +/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/station/security/execution/transfer) "lpY" = ( /obj/structure/table/reinforced, /obj/machinery/light_switch/directional/east, @@ -47819,14 +47923,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/department/chapel) -"lrs" = ( -/obj/machinery/door/poddoor/preopen{ - id = "brigprison"; - name = "Prison Blast Door" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plating, -/area/station/security/execution/transfer) "lrA" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -47876,13 +47972,6 @@ /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood, /area/station/service/library) -"lsd" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/security/brig) "lsf" = ( /obj/machinery/light/small/directional/north, /obj/effect/decal/cleanable/dirt, @@ -48326,17 +48415,6 @@ /obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/iron/dark, /area/station/engineering/storage/tech) -"lwM" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/item/folder/yellow, -/obj/item/folder/blue{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stamp/ce, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) "lwN" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -49024,6 +49102,14 @@ dir = 4 }, /area/station/maintenance/department/electrical) +"lFi" = ( +/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, +/obj/structure/cable, +/obj/machinery/duct, +/turf/open/floor/iron, +/area/station/security/brig) "lFl" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/stripes/line{ @@ -49040,6 +49126,18 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/maintenance/port) +"lFp" = ( +/obj/effect/turf_decal/trimline/hot_pink/filled/line{ + dir = 4 + }, +/obj/item/radio/intercom/prison/directional/east, +/obj/structure/chair/sofa/bench{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/security/prison/workout) "lFs" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line{ @@ -49449,6 +49547,13 @@ /obj/structure/tank_holder/extinguisher, /turf/open/floor/iron, /area/station/medical/pharmacy) +"lKa" = ( +/obj/effect/turf_decal/trimline/hot_pink/filled, +/obj/structure/weightmachine/weightlifter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/workout) "lKd" = ( /obj/structure/table/reinforced, /obj/item/reagent_containers/condiment/saltshaker{ @@ -49603,6 +49708,23 @@ }, /turf/open/floor/engine/plasma, /area/station/engineering/atmos) +"lKV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Security Office" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/duct, +/turf/open/floor/iron, +/area/station/security/office) "lLy" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -49827,16 +49949,6 @@ /obj/structure/sign/warning/no_smoking/directional/east, /turf/open/floor/iron/dark, /area/station/science/ordnance) -"lOD" = ( -/obj/structure/closet/secure_closet/brig{ - name = "Prisoner Locker" - }, -/obj/machinery/status_display/ai/directional/south, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/bot, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) "lOG" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -49905,7 +50017,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron, /area/station/hallway/primary/fore) "lPs" = ( @@ -50269,14 +50381,6 @@ /obj/effect/landmark/start/prisoner, /turf/open/floor/iron/freezer, /area/station/security/prison/safe) -"lSP" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) "lTg" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/red{ @@ -51045,16 +51149,6 @@ /obj/structure/cable, /turf/open/floor/iron/large, /area/station/security/brig) -"meV" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/table, -/obj/item/folder/yellow, -/obj/item/stamp/qm, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/quartermaster) "meW" = ( /obj/machinery/light/small/directional/south, /obj/effect/turf_decal/tile/green, @@ -51575,6 +51669,16 @@ }, /turf/open/floor/engine, /area/station/science/research) +"mmh" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/full, +/obj/machinery/duct, +/turf/open/floor/iron/large, +/area/station/security/brig) "mmj" = ( /obj/machinery/computer/prisoner/management{ dir = 8 @@ -51910,15 +52014,6 @@ }, /turf/open/floor/iron/dark, /area/station/commons/fitness/recreation) -"mpX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/security/office) "mqb" = ( /obj/machinery/door/morgue{ name = "Confession Booth"; @@ -52675,33 +52770,6 @@ /obj/machinery/airalarm/directional/south, /turf/open/floor/iron/dark, /area/station/science/breakroom) -"mzp" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 9 - }, -/obj/structure/rack, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -6 - }, -/obj/item/book/manual/wiki/infections, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/syringe/antiviral, -/obj/item/reagent_containers/syringe/antiviral, -/obj/item/reagent_containers/cup/tube, -/obj/item/reagent_containers/cup/tube, -/obj/item/reagent_containers/cup/tube, -/obj/item/reagent_containers/cup/tube, -/obj/item/reagent_containers/cup/tube, -/obj/item/reagent_containers/cup/tube, -/obj/item/reagent_containers/cup/tube, -/obj/item/reagent_containers/cup/tube, -/obj/item/reagent_containers/cup/tube, -/obj/item/reagent_containers/cup/tube, -/obj/item/storage/box/monkeycubes/mousecubes, -/obj/item/storage/box/monkeycubes/mousecubes, -/obj/item/storage/box/monkeycubes/mousecubes, -/turf/open/floor/iron/white, -/area/station/medical/pathology) "mzu" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -53106,15 +53174,6 @@ /obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron, /area/station/service/kitchen/abandoned) -"mDJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/landmark/start/hangover, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/incident_display/delam/directional/north, -/turf/open/floor/iron, -/area/station/engineering/break_room) "mDO" = ( /obj/machinery/door/airlock/glass_large{ name = "Laundromat" @@ -54422,6 +54481,18 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark/herringbone, /area/station/security/prison) +"mSb" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/machinery/light/cold/directional/west, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 1 + }, +/obj/machinery/computer/records/medical/laptop, +/obj/structure/table/reinforced/rglass, +/obj/machinery/duct, +/turf/open/floor/iron/white/corner, +/area/station/security/medical) "mSe" = ( /turf/closed/wall/r_wall, /area/station/security/prison/safe) @@ -55083,6 +55154,19 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/security/warden) +"nbs" = ( +/obj/structure/table/wood, +/obj/item/paper_bin/carbon, +/obj/item/stamp/head/hop, +/obj/machinery/requests_console/directional/north{ + anon_tips_receiver = 1; + assistance_requestable = 1; + department = "Head of Personnel's Desk"; + name = "Head of Personnel's Requests Console"; + can_send_announcements = 1 + }, +/turf/open/floor/wood, +/area/station/command/heads_quarters/hop) "nbv" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 @@ -55828,6 +55912,16 @@ }, /turf/open/floor/iron/white, /area/station/science/lobby) +"nlM" = ( +/obj/effect/mapping_helpers/airalarm/engine_access, +/obj/machinery/incident_display/delam/directional/west, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Gas to Chamber" + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/engine, +/area/station/engineering/supermatter) "nlS" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, @@ -56140,11 +56234,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/cafeteria, /area/station/service/kitchen) -"npR" = ( -/obj/machinery/status_display/ai/directional/north, -/obj/machinery/computer/operating, -/turf/open/floor/iron/dark, -/area/station/security/medical) "npZ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/brown/half/contrasted{ @@ -56160,13 +56249,6 @@ }, /turf/open/floor/iron/dark, /area/station/command/corporate_showroom) -"nqi" = ( -/obj/effect/turf_decal/trimline/hot_pink/filled, -/obj/structure/weightmachine/weightlifter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison/workout) "nqk" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -56248,21 +56330,6 @@ }, /turf/open/floor/iron, /area/station/cargo/storage) -"nrN" = ( -/obj/machinery/light_switch/directional/east, -/obj/machinery/firealarm/directional/east{ - pixel_x = 38 - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/obj/structure/closet/secure_closet/brig_physician, -/obj/item/clothing/suit/jacket/straight_jacket, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white/side{ - dir = 8 - }, -/area/station/security/medical) "nsd" = ( /obj/structure/table, /obj/item/rcl/pre_loaded, @@ -57351,19 +57418,6 @@ /obj/structure/sign/departments/xenobio/directional/east, /turf/open/floor/iron, /area/station/maintenance/department/science) -"nFj" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/blue/opposingcorners, -/obj/item/paper_bin, -/obj/item/stamp/cmo, -/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, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) "nFq" = ( /obj/machinery/computer/warrant{ dir = 1 @@ -59130,6 +59184,12 @@ }, /turf/open/floor/iron, /area/station/engineering/lobby) +"ocs" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/security/execution/transfer) "ocx" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Teleporter Maintenance" @@ -59252,16 +59312,6 @@ /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plating/airless, /area/station/science/ordnance/bomb) -"oeq" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 5 - }, -/obj/effect/landmark/start/prisoner, -/obj/structure/chair/sofa/bench{ - dir = 8 - }, -/turf/open/floor/carpet/donk, -/area/station/security/prison/safe) "oez" = ( /obj/machinery/recharge_station, /obj/effect/landmark/start/hangover, @@ -59424,6 +59474,21 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/security/checkpoint/arrivals) +"ogh" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Infirmary" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/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/machinery/duct, +/turf/open/floor/iron, +/area/station/security/medical) "ogj" = ( /obj/effect/turf_decal/tile/yellow/half/contrasted{ dir = 8 @@ -60051,6 +60116,19 @@ /obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/iron/dark, /area/station/science/ordnance/testlab) +"onu" = ( +/obj/item/kirbyplants/random, +/obj/structure/sign/warning/pods/directional/south{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/security/execution/transfer) "onK" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -60337,6 +60415,25 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/central/aft) +"orQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/duct, +/turf/open/floor/iron, +/area/station/maintenance/department/security) "orR" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -60738,6 +60835,13 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/white, /area/station/medical/medbay) +"oyY" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/duct, +/turf/open/floor/iron, +/area/station/security/brig) "ozm" = ( /obj/structure/tank_holder/extinguisher, /obj/effect/turf_decal/tile/red, @@ -60926,6 +61030,14 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/station/engineering/main) +"oAV" = ( +/obj/structure/table/wood, +/obj/item/radio/intercom/prison, +/obj/item/storage/box/lights/mixed{ + pixel_x = 7 + }, +/turf/open/floor/carpet/black, +/area/station/security/prison/mess) "oAW" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -61401,18 +61513,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"oHf" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/disposalpipe/segment, -/obj/machinery/duct, +"oHn" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/reagent_dispensers/wall/peppertank/directional/south, /turf/open/floor/iron, -/area/station/security/brig) -"oHk" = ( -/obj/effect/turf_decal/stripes/end, -/obj/machinery/shower/directional/south, -/turf/open/floor/iron/white/textured, -/area/station/security/medical) +/area/station/security/execution/transfer) "oHo" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/brown/half/contrasted, @@ -62054,23 +62163,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/space/basic, /area/space/nearstation) -"oPs" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 8 - }, -/obj/structure/table/reinforced/rglass, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -5; - pixel_y = 2 - }, -/obj/item/roller, -/obj/item/clothing/neck/stethoscope, -/obj/machinery/duct, -/turf/open/floor/iron/white/side{ - dir = 4 - }, -/area/station/security/medical) "oPz" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood, @@ -62546,15 +62638,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron, /area/station/command/gateway) -"oVU" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/reagent_dispensers/wall/peppertank/directional/south, -/turf/open/floor/iron, -/area/station/security/execution/transfer) "oVW" = ( /obj/machinery/door/poddoor/preopen{ id = "xenobio_maint_aft"; @@ -62952,6 +63035,31 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, /area/station/engineering/atmos/storage) +"pbS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "sci-toxins-passthrough" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/duct, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/landmark/navigate_destination, +/obj/machinery/door/airlock/research{ + name = "Xenobiology Lab" + }, +/obj/effect/mapping_helpers/airlock/access/any/science/xenobio, +/obj/structure/cable, +/obj/structure/liquid_barrier, +/turf/open/floor/iron, +/area/station/science/xenobiology) "pbU" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 8 @@ -62998,6 +63106,10 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/entry) +"pci" = ( +/obj/effect/turf_decal/siding/dark_red, +/turf/open/floor/iron/dark, +/area/station/security/medical) "pck" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -63333,12 +63445,6 @@ /obj/machinery/light/small/broken/directional/south, /turf/open/floor/plating, /area/station/service/chapel/storage) -"pgi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/security/office) "pgr" = ( /obj/machinery/duct, /obj/effect/turf_decal/stripes/line{ @@ -63665,6 +63771,11 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, /area/station/hallway/primary/port) +"pjq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/security/execution/transfer) "pjN" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -63692,26 +63803,6 @@ }, /turf/open/floor/catwalk_floor/iron_dark, /area/station/security/bitden) -"pjY" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/button/door/directional/north{ - id = "brigprison"; - name = "Prison Lockdown"; - req_access = list("brig_entrance") - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/execution/transfer) "pjZ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table/wood, @@ -63950,18 +64041,6 @@ }, /turf/open/floor/iron/dark, /area/station/command/bridge) -"pmn" = ( -/obj/machinery/power/apc/auto_name/directional/west, -/obj/structure/cable, -/obj/machinery/light/cold/directional/west, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/obj/machinery/computer/records/medical/laptop, -/obj/structure/table/reinforced/rglass, -/obj/machinery/duct, -/turf/open/floor/iron/white/corner, -/area/station/security/medical) "pmz" = ( /obj/effect/turf_decal/tile/red{ dir = 4 @@ -64449,16 +64528,6 @@ /obj/structure/cable, /turf/open/floor/circuit/green, /area/station/ai_monitored/turret_protected/ai_upload) -"ptt" = ( -/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/machinery/duct, -/turf/open/floor/iron, -/area/station/security/office) "ptA" = ( /obj/structure/cable, /obj/structure/table/reinforced, @@ -65121,7 +65190,7 @@ c_tag = "Cargo - Waiting Room"; name = "cargo camera" }, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron, /area/station/cargo/lobby) "pBH" = ( @@ -65315,6 +65384,16 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/station/engineering/main) +"pEg" = ( +/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 = 1 + }, +/obj/machinery/duct, +/turf/open/floor/iron, +/area/station/security/brig) "pEi" = ( /turf/open/floor/iron/grimy, /area/station/service/theater/abandoned) @@ -65951,6 +66030,11 @@ }, /turf/open/floor/iron, /area/station/command/gateway) +"pLj" = ( +/obj/machinery/status_display/evac/directional/south, +/obj/effect/turf_decal/tile/red/anticorner/contrasted, +/turf/open/floor/iron, +/area/station/security/execution/transfer) "pLm" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ @@ -66160,7 +66244,7 @@ /obj/effect/turf_decal/tile/red{ dir = 4 }, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron, /area/station/hallway/primary/starboard) "pNq" = ( @@ -66182,6 +66266,12 @@ }, /turf/open/floor/iron/large, /area/station/science/research) +"pNI" = ( +/obj/effect/turf_decal/trimline/hot_pink/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/workout) "pNJ" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/directional/north, @@ -66952,23 +67042,6 @@ /obj/effect/mapping_helpers/airlock/unres, /turf/open/floor/iron, /area/station/maintenance/port) -"pVY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Lab" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/liquid_barrier, -/turf/open/floor/iron, -/area/station/science/xenobiology) "pWd" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/yellow/half/contrasted{ @@ -67261,21 +67334,6 @@ /obj/structure/cable, /turf/open/floor/iron/grimy, /area/station/service/library/abandoned) -"pZs" = ( -/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/structure/table/wood, -/obj/item/folder/blue, -/obj/item/pen/fourcolor, -/obj/item/stamp/captain, -/obj/machinery/door/window/brigdoor/left/directional/north{ - name = "Captain's Desk"; - req_access = list("captain") - }, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain) "pZy" = ( /obj/effect/turf_decal/tile/neutral/anticorner/contrasted, /obj/structure/closet/secure_closet/medical3, @@ -68330,6 +68388,14 @@ }, /turf/open/floor/iron, /area/station/engineering/atmos) +"qnz" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/rack, +/obj/item/restraints/handcuffs, +/obj/item/assembly/flash/handheld, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) "qnG" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -68772,12 +68838,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/solars/starboard/fore) -"qtT" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white/side, -/area/station/security/medical) "qua" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -69021,7 +69081,7 @@ }, /obj/machinery/duct, /obj/machinery/light/directional/north, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron/dark/corner{ dir = 1 }, @@ -69115,6 +69175,24 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, /area/station/service/theater/abandoned) +"qyB" = ( +/obj/effect/turf_decal/trimline/hot_pink/filled/line{ + dir = 10 + }, +/obj/machinery/airalarm/directional/west, +/obj/structure/closet{ + name = "Prisoner O2 Storage" + }, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/open/floor/iron/dark/textured_corner{ + dir = 4 + }, +/area/station/security/prison/workout) "qyX" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -69131,25 +69209,6 @@ /obj/effect/mapping_helpers/airlock/access/all/supply/mining, /turf/open/floor/iron, /area/station/maintenance/starboard/fore) -"qzb" = ( -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/requests_console/directional/west{ - anon_tips_receiver = 1; - assistance_requestable = 1; - department = "Research Director's Desk"; - name = "Research Director's Requests Console"; - receive_ore_updates = 1; - can_send_announcements = 1 - }, -/obj/item/kirbyplants/random/dead, -/obj/machinery/light/directional/west, -/turf/open/floor/iron, -/area/station/command/heads_quarters/rd) "qzc" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -69187,6 +69246,13 @@ /obj/structure/cable, /turf/open/floor/iron/vaporwave, /area/station/security/prison/mess) +"qzI" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/iron, +/area/station/security/execution/transfer) "qzK" = ( /obj/structure/sign/warning/secure_area/directional/south, /obj/structure/table/reinforced, @@ -69360,6 +69426,12 @@ /obj/item/assembly/flash/handheld, /turf/open/floor/iron/dark, /area/station/ai_monitored/security/armory) +"qBA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/turf/open/floor/iron, +/area/station/security/office) "qBF" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 8 @@ -70524,13 +70596,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/department/science) -"qOv" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/power/apc/auto_name/directional/north, -/turf/open/floor/iron, -/area/station/security/execution/transfer) "qOB" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -70664,20 +70729,6 @@ /obj/effect/mapping_helpers/airlock/access/all/medical/chemistry, /turf/open/floor/iron, /area/station/medical/chemistry) -"qPB" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/bodybags{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/prisoner, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/extinguisher_cabinet/directional/south, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) "qPE" = ( /obj/effect/spawner/random/trash/box, /obj/effect/spawner/random/food_or_drink/snack, @@ -70762,6 +70813,19 @@ }, /turf/open/floor/iron/dark/herringbone, /area/station/security/prison) +"qRs" = ( +/obj/machinery/door/airlock/research/glass{ + name = "Xenobiology Kill Room" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, +/obj/structure/liquid_barrier, +/turf/open/floor/iron, +/area/station/science/xenobiology) "qRu" = ( /obj/machinery/door/airlock/security/glass{ id_tag = "gulagdoor"; @@ -71473,13 +71537,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"rcH" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/security/brig) "rcI" = ( /turf/open/floor/iron, /area/station/cargo/sorting) @@ -71604,18 +71661,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/station/medical/storage) -"rdY" = ( -/obj/effect/turf_decal/trimline/hot_pink/filled/line{ - dir = 4 - }, -/obj/item/radio/intercom/prison/directional/east, -/obj/structure/chair/sofa/bench{ - dir = 8 - }, -/turf/open/floor/iron/dark/textured_edge{ - dir = 4 - }, -/area/station/security/prison/workout) "rem" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/sign/poster/random/directional/west, @@ -71712,6 +71757,16 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/entry) +"rfs" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/table, +/obj/item/folder/yellow, +/obj/item/stamp/head/qm, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron, +/area/station/cargo/quartermaster) "rfH" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/external{ @@ -71725,14 +71780,6 @@ /obj/effect/landmark/navigate_destination/dockescpod1, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"rfW" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/rack, -/obj/item/restraints/handcuffs, -/obj/item/assembly/flash/handheld, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) "rgf" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -71926,16 +71973,6 @@ /obj/machinery/newscaster/directional/south, /turf/open/floor/iron/dark, /area/station/service/abandoned_gambling_den) -"rhY" = ( -/obj/structure/chair/sofa/bench{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/hot_pink/filled/line{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/iron/dark/herringbone, -/area/station/security/prison) "riq" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/grille/broken, @@ -73893,6 +73930,23 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/engineering/atmos/storage) +"rFX" = ( +/obj/effect/turf_decal/trimline/hot_pink/filled/line{ + dir = 6 + }, +/obj/structure/closet{ + name = "Prisoner O2 Storage" + }, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/open/floor/iron/dark/textured_corner{ + dir = 1 + }, +/area/station/security/prison/workout) "rFZ" = ( /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, @@ -73936,18 +73990,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron, /area/station/maintenance/disposal) -"rGz" = ( -/obj/effect/turf_decal/trimline/hot_pink/filled/line{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/obj/structure/chair/sofa/bench{ - dir = 8 - }, -/turf/open/floor/iron/dark/textured_edge{ - dir = 4 - }, -/area/station/security/prison/workout) "rGO" = ( /obj/structure/table/reinforced, /obj/item/paper_bin, @@ -75807,6 +75849,21 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron, /area/station/maintenance/solars/port/fore) +"sdG" = ( +/obj/machinery/door/window/brigdoor{ + dir = 8; + name = "Secure Creature Pen"; + req_access = list("research") + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenosecure"; + name = "Secure Pen Shutters" + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/delivery, +/obj/structure/liquid_barrier, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) "sdJ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/stripes/line{ @@ -77356,6 +77413,11 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron, /area/station/engineering/main) +"syd" = ( +/obj/machinery/status_display/ai/directional/north, +/obj/machinery/computer/operating, +/turf/open/floor/iron/dark, +/area/station/security/medical) "sye" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, @@ -77407,6 +77469,25 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/hallway/secondary/entry) +"syT" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/requests_console/directional/west{ + anon_tips_receiver = 1; + assistance_requestable = 1; + department = "Research Director's Desk"; + name = "Research Director's Requests Console"; + receive_ore_updates = 1; + can_send_announcements = 1 + }, +/obj/item/kirbyplants/random/dead, +/obj/machinery/light/directional/west, +/turf/open/floor/iron, +/area/station/command/heads_quarters/rd) "szg" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -77909,6 +77990,13 @@ }, /turf/open/floor/iron/dark, /area/station/command/corporate_showroom) +"sFM" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/duct, +/turf/open/floor/iron, +/area/station/security/brig) "sFR" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -78061,6 +78149,17 @@ }, /turf/open/floor/iron, /area/station/engineering/atmos/hfr_room) +"sHq" = ( +/obj/structure/cable, +/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, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/duct, +/turf/open/floor/iron, +/area/station/security/brig) "sHt" = ( /turf/open/space/basic, /area/space/nearstation) @@ -78732,6 +78831,21 @@ dir = 8 }, /area/station/service/chapel) +"sOv" = ( +/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/structure/table/wood, +/obj/item/folder/blue, +/obj/item/pen/fourcolor, +/obj/item/stamp/head/captain, +/obj/machinery/door/window/brigdoor/left/directional/north{ + name = "Captain's Desk"; + req_access = list("captain") + }, +/turf/open/floor/carpet, +/area/station/command/heads_quarters/captain) "sOM" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=hall4"; @@ -79740,11 +79854,24 @@ /obj/machinery/firealarm/directional/west, /turf/open/floor/iron/dark, /area/station/service/chapel) -"taY" = ( -/obj/effect/turf_decal/siding/dark_red, -/obj/machinery/defibrillator_mount/directional/east, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/iron/dark, +"taQ" = ( +/obj/machinery/airalarm/directional/east, +/obj/machinery/light/cold/directional/east, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 4 + }, +/obj/structure/rack, +/obj/item/storage/medkit/regular, +/obj/item/clothing/gloves/latex, +/obj/item/reagent_containers/cup/bottle/epinephrine, +/obj/item/reagent_containers/cup/bottle/multiver, +/obj/item/reagent_containers/syringe, +/obj/item/storage/box/bodybags, +/obj/item/storage/medkit/regular, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/corner{ + dir = 8 + }, /area/station/security/medical) "tbd" = ( /obj/effect/turf_decal/tile/yellow/half/contrasted{ @@ -80106,6 +80233,15 @@ /obj/machinery/light/directional/south, /turf/open/floor/iron/white, /area/station/medical/paramedic) +"tfS" = ( +/obj/structure/cable, +/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, +/obj/structure/disposalpipe/segment, +/obj/machinery/duct, +/turf/open/floor/iron, +/area/station/security/brig) "tgl" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -81800,16 +81936,6 @@ }, /turf/open/floor/iron/dark/telecomms, /area/station/tcommsat/server) -"tCP" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral/full, -/obj/machinery/duct, -/turf/open/floor/iron/large, -/area/station/security/brig) "tCQ" = ( /obj/effect/turf_decal/loading_area{ dir = 4 @@ -83144,6 +83270,14 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/cargo/miningoffice) +"tSk" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/security/execution/transfer) "tSo" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -83791,23 +83925,6 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"uaq" = ( -/obj/effect/turf_decal/trimline/hot_pink/filled/line{ - dir = 6 - }, -/obj/structure/closet{ - name = "Prisoner O2 Storage" - }, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/turf/open/floor/iron/dark/textured_corner{ - dir = 1 - }, -/area/station/security/prison/workout) "uaz" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -84062,19 +84179,6 @@ /obj/machinery/light/directional/south, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"ucZ" = ( -/obj/structure/table/wood, -/obj/item/paper_bin/carbon, -/obj/item/stamp/hop, -/obj/machinery/requests_console/directional/north{ - anon_tips_receiver = 1; - assistance_requestable = 1; - department = "Head of Personnel's Desk"; - name = "Head of Personnel's Requests Console"; - can_send_announcements = 1 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) "udb" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -84263,6 +84367,15 @@ /obj/structure/filingcabinet, /turf/open/floor/iron/dark, /area/station/service/library/printer) +"ufA" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/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, +/obj/machinery/duct, +/turf/open/floor/iron, +/area/station/security/brig) "ufE" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -84719,18 +84832,6 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"ulR" = ( -/obj/effect/turf_decal/trimline/hot_pink/filled/line{ - dir = 4 - }, -/obj/structure/sign/poster/random/directional/east, -/obj/structure/chair/sofa/bench{ - dir = 8 - }, -/turf/open/floor/iron/dark/textured_edge{ - dir = 4 - }, -/area/station/security/prison/workout) "umb" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ @@ -85044,6 +85145,19 @@ }, /turf/open/floor/iron, /area/station/maintenance/starboard/aft) +"upA" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/item/paper_bin, +/obj/item/stamp/head/cmo, +/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, +/turf/open/floor/iron/white, +/area/station/command/heads_quarters/cmo) "upB" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -85415,6 +85529,19 @@ /obj/effect/mapping_helpers/airlock/unres, /turf/open/floor/iron, /area/station/maintenance/department/science) +"uuO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/duct, +/turf/open/floor/iron, +/area/station/maintenance/department/security) "uvb" = ( /obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible{ dir = 4 @@ -86200,24 +86327,18 @@ /obj/effect/spawner/random/engineering/toolbox, /turf/open/floor/plating, /area/station/maintenance/department/electrical) -"uEz" = ( -/obj/effect/turf_decal/trimline/hot_pink/filled/line{ - dir = 10 - }, -/obj/machinery/airalarm/directional/west, -/obj/structure/closet{ - name = "Prisoner O2 Storage" - }, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/turf/open/floor/iron/dark/textured_corner{ - dir = 4 +"uEy" = ( +/obj/structure/sink/directional/south{ + dir = 8; + pixel_x = 14; + pixel_y = 0 }, -/area/station/security/prison/workout) +/obj/structure/mirror/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/ghost_critter_spawn, +/turf/open/floor/wood/parquet, +/area/station/security/prison/safe) "uED" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, @@ -86360,19 +86481,6 @@ /obj/structure/chair/stool/directional/south, /turf/open/floor/plating, /area/station/maintenance/fore) -"uGy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/maintenance/department/security) "uGB" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -86580,16 +86688,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/pathology) -"uJe" = ( -/obj/machinery/camera/directional/north{ - c_tag = "Security - Escape Pod" - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/iron, -/area/station/security/execution/transfer) "uJk" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/landmark/start/hangover, @@ -86832,10 +86930,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"uMN" = ( -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/closed/wall/r_wall, -/area/station/security/medical) "uMV" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -87392,23 +87486,6 @@ /obj/effect/turf_decal/tile/neutral/full, /turf/open/floor/iron/dark/smooth_large, /area/station/security/checkpoint/customs/aft) -"uTa" = ( -/obj/effect/turf_decal/trimline/neutral/warning{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/mid_joiner{ - dir = 4 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Security - Medbay" - }, -/obj/structure/bodycontainer/morgue{ - dir = 2 - }, -/turf/open/floor/iron/dark/textured_half{ - dir = 1 - }, -/area/station/security/medical) "uTb" = ( /obj/machinery/door/airlock/highsecurity{ name = "Emergency Access" @@ -87478,16 +87555,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/service/abandoned_gambling_den/gaming) -"uTC" = ( -/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 = 1 - }, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/security/brig) "uTG" = ( /obj/structure/showcase/cyborg/old{ dir = 4; @@ -87701,17 +87768,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/ai_monitored/turret_protected/ai) -"uWC" = ( -/obj/effect/turf_decal/trimline/hot_pink/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/hot_pink/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison/workout) "uWI" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -88236,6 +88292,16 @@ /obj/effect/turf_decal/tile/purple/full, /turf/open/floor/iron/large, /area/station/science/research) +"vcP" = ( +/obj/structure/chair/sofa/bench{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/hot_pink/filled/line{ + dir = 4 + }, +/obj/item/radio/intercom/prison/directional/east, +/turf/open/floor/iron/dark/herringbone, +/area/station/security/prison) "vcU" = ( /obj/machinery/computer/security/mining{ dir = 4 @@ -88913,15 +88979,6 @@ /obj/structure/sign/clock/directional/east, /turf/open/floor/wood, /area/station/commons/dorms) -"vnd" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/obj/structure/chair/office, -/obj/effect/landmark/start/brig_physician, -/turf/open/floor/iron/white/side, -/area/station/security/medical) "vnn" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -88950,12 +89007,6 @@ /obj/machinery/portable_atmospherics/canister/bz, /turf/open/floor/iron, /area/station/engineering/atmos/storage/gas) -"vnr" = ( -/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/station/security/medical) "vnu" = ( /obj/machinery/airalarm/directional/north, /obj/structure/rack, @@ -89168,15 +89219,6 @@ }, /turf/open/floor/iron, /area/station/command/heads_quarters/hos) -"vpt" = ( -/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/neutral/half/contrasted, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/security/office) "vpC" = ( /obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ dir = 8 @@ -90841,6 +90883,17 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/iron, /area/station/science/research) +"vIM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/poddoor/preopen{ + id = "brigprison"; + name = "Prison Blast Door" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron, +/area/station/security/execution/transfer) "vIQ" = ( /turf/closed/wall/r_wall, /area/station/command/teleporter) @@ -91072,6 +91125,13 @@ "vNa" = ( /turf/closed/wall/r_wall, /area/station/maintenance/starboard/aft) +"vNf" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/disposalpipe/segment, +/obj/machinery/duct, +/turf/open/floor/iron, +/area/station/security/brig) "vNi" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -91406,31 +91466,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/security/range) -"vSB" = ( -/obj/structure/chair/sofa/bench{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/hot_pink/filled/line{ - dir = 4 - }, -/obj/item/radio/intercom/prison/directional/east, -/turf/open/floor/iron/dark/herringbone, -/area/station/security/prison) -"vSC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Security Maintenance" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/security/brig) "vSE" = ( /obj/effect/turf_decal/tile/yellow{ dir = 1 @@ -92144,11 +92179,6 @@ /obj/effect/turf_decal/trimline/hot_pink/corner, /turf/open/floor/iron/dark/textured, /area/station/security/prison/workout) -"waA" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/sign/warning/secure_area/directional/south, -/turf/open/floor/iron, -/area/station/security/execution/transfer) "waG" = ( /obj/structure/cable, /obj/structure/lattice/catwalk, @@ -92227,6 +92257,10 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, /area/station/hallway/primary/fore) +"wbw" = ( +/obj/item/training_toolbox, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/workout) "wbA" = ( /obj/machinery/light/directional/south, /obj/machinery/camera/directional/south{ @@ -94531,12 +94565,6 @@ }, /turf/open/floor/iron, /area/station/cargo/warehouse) -"wAg" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/security/brig) "wAk" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -96067,6 +96095,18 @@ /obj/effect/landmark/carpspawn, /turf/open/space/basic, /area/space) +"wVo" = ( +/obj/effect/turf_decal/trimline/hot_pink/filled/line{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/obj/structure/chair/sofa/bench{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/security/prison/workout) "wVy" = ( /obj/effect/turf_decal/siding/wood, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -96104,16 +96144,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/engineering/storage/tech) -"wWh" = ( -/obj/machinery/status_display/evac/directional/south, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron, -/area/station/security/execution/transfer) -"wWk" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/iron, -/area/station/security/execution/transfer) "wWn" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/glass, @@ -96534,7 +96564,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron, /area/station/hallway/secondary/entry) "xbu" = ( @@ -96730,16 +96760,6 @@ /obj/machinery/duct, /turf/open/floor/stone, /area/station/science/xenobiology) -"xdl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/full, -/obj/machinery/duct, -/turf/open/floor/iron/large, -/area/station/security/brig) "xdn" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/turf_decal/box/red, @@ -96767,6 +96787,14 @@ }, /turf/open/floor/iron/dark, /area/station/command/bridge) +"xed" = ( +/obj/structure/cable, +/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, +/obj/machinery/duct, +/turf/open/floor/iron, +/area/station/security/brig) "xef" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment, @@ -97363,10 +97391,6 @@ /obj/machinery/duct, /turf/open/floor/iron/dark, /area/station/science/genetics) -"xmb" = ( -/obj/item/training_toolbox, -/turf/open/floor/iron/dark/textured, -/area/station/security/prison/workout) "xmg" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/blue{ @@ -97422,25 +97446,6 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/dark/textured_large, /area/station/science/xenobiology) -"xmQ" = ( -/obj/machinery/airalarm/directional/east, -/obj/machinery/light/cold/directional/east, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/obj/structure/rack, -/obj/item/storage/medkit/regular, -/obj/item/clothing/gloves/latex, -/obj/item/reagent_containers/cup/bottle/epinephrine, -/obj/item/reagent_containers/cup/bottle/multiver, -/obj/item/reagent_containers/syringe, -/obj/item/storage/box/bodybags, -/obj/item/storage/medkit/regular, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white/corner{ - dir = 8 - }, -/area/station/security/medical) "xmR" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/tile/blue/anticorner/contrasted{ @@ -97597,12 +97602,6 @@ }, /turf/open/floor/iron, /area/station/service/hydroponics) -"xoW" = ( -/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/station/security/execution/transfer) "xpr" = ( /obj/effect/spawner/random/decoration/carpet, /obj/effect/spawner/random/structure/furniture_parts, @@ -97864,21 +97863,6 @@ /obj/machinery/light/small/red/directional/north, /turf/open/floor/plating, /area/station/maintenance/department/security) -"xsH" = ( -/obj/machinery/door/window/brigdoor{ - dir = 8; - name = "Secure Creature Pen"; - req_access = list("research") - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenosecure"; - name = "Secure Pen Shutters" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/delivery, -/obj/structure/liquid_barrier, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) "xsP" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/atmospherics/components/unary/outlet_injector/on, @@ -98020,6 +98004,15 @@ /obj/effect/spawner/random/structure/tank_holder, /turf/open/floor/iron, /area/station/engineering/supermatter/room) +"xuZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/full, +/obj/machinery/duct, +/turf/open/floor/iron/large, +/area/station/security/brig) "xva" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/turf_decal/stripes/line{ @@ -98872,9 +98865,24 @@ }, /turf/open/floor/iron/dark, /area/station/ai_monitored/aisat/exterior) +"xEe" = ( +/obj/structure/table/reinforced, +/obj/item/folder/white, +/obj/item/stamp/head/rd, +/turf/open/floor/iron/white, +/area/station/command/heads_quarters/rd) "xEt" = ( /turf/open/floor/iron, /area/station/engineering/supermatter/room) +"xEA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/duct, +/turf/open/floor/iron, +/area/station/security/office) "xED" = ( /obj/effect/spawner/random/engineering/tracking_beacon, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -99604,6 +99612,10 @@ dir = 8 }, /area/station/service/kitchen) +"xNn" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/closed/wall/r_wall, +/area/station/security/medical) "xNu" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, /obj/structure/sink/kitchen/directional/south, @@ -99746,14 +99758,6 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, /area/station/maintenance/fore) -"xOS" = ( -/obj/structure/cable, -/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, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/security/brig) "xPc" = ( /turf/closed/wall, /area/station/medical/pathology) @@ -99915,6 +99919,16 @@ /obj/item/clothing/under/dress/redeveninggown, /turf/open/floor/wood, /area/station/commons/dorms) +"xRe" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Security - Escape Pod" + }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 4 + }, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/iron, +/area/station/security/execution/transfer) "xRo" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -100119,26 +100133,6 @@ /obj/structure/sign/warning/secure_area/directional/north, /turf/open/floor/plating, /area/station/maintenance/department/science) -"xUk" = ( -/obj/machinery/door/airlock/security{ - name = "Brig" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/poster/official/nanotrasen_logo{ - pixel_x = -32 - }, -/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/access/all/security/general, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/door/firedoor, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/security/brig) "xUl" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -101316,6 +101310,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/maintenance/starboard/aft) +"yjb" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white/side, +/area/station/security/medical) "yjn" = ( /obj/structure/extinguisher_cabinet/directional/north{ pixel_x = 6; @@ -120730,7 +120730,7 @@ uhb ebW kNG imx -xsH +sdG umb kNG lZF @@ -121248,7 +121248,7 @@ vxQ vxQ lzc plQ -dpN +qRs qUB qUB nCi @@ -121496,7 +121496,7 @@ bWp gAw xbj aLK -pVY +cjh rdq gwx mgr @@ -123536,7 +123536,7 @@ eHy qJs cxp sHT -iMh +nlM aEF oXm sHT @@ -124547,7 +124547,7 @@ oez bAR xqG gsV -lwM +cCp fzY tEE tEw @@ -124798,7 +124798,7 @@ vQj uCa uCa leE -mDJ +jSG kyW jzU bAR @@ -128181,7 +128181,7 @@ qXx kQr jDd jDd -bxj +pbS jDd jDd wEI @@ -131529,7 +131529,7 @@ hkZ voZ iao nLM -qzb +syT hnM urt awA @@ -131784,7 +131784,7 @@ sLY bCc pML uzo -iBB +xEe dGp czL epF @@ -135684,7 +135684,7 @@ aaa aaa gqm gqm -mzp +bmR grE uxI gqm @@ -137401,7 +137401,7 @@ aiO hWq mGw pRS -ucZ +nbs lNA ozz lNA @@ -138480,7 +138480,7 @@ uws dQT vuS pMF -nFj +upA wqz loe gaC @@ -142796,7 +142796,7 @@ pXK mBd btZ fPn -pZs +sOv jim eoF cXB @@ -147650,7 +147650,7 @@ aad aJE ejX aAU -meV +rfs xhJ vMd tgX @@ -151505,7 +151505,7 @@ oWP vmo lQj xBD -uEz +qyB ydH qfM xzJ @@ -152019,7 +152019,7 @@ sxn cpE xqc eEi -uaq +rFX ydH xPo krO @@ -152316,7 +152316,7 @@ pJq tNZ dth avF -dpB +orQ avF rYA qkC @@ -152510,9 +152510,9 @@ cBq brG rRL usE -vSB -rhY -hhq +vcP +atb +aqC uXg vwy aQs @@ -152573,7 +152573,7 @@ nht oXV fIj hie -hlk +hpF ewb avF mEb @@ -152803,34 +152803,34 @@ sFW meT fOH fOH -cdv -kMz -rcH -wAg -kyK -xOS -eAT -ggk -xUk -uTC -fPB +lFi +gyV +oyY +dXC +xuZ +xed +sHq +euh +iSY +pEg +ufA wUY -xdl +mmh wUY -hit +dRn wUY -knL +cQa wUY -oHf +vNf qFA -oHf -tCP -gBw -lsd -bdH -vSC -uGy -fsb +vNf +hrC +tfS +sFM +bCg +hTF +uuO +brJ ieh tuv vHY @@ -153060,7 +153060,7 @@ vCk owO owO dxT -gKU +bXh flD cDm owO @@ -153283,7 +153283,7 @@ giW hLY rnU jmZ -oeq +jlb hBX lTv cBq @@ -153317,7 +153317,7 @@ lET hQq cjN hQq -dAU +lKV jXt hQq cjN @@ -153539,7 +153539,7 @@ brG lXj lTv vmm -grh +uEy lGm lGm aHz @@ -153566,15 +153566,15 @@ hLz iCo nYt lET -oHk -aAg -pmn -oPs +fBH +eWX +mSb +jOW pWT eVE nzR gKp -vpt +leP rTG nsG ozu @@ -153823,15 +153823,15 @@ hLz iuk puN lET -uTa -ehh -vnd -vnr -ipW -ptt -aUM -pgi -mpX +gPN +feQ +eMX +dNu +ogh +gDU +fGx +qBA +xEA wdM cbX one @@ -154080,9 +154080,9 @@ mcb iCo spB lET -npR -jNH -qtT +syd +pci +yjb rJR fcE ymb @@ -154336,11 +154336,11 @@ ouc mcb iCo krO -uMN -lnf -taY -xmQ -nrN +xNn +bGI +fUZ +taQ +hoy pWT mif qlN @@ -154592,7 +154592,7 @@ tAn lMN mcb iCo -oVU +oHn lET lET lET @@ -154844,13 +154844,13 @@ rnA rnA rnA rnA -cgA -nqi +pNI +lKa hPN hLz iCo krO -qPB +jGU qIH aaa aaa @@ -155102,12 +155102,12 @@ iDC ylB pqk uuf -uWC +kPY xPz hLz -qOv +qzI yiA -rfW +qnz qIH etw qYo @@ -155364,7 +155364,7 @@ lAj vxs kiB krO -lOD +iPO qIH aaa aaa @@ -155606,7 +155606,7 @@ fiO pAx sxn vTP -azu +cSb pMG pMG pMG @@ -155840,8 +155840,8 @@ fRi srJ vNi lqh -dBU -gdU +oAV +jzs nDp fRi vOH @@ -156380,7 +156380,7 @@ vTP pMG sxn rwn -xmb +wbw wIS foR sxn @@ -156914,7 +156914,7 @@ bRF gby jfR lPV -hrq +kqT bAS uTM nHJ @@ -157161,8 +157161,8 @@ eHO eHO eHO eHO -pjY -eYB +ddp +onu qIH aad aad @@ -157405,11 +157405,11 @@ fiO ivM rzk dbg -brc -rdY -rGz -ulR -brc +klV +lFp +wVo +giN +klV mAA xqc dwC @@ -157418,8 +157418,8 @@ bJx mor dXF eHO -hMm -lrs +vIM +jdx qIH aad aaa @@ -157675,8 +157675,8 @@ gRU xAc mKL sXd -xoW -waA +lpW +jeG qIH qIH qIH @@ -157932,7 +157932,7 @@ swn aAA qbp eHO -hfi +kyu xzJ aMi ojW @@ -158189,7 +158189,7 @@ uuj fRe eho eHO -wWk +pjq xzJ qIH gJk @@ -158447,8 +158447,8 @@ iGx nkn eHO cXC -iam -gWc +ocs +iZc gJk aaa aad @@ -158703,9 +158703,9 @@ omd gku mZA eHO -dqr -lSP -hWN +lhq +tSk +hQn jrA aaa aad @@ -158960,9 +158960,9 @@ skQ pdF rQv eHO -uJe -koe -wWh +xRe +gWj +pLj gJk aaa efQ diff --git a/_maps/map_files/IceBoxStation/IceBoxStation.dmm b/_maps/map_files/IceBoxStation/IceBoxStation.dmm index 5e681e64154b..56f44ae5a0d3 100644 --- a/_maps/map_files/IceBoxStation/IceBoxStation.dmm +++ b/_maps/map_files/IceBoxStation/IceBoxStation.dmm @@ -1441,6 +1441,12 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/engineering/lobby) +"ayf" = ( +/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/textured, +/area/station/security/medical) "aym" = ( /obj/machinery/light/directional/north, /obj/effect/turf_decal/tile/red{ @@ -2116,12 +2122,6 @@ /obj/machinery/holopad, /turf/open/floor/iron/large, /area/station/commons/storage/tools) -"aKt" = ( -/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/textured, -/area/station/security/medical) "aKG" = ( /obj/structure/table, /turf/open/floor/iron/smooth, @@ -2718,6 +2718,16 @@ /obj/structure/sign/departments/maint/alt, /turf/closed/wall, /area/station/maintenance/department/medical/morgue) +"aUE" = ( +/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/duct, +/turf/open/floor/iron, +/area/station/security/processing) "aUK" = ( /obj/machinery/camera/directional/west{ c_tag = "Engineering Equipment Storage" @@ -3002,6 +3012,16 @@ /obj/item/kirbyplants/potty, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"aZv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/security/brig/upper) "aZx" = ( /obj/machinery/camera/directional/east{ c_tag = "Telecomms Monitoring"; @@ -3357,7 +3377,7 @@ /obj/effect/turf_decal/tile/blue/half/contrasted{ dir = 1 }, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron/white, /area/station/medical/medbay/lobby) "ben" = ( @@ -4345,6 +4365,18 @@ "btU" = ( /turf/closed/wall, /area/station/medical/morgue) +"bui" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/window/brigdoor/left/directional/south{ + name = "Security Medpost"; + req_access = list("security") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/duct, +/turf/open/floor/iron/white/textured, +/area/station/security/medical) "bum" = ( /obj/machinery/holopad, /obj/effect/turf_decal/bot, @@ -5551,20 +5583,6 @@ /obj/structure/closet, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"bLI" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera/directional/south{ - c_tag = "Security - Transport Parlor" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/security/processing) "bLL" = ( /obj/structure/sink/kitchen/directional/west{ desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; @@ -5691,6 +5709,16 @@ /obj/structure/cable, /turf/open/floor/iron/white, /area/station/medical/cryo) +"bNP" = ( +/obj/structure/table, +/obj/item/folder/white, +/obj/item/pen, +/obj/item/stamp/head/rd{ + pixel_x = 3; + pixel_y = -2 + }, +/turf/open/floor/iron, +/area/station/command/heads_quarters/rd) "bOg" = ( /obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -6360,17 +6388,6 @@ /obj/machinery/airalarm/directional/north, /turf/open/floor/iron/smooth, /area/station/security/execution/transfer) -"bYF" = ( -/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/firealarm/directional/south, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/security/processing) "bYK" = ( /obj/effect/landmark/start/chemist, /obj/structure/chair/office/light{ @@ -6784,6 +6801,14 @@ /obj/effect/turf_decal/trimline/blue/filled/corner, /turf/open/floor/iron/white, /area/station/medical/treatment_center) +"ceA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/maintenance/fore) "ceE" = ( /obj/machinery/door/airlock/virology/glass{ name = "Isolation B" @@ -7450,7 +7475,7 @@ /obj/effect/turf_decal/tile/red{ dir = 1 }, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron, /area/station/hallway/primary/fore) "coB" = ( @@ -7500,6 +7525,21 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/port/greater) +"cpk" = ( +/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 = 5 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Security - Upper Brig South" + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/security/brig/upper) "cpl" = ( /obj/machinery/camera/directional/south{ c_tag = "Atmospherics Storage Room - East" @@ -10084,6 +10124,18 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/central) +"dcv" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance{ + name = "Transport Maintenance" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/security/processing) "dcw" = ( /obj/structure/cable, /obj/effect/spawner/structure/window/hollow/reinforced/middle, @@ -10246,16 +10298,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"dez" = ( -/obj/structure/table, -/obj/item/folder/white, -/obj/item/pen, -/obj/item/stamp/rd{ - pixel_x = 3; - pixel_y = -2 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/rd) "deN" = ( /obj/effect/decal/cleanable/blood/gibs, /turf/open/misc/asteroid/snow/icemoon, @@ -10821,6 +10863,17 @@ }, /turf/closed/wall, /area/station/maintenance/starboard/upper) +"doE" = ( +/obj/machinery/camera/directional/west{ + c_tag = "Security - Infirmary" + }, +/obj/machinery/light_switch/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/duct, +/turf/open/floor/iron/white/textured, +/area/station/security/medical) "doG" = ( /obj/structure/rack, /obj/machinery/light/small/directional/north, @@ -11421,12 +11474,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/security/courtroom) -"dyr" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/closed/wall/r_wall, -/area/station/security/medical) "dyE" = ( /obj/structure/chair/pew/right{ dir = 1 @@ -12068,6 +12115,17 @@ /obj/effect/turf_decal/tile/yellow, /turf/open/floor/iron, /area/station/tcommsat/computer) +"dKk" = ( +/obj/item/storage/medkit/regular{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/medkit/regular, +/obj/structure/table/reinforced/rglass, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/white/textured, +/area/station/security/medical) "dKl" = ( /obj/structure/chair/stool/directional/west, /obj/effect/turf_decal/tile/blue/opposingcorners{ @@ -12116,20 +12174,6 @@ /obj/effect/landmark/start/cargo_technician, /turf/open/floor/iron, /area/station/cargo/sorting) -"dKP" = ( -/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/firealarm/directional/south, -/obj/effect/turf_decal/tile/red/half/contrasted, -/obj/machinery/duct, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/security/processing) "dKS" = ( /obj/structure/sign/warning/electric_shock/directional/south, /obj/effect/decal/cleanable/dirt, @@ -13259,6 +13303,11 @@ }, /turf/open/floor/iron, /area/station/engineering/main) +"efV" = ( +/obj/structure/table, +/obj/item/stamp/head/qm, +/turf/open/floor/carpet, +/area/station/cargo/quartermaster) "ega" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/iron/white, @@ -14000,6 +14049,13 @@ /obj/item/lipstick/random, /turf/open/floor/iron, /area/station/commons/locker) +"erK" = ( +/obj/structure/reagent_dispensers/plumbed{ + name = "dormitory water reservoir"; + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore) "erN" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -14012,6 +14068,10 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/department/crew_quarters/bar) +"erV" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/iron/white/textured, +/area/station/security/medical) "erY" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -14884,11 +14944,6 @@ /obj/structure/chair/stool/directional/south, /turf/open/floor/wood, /area/station/commons/dorms) -"eGj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/duct, -/turf/open/floor/iron/white/textured, -/area/station/security/medical) "eGl" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/landmark/event_spawn, @@ -16170,12 +16225,12 @@ /obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron/white/smooth_large, /area/station/service/kitchen/diner) "fbt" = ( /obj/effect/turf_decal/tile/green, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron, /area/station/hallway/primary/central) "fbK" = ( @@ -16855,6 +16910,12 @@ /obj/machinery/vending/wardrobe/science_wardrobe, /turf/open/floor/iron/dark, /area/station/science/breakroom) +"foI" = ( +/obj/structure/reagent_dispensers/watertank{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore) "foN" = ( /obj/structure/closet/emcloset, /obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ @@ -17101,6 +17162,19 @@ }, /turf/closed/wall, /area/station/hallway/primary/central) +"fsD" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Security Vestibule" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/machinery/duct, +/turf/open/floor/iron/smooth, +/area/station/security/processing) "fsF" = ( /obj/effect/spawner/structure/window, /obj/effect/mapping_helpers/broken_floor, @@ -17274,16 +17348,6 @@ /obj/effect/mapping_helpers/airlock/access/all/service/general, /turf/open/floor/plating, /area/station/maintenance/starboard/lesser) -"fwh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig/upper) "fwm" = ( /obj/effect/turf_decal/plaque{ icon_state = "L14" @@ -17719,18 +17783,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/service/janitor) -"fEA" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance{ - name = "Transport Maintenance" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/obj/machinery/duct, -/turf/open/floor/plating, -/area/station/security/processing) "fEC" = ( /obj/machinery/door/airlock/security/glass{ id_tag = "outerbrig"; @@ -18198,11 +18250,6 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/science/research) -"fLX" = ( -/obj/effect/turf_decal/stripes/end, -/obj/machinery/shower/directional/south, -/turf/open/floor/iron/white/textured, -/area/station/security/medical) "fLY" = ( /obj/structure/table, /obj/item/stock_parts/micro_laser{ @@ -18861,6 +18908,16 @@ /obj/structure/curtain/cloth, /turf/open/floor/iron/showroomfloor, /area/station/security/prison/toilet) +"fZr" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/turf/open/floor/iron, +/area/station/security/brig/upper) "fZT" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 @@ -19428,17 +19485,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/central/fore) -"ghI" = ( -/obj/machinery/airalarm/directional/east, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/machinery/light/directional/east, -/obj/structure/table/glass, -/obj/item/folder/white, -/obj/item/stamp/cmo, -/obj/item/clothing/neck/stethoscope, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) "ghJ" = ( /obj/structure/chair/comfy/brown{ dir = 4 @@ -19724,6 +19770,13 @@ /obj/item/stock_parts/subspace/treatment, /turf/open/floor/plating, /area/station/engineering/storage/tech) +"gmM" = ( +/obj/machinery/light/directional/north, +/obj/structure/bodycontainer/morgue{ + dir = 2 + }, +/turf/open/floor/iron/white/textured, +/area/station/security/medical) "gmO" = ( /obj/structure/frame/machine, /obj/item/circuitboard/machine/chem_master, @@ -19916,6 +19969,19 @@ }, /turf/open/floor/iron, /area/station/commons/storage/tools) +"gqe" = ( +/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/red/anticorner/contrasted, +/obj/machinery/duct, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/security/processing) "gqh" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/sink/kitchen/directional/north{ @@ -20914,6 +20980,15 @@ /obj/effect/spawner/random/trash/mess, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) +"gGL" = ( +/obj/structure/table/reinforced, +/obj/effect/landmark/event_spawn, +/obj/item/clipboard, +/obj/item/folder/yellow, +/obj/item/paper/monitorkey, +/obj/item/stamp/head/ce, +/turf/open/floor/iron, +/area/station/command/heads_quarters/ce) "gGZ" = ( /obj/machinery/computer/bank_machine, /obj/effect/turf_decal/bot_white, @@ -21670,19 +21745,6 @@ /obj/item/trash/sosjerky, /turf/open/floor/plating, /area/station/maintenance/fore) -"gUs" = ( -/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/red/anticorner/contrasted, -/obj/machinery/duct, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/security/processing) "gUx" = ( /obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, @@ -21961,6 +22023,10 @@ /mob/living/carbon/human/species/monkey, /turf/open/floor/grass, /area/station/medical/pathology) +"gZd" = ( +/obj/machinery/computer/operating, +/turf/open/floor/iron/white/textured, +/area/station/security/medical) "gZj" = ( /obj/structure/table/reinforced, /obj/item/storage/toolbox/emergency, @@ -22343,6 +22409,16 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/wood, /area/station/service/library) +"hfg" = ( +/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/duct, +/turf/open/floor/iron, +/area/station/security/brig/upper) "hfh" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -22558,6 +22634,12 @@ /obj/machinery/electroplater, /turf/open/floor/wood, /area/station/smithing) +"hkd" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/station/security/medical) "hke" = ( /obj/machinery/light/directional/east, /obj/structure/cable, @@ -22888,6 +22970,9 @@ dir = 1 }, /area/station/commons/storage/art) +"hqw" = ( +/turf/open/floor/iron/white/textured, +/area/station/security/medical) "hqx" = ( /obj/effect/landmark/start/assistant, /obj/structure/disposalpipe/segment, @@ -23214,12 +23299,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/cargo/drone_bay) -"hwh" = ( -/obj/structure/reagent_dispensers/watertank{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/fore) "hwn" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -23229,6 +23308,11 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"hwo" = ( +/obj/effect/turf_decal/stripes/end, +/obj/machinery/shower/directional/south, +/turf/open/floor/iron/white/textured, +/area/station/security/medical) "hwu" = ( /obj/machinery/door/poddoor/preopen{ id = "lawyer_blast"; @@ -23738,6 +23822,14 @@ /obj/machinery/duct, /turf/open/floor/iron, /area/station/service/hydroponics) +"hGK" = ( +/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/duct, +/turf/open/floor/plating, +/area/station/maintenance/fore) "hHb" = ( /turf/closed/wall/r_wall, /area/station/ai_monitored/turret_protected/aisat/hallway) @@ -24239,13 +24331,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"hQd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/reagent_containers/blood, -/obj/machinery/iv_drip, -/turf/open/floor/iron/white/textured, -/area/station/security/medical) "hQi" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -24450,7 +24535,7 @@ /turf/open/floor/engine, /area/station/engineering/supermatter/room) "hTo" = ( -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron, /area/station/hallway/primary/port) "hTt" = ( @@ -25434,17 +25519,6 @@ /obj/structure/transit_tube/horizontal, /turf/open/floor/plating, /area/station/ai_monitored/turret_protected/aisat_interior) -"ijU" = ( -/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/landmark/event_spawn, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/brig/upper) "ijY" = ( /obj/structure/flora/rock/icy/style_random, /turf/open/misc/asteroid/snow/icemoon, @@ -25636,6 +25710,12 @@ /obj/item/clothing/mask/breath, /turf/open/floor/plating, /area/station/maintenance/department/medical/morgue) +"imQ" = ( +/obj/item/radio/intercom/directional/north, +/obj/machinery/light/directional/north, +/obj/structure/table/optable, +/turf/open/floor/iron/white/textured, +/area/station/security/medical) "imU" = ( /obj/machinery/artifact_zapper{ dir = 4 @@ -25800,6 +25880,17 @@ "ipf" = ( /turf/open/genturf, /area/icemoon/underground/unexplored/rivers/deep/shoreline) +"ipi" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Xenobiology Maintenance" + }, +/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/access/all/science/xenobio, +/obj/structure/liquid_barrier, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) "ipw" = ( /obj/structure/rack, /obj/effect/spawner/random/maintenance/two, @@ -25835,13 +25926,6 @@ /obj/structure/cable, /turf/open/floor/plating/snowed/icemoon, /area/icemoon/surface/outdoors/nospawn) -"ipP" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/table/reinforced/rglass, -/obj/machinery/computer/records/medical/laptop, -/turf/open/floor/iron/white/textured, -/area/station/security/medical) "ipZ" = ( /obj/effect/landmark/event_spawn, /obj/effect/turf_decal/tile/blue/opposingcorners{ @@ -26181,17 +26265,6 @@ "iwf" = ( /turf/closed/wall/r_wall, /area/mine/mechbay) -"iwx" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Xenobiology Maintenance" - }, -/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/access/all/science/xenobio, -/obj/structure/liquid_barrier, -/turf/open/floor/plating, -/area/station/maintenance/aft/lesser) "iwz" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -26408,16 +26481,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/ai_monitored/turret_protected/aisat_interior) -"iAo" = ( -/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/duct, -/turf/open/floor/iron, -/area/station/security/brig/upper) "iAt" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -26796,6 +26859,12 @@ }, /turf/open/floor/iron/dark, /area/station/science/ordnance/office) +"iHf" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/turf/closed/wall/r_wall, +/area/station/security/medical) "iHm" = ( /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, /obj/machinery/firealarm/directional/west, @@ -27042,12 +27111,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/fore) -"iLe" = ( -/obj/item/radio/intercom/directional/north, -/obj/machinery/light/directional/north, -/obj/structure/table/optable, -/turf/open/floor/iron/white/textured, -/area/station/security/medical) "iLf" = ( /obj/machinery/atmospherics/pipe/smart/simple/brown/visible, /turf/open/floor/iron, @@ -28053,21 +28116,6 @@ /obj/effect/landmark/start/head_of_personnel, /turf/open/floor/iron, /area/station/command/heads_quarters/hop) -"jaw" = ( -/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 = 5 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Security - Upper Brig South" - }, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/brig/upper) "jaN" = ( /obj/machinery/suit_storage_unit/atmos, /obj/effect/turf_decal/stripes/line{ @@ -28470,13 +28518,6 @@ /obj/structure/table, /turf/open/floor/iron/grimy, /area/station/security/prison/work) -"jhL" = ( -/obj/structure/reagent_dispensers/plumbed{ - name = "dormitory water reservoir"; - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/fore) "jhQ" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -28559,18 +28600,6 @@ }, /turf/open/floor/iron/dark, /area/station/ai_monitored/turret_protected/ai_upload) -"jjt" = ( -/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/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/brig/upper) "jjx" = ( /obj/effect/turf_decal/trimline/yellow/filled/warning{ dir = 8 @@ -28597,14 +28626,6 @@ /obj/structure/mirror/directional/east, /turf/open/floor/iron/freezer, /area/station/commons/toilet/locker) -"jkf" = ( -/obj/item/clothing/gloves/latex, -/obj/item/clothing/mask/surgical, -/obj/item/reagent_containers/spray/cleaner, -/obj/structure/table/reinforced/rglass, -/obj/structure/window/reinforced/spawner/directional/south, -/turf/open/floor/iron/white/textured, -/area/station/security/medical) "jkn" = ( /obj/effect/turf_decal/tile/dark/fourcorners, /turf/open/floor/iron, @@ -30679,6 +30700,16 @@ }, /turf/open/misc/asteroid/snow/icemoon, /area/icemoon/underground/explored) +"jSE" = ( +/obj/structure/table, +/obj/item/paper_bin/carbon{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/item/stamp/head/hop, +/turf/open/floor/iron, +/area/station/command/heads_quarters/hop) "jSL" = ( /obj/structure/stairs/east, /turf/open/floor/plating, @@ -31205,17 +31236,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/department/crew_quarters/bar) -"kcc" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Security - Infirmary" - }, -/obj/machinery/light_switch/directional/west, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/duct, -/turf/open/floor/iron/white/textured, -/area/station/security/medical) "kce" = ( /obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ color = "#ff0000"; @@ -31323,10 +31343,6 @@ /obj/structure/flora/grass/brown/style_3, /turf/open/misc/asteroid/snow/standard_air, /area/station/science/research) -"kdT" = ( -/obj/machinery/computer/operating, -/turf/open/floor/iron/white/textured, -/area/station/security/medical) "kdW" = ( /obj/machinery/camera/directional/south{ c_tag = "Customs Security Checkpoint" @@ -31860,6 +31876,17 @@ "klc" = ( /turf/closed/wall, /area/station/medical/cryo) +"klh" = ( +/obj/machinery/airalarm/directional/east, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/light/directional/east, +/obj/structure/table/glass, +/obj/item/folder/white, +/obj/item/stamp/head/cmo, +/obj/item/clothing/neck/stethoscope, +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/iron/dark, +/area/station/command/heads_quarters/cmo) "klk" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -32873,6 +32900,16 @@ /obj/item/storage/medkit/regular, /turf/open/floor/iron, /area/station/command/bridge) +"kBx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/obj/structure/chair/office, +/obj/effect/landmark/start/brig_physician, +/obj/machinery/duct, +/turf/open/floor/iron/white/textured, +/area/station/security/medical) "kBL" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 @@ -33873,7 +33910,7 @@ /obj/effect/turf_decal/tile/blue/half/contrasted{ dir = 1 }, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron, /area/station/hallway/primary/central) "kRE" = ( @@ -34396,19 +34433,6 @@ }, /turf/open/floor/carpet/blue, /area/station/medical/psychology) -"law" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Security Vestibule" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/obj/machinery/duct, -/turf/open/floor/iron/smooth, -/area/station/security/processing) "laD" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 8 @@ -34596,6 +34620,19 @@ /obj/structure/sign/poster/official/random/directional/west, /turf/open/floor/circuit/green, /area/mine/mechbay) +"ldg" = ( +/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/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/obj/machinery/duct, +/turf/open/floor/iron, +/area/station/security/brig/upper) "ldi" = ( /obj/structure/table, /obj/item/wallframe/camera, @@ -36588,6 +36625,15 @@ "lLm" = ( /turf/open/floor/iron/cafeteria, /area/station/maintenance/port/aft) +"lLJ" = ( +/obj/machinery/firealarm/directional/south, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/red/half/contrasted, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/security/brig/upper) "lLN" = ( /obj/effect/turf_decal/delivery, /obj/effect/decal/cleanable/dirt, @@ -37237,6 +37283,19 @@ }, /turf/closed/wall, /area/station/commons/dorms/laundry) +"lWp" = ( +/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/red/half/contrasted, +/obj/machinery/duct, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/processing) "lWw" = ( /obj/machinery/firealarm/directional/north, /obj/structure/chair, @@ -37336,14 +37395,6 @@ }, /turf/open/floor/grass, /area/station/medical/pathology) -"lYS" = ( -/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/duct, -/turf/open/floor/plating, -/area/station/maintenance/fore) "lYY" = ( /obj/item/clothing/suit/hooded/wintercoat, /obj/item/clothing/suit/hooded/wintercoat, @@ -37891,6 +37942,11 @@ }, /turf/open/floor/plating/snowed/icemoon, /area/icemoon/surface/outdoors/nospawn) +"mjb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/turf/open/floor/iron/white/textured, +/area/station/security/medical) "mjg" = ( /obj/machinery/light/small/directional/east, /turf/open/floor/engine/n2o, @@ -38631,6 +38687,19 @@ }, /turf/open/floor/engine, /area/station/engineering/supermatter/room) +"mwe" = ( +/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/red/half/contrasted{ + dir = 1 + }, +/obj/machinery/duct, +/turf/open/floor/iron, +/area/station/security/brig/upper) "mwh" = ( /obj/structure/table, /obj/item/storage/fancy/donut_box, @@ -38868,6 +38937,22 @@ /obj/structure/cable, /turf/open/floor/carpet, /area/station/security/prison/rec) +"mAP" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/poddoor/preopen{ + id = "xenobiomain"; + name = "Containment Blast Door" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/obj/structure/cable, +/obj/machinery/duct, +/obj/structure/liquid_barrier, +/turf/open/floor/iron, +/area/station/science/xenobiology) "mAV" = ( /obj/machinery/camera/directional/east{ c_tag = "Garden" @@ -38904,13 +38989,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/department/chapel) -"mBK" = ( -/obj/machinery/light/directional/north, -/obj/structure/bodycontainer/morgue{ - dir = 2 - }, -/turf/open/floor/iron/white/textured, -/area/station/security/medical) "mBQ" = ( /obj/structure/table/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -40075,19 +40153,6 @@ }, /turf/open/floor/iron, /area/station/cargo/storage) -"mWM" = ( -/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/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/security/brig/upper) "mWU" = ( /obj/machinery/light/directional/west, /obj/machinery/status_display/evac/directional/west, @@ -40839,6 +40904,14 @@ /obj/structure/mirror/directional/west, /turf/open/floor/iron/showroomfloor, /area/station/security/prison/toilet) +"nhr" = ( +/obj/item/clothing/gloves/latex, +/obj/item/clothing/mask/surgical, +/obj/item/reagent_containers/spray/cleaner, +/obj/structure/table/reinforced/rglass, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/iron/white/textured, +/area/station/security/medical) "nhw" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -41617,6 +41690,16 @@ }, /turf/open/floor/wood, /area/station/hallway/secondary/service) +"nsh" = ( +/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/machinery/duct, +/turf/open/floor/iron, +/area/station/security/processing) "nsi" = ( /obj/machinery/door/airlock/external{ name = "Construction Zone" @@ -41655,19 +41738,6 @@ }, /turf/open/floor/engine, /area/station/engineering/supermatter/room) -"nsL" = ( -/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, -/obj/effect/turf_decal/tile/red/half/contrasted, -/obj/machinery/duct, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/security/processing) "nsO" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/textured, @@ -42224,35 +42294,6 @@ }, /turf/open/floor/circuit, /area/station/ai_monitored/turret_protected/ai) -"nBx" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Security - HoS Office" - }, -/obj/item/flashlight/lamp/green{ - on = 0; - pixel_x = -6; - pixel_y = 16 - }, -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = 8; - pixel_y = 3 - }, -/obj/item/stamp/hos{ - pixel_x = 10; - pixel_y = 6 - }, -/obj/machinery/recharger{ - pixel_x = -4; - pixel_y = -1 - }, -/obj/machinery/airalarm/directional/west, -/obj/item/phone{ - pixel_x = -9; - pixel_y = 7 - }, -/turf/open/floor/wood/large, -/area/station/command/heads_quarters/hos) "nBB" = ( /obj/machinery/power/smes, /obj/structure/cable, @@ -43161,13 +43202,6 @@ /obj/machinery/light/small/directional/west, /turf/open/floor/iron/grimy, /area/station/service/bar/atrium) -"nNQ" = ( -/obj/effect/turf_decal/tile/red/half/contrasted, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/brig/upper) "nNY" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -43512,16 +43546,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/ai_monitored/turret_protected/aisat_interior) -"nSH" = ( -/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/duct, -/turf/open/floor/iron, -/area/station/security/processing) "nSK" = ( /obj/structure/sign/departments/xenobio/directional/west, /obj/effect/spawner/random/structure/crate, @@ -43737,11 +43761,6 @@ /obj/item/plate, /turf/open/floor/iron/checker, /area/station/maintenance/port/fore) -"nWk" = ( -/obj/structure/table, -/obj/item/stamp/qm, -/turf/open/floor/carpet, -/area/station/cargo/quartermaster) "nWr" = ( /obj/machinery/growing/soil{ pixel_y = 8 @@ -43941,6 +43960,22 @@ /obj/structure/sign/poster/official/random/directional/north, /turf/open/floor/iron, /area/station/hallway/primary/starboard) +"oag" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera/directional/south{ + c_tag = "Security - Vestibule" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red/half/contrasted, +/obj/machinery/duct, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/processing) "oal" = ( /obj/machinery/light/directional/south, /obj/machinery/computer/records/security{ @@ -44063,10 +44098,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"ocl" = ( -/obj/structure/window/reinforced/spawner/directional/south, -/turf/open/floor/iron/white/textured, -/area/station/security/medical) "ocu" = ( /obj/effect/turf_decal/bot_white, /obj/structure/cable, @@ -45233,6 +45264,11 @@ /obj/structure/cable, /turf/closed/wall/r_wall, /area/station/hallway/secondary/exit/departure_lounge) +"ovq" = ( +/obj/structure/closet/secure_closet/brig_physician, +/obj/item/clothing/suit/jacket/straight_jacket, +/turf/open/floor/iron/white/textured, +/area/station/security/medical) "ovt" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -46104,20 +46140,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"oIC" = ( -/obj/item/storage/box/bodybags, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/item/reagent_containers/syringe{ - name = "steel point" - }, -/obj/item/reagent_containers/cup/bottle/multiver, -/obj/item/reagent_containers/cup/bottle/epinephrine, -/obj/structure/table/reinforced/rglass, -/obj/structure/window/reinforced/spawner/directional/south, -/obj/item/roller, -/obj/item/clothing/neck/stethoscope, -/turf/open/floor/iron/white/textured, -/area/station/security/medical) "oIJ" = ( /obj/effect/landmark/start/medical_doctor, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, @@ -46347,6 +46369,20 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/maintenance/starboard/aft) +"oNt" = ( +/obj/machinery/door/poddoor/preopen{ + id = "misclab"; + name = "Test Chamber Blast Door" + }, +/obj/machinery/door/window/left/directional/south{ + dir = 8; + name = "Test Chamber"; + req_access = list("xenobiology") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/obj/structure/liquid_barrier, +/turf/open/floor/engine, +/area/station/science/xenobiology) "oNA" = ( /obj/effect/turf_decal/bot, /turf/open/floor/plating/snowed/smoothed/icemoon, @@ -46755,7 +46791,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron, /area/station/hallway/secondary/entry) "oUE" = ( @@ -47447,6 +47483,17 @@ /obj/structure/cable, /turf/open/floor/circuit, /area/station/maintenance/department/electrical) +"pfQ" = ( +/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/firealarm/directional/south, +/obj/machinery/duct, +/turf/open/floor/iron, +/area/station/security/processing) "pgi" = ( /obj/machinery/status_display/evac/directional/west, /obj/machinery/light/small/directional/west, @@ -50500,6 +50547,20 @@ dir = 8 }, /area/station/service/chapel) +"qeT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera/directional/south{ + c_tag = "Security - Transport Parlor" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/duct, +/turf/open/floor/iron, +/area/station/security/processing) "qfe" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral/diagonal_edge, @@ -50901,6 +50962,21 @@ /obj/structure/sign/warning/gas_mask, /turf/closed/wall/r_wall, /area/station/hallway/secondary/exit/departure_lounge) +"qmY" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Labor Shuttle Dock" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/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, +/obj/machinery/duct, +/turf/open/floor/iron, +/area/station/security/processing) "qna" = ( /obj/machinery/camera/directional/east{ c_tag = "Security - Permabrig Chapel"; @@ -52386,20 +52462,6 @@ /obj/effect/spawner/structure/window/hollow/reinforced/middle, /turf/open/floor/plating, /area/station/service/lawoffice) -"qLN" = ( -/obj/machinery/door/poddoor/preopen{ - id = "misclab"; - name = "Test Chamber Blast Door" - }, -/obj/machinery/door/window/left/directional/south{ - dir = 8; - name = "Test Chamber"; - req_access = list("xenobiology") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/structure/liquid_barrier, -/turf/open/floor/engine, -/area/station/science/xenobiology) "qLX" = ( /obj/effect/decal/cleanable/dirt, /obj/item/toy/basketball, @@ -52619,22 +52681,6 @@ /obj/structure/lattice/catwalk, /turf/open/openspace/icemoon, /area/station/science/server) -"qOP" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera/directional/south{ - c_tag = "Security - Vestibule" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red/half/contrasted, -/obj/machinery/duct, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/security/processing) "qOW" = ( /obj/structure/sign/warning/biohazard/directional/west, /turf/open/openspace, @@ -52766,6 +52812,20 @@ /obj/effect/turf_decal/tile/red, /turf/open/floor/iron, /area/station/hallway/primary/central/fore) +"qRc" = ( +/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/firealarm/directional/south, +/obj/effect/turf_decal/tile/red/half/contrasted, +/obj/machinery/duct, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/processing) "qRk" = ( /obj/item/chair/wood, /turf/open/floor/carpet, @@ -53931,6 +53991,13 @@ }, /turf/open/floor/iron, /area/station/engineering/atmos) +"rkq" = ( +/obj/effect/turf_decal/tile/red/half/contrasted, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/security/brig/upper) "rkt" = ( /obj/structure/cable, /obj/machinery/light/directional/east, @@ -54423,9 +54490,6 @@ }, /turf/open/floor/iron/textured, /area/mine/mechbay) -"rud" = ( -/turf/open/floor/iron/white/textured, -/area/station/security/medical) "ruo" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/effect/turf_decal/bot, @@ -54532,7 +54596,7 @@ /turf/open/floor/plating, /area/station/maintenance/department/medical/morgue) "rwQ" = ( -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron, /area/station/hallway/primary/central) "rwW" = ( @@ -54830,16 +54894,6 @@ }, /turf/open/floor/plating, /area/station/ai_monitored/turret_protected/aisat/maint) -"rAN" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/security/brig/upper) "rAO" = ( /obj/structure/closet/emcloset, /turf/open/floor/plating, @@ -55905,21 +55959,6 @@ /obj/structure/gulag_beacon, /turf/open/floor/iron, /area/mine/laborcamp) -"rTX" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Labor Shuttle Dock" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/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, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/security/processing) "rUb" = ( /obj/structure/railing, /obj/machinery/flasher/portable, @@ -57612,6 +57651,13 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/port) +"svV" = ( +/obj/machinery/airalarm/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/white/textured, +/area/station/security/medical) "swc" = ( /obj/machinery/light/directional/south, /obj/effect/decal/cleanable/dirt, @@ -59869,6 +59915,18 @@ }, /turf/open/floor/iron/white, /area/station/medical/treatment_center) +"tki" = ( +/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/red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/security/brig/upper) "tkk" = ( /obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, @@ -60172,15 +60230,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/hallway/secondary/exit/departure_lounge) -"tpj" = ( -/obj/machinery/firealarm/directional/south, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/red/half/contrasted, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/brig/upper) "tpx" = ( /obj/machinery/material_analyzer, /turf/open/floor/wood, @@ -60207,11 +60256,6 @@ }, /turf/open/floor/iron, /area/mine/laborcamp) -"tpX" = ( -/obj/structure/closet/secure_closet/brig_physician, -/obj/item/clothing/suit/jacket/straight_jacket, -/turf/open/floor/iron/white/textured, -/area/station/security/medical) "tqb" = ( /obj/machinery/siren/weather, /turf/open/misc/asteroid/snow/icemoon, @@ -60544,6 +60588,19 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) +"twa" = ( +/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, +/obj/effect/turf_decal/tile/red/half/contrasted, +/obj/machinery/duct, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/processing) "twt" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -61027,18 +61084,6 @@ /obj/machinery/light/small/directional/west, /turf/open/floor/plating/snowed/icemoon, /area/icemoon/underground/explored) -"tDk" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/window/brigdoor/left/directional/south{ - name = "Security Medpost"; - req_access = list("security") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/duct, -/turf/open/floor/iron/white/textured, -/area/station/security/medical) "tDv" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -62244,7 +62289,7 @@ /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 4 }, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron, /area/station/commons/fitness) "tYe" = ( @@ -63119,6 +63164,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/security/prison/safe) +"ulQ" = ( +/obj/machinery/holopad, +/turf/open/floor/iron/white/textured, +/area/station/security/medical) "uma" = ( /obj/item/chisel, /obj/item/storage/toolbox/artistic, @@ -64318,14 +64367,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/security/prison/visit) -"uHF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/duct, -/turf/open/floor/plating, -/area/station/maintenance/fore) "uHS" = ( /obj/structure/disposaloutlet{ dir = 8 @@ -64682,6 +64723,12 @@ }, /turf/open/floor/iron, /area/station/commons/fitness) +"uNM" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/item/stamp/head/captain, +/turf/open/floor/wood, +/area/station/command/heads_quarters/captain) "uNX" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -65490,6 +65537,35 @@ }, /turf/open/floor/iron/dark, /area/station/science/ordnance) +"vcI" = ( +/obj/machinery/camera/directional/west{ + c_tag = "Security - HoS Office" + }, +/obj/item/flashlight/lamp/green{ + on = 0; + pixel_x = -6; + pixel_y = 16 + }, +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = 8; + pixel_y = 3 + }, +/obj/item/stamp/head/hos{ + pixel_x = 10; + pixel_y = 6 + }, +/obj/machinery/recharger{ + pixel_x = -4; + pixel_y = -1 + }, +/obj/machinery/airalarm/directional/west, +/obj/item/phone{ + pixel_x = -9; + pixel_y = 7 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hos) "vcO" = ( /obj/machinery/vending/wardrobe/chap_wardrobe, /turf/open/floor/iron/dark, @@ -65807,21 +65883,6 @@ /obj/effect/turf_decal/bot_red, /turf/open/floor/plating, /area/station/maintenance/fore/lesser) -"vhL" = ( -/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/structure/cable, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 8 - }, -/obj/machinery/duct, -/turf/open/floor/iron/dark/corner{ - dir = 4 - }, -/area/station/security/processing) "vhT" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/simple/brown/visible{ @@ -66719,16 +66780,6 @@ }, /turf/open/floor/iron/dark, /area/station/command/gateway) -"vxc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/landmark/event_spawn, -/obj/structure/chair/office, -/obj/effect/landmark/start/brig_physician, -/obj/machinery/duct, -/turf/open/floor/iron/white/textured, -/area/station/security/medical) "vxd" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -67243,16 +67294,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/engineering/atmos) -"vEA" = ( -/obj/structure/table, -/obj/item/paper_bin/carbon{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/item/stamp/hop, -/turf/open/floor/iron, -/area/station/command/heads_quarters/hop) "vEE" = ( /obj/machinery/light/small/directional/east, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -67909,16 +67950,6 @@ }, /turf/open/floor/iron, /area/station/service/hydroponics) -"vRN" = ( -/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/machinery/duct, -/turf/open/floor/iron, -/area/station/security/processing) "vRO" = ( /obj/machinery/mineral/unloading_machine{ dir = 1; @@ -67958,6 +67989,13 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) +"vSh" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/table/reinforced/rglass, +/obj/machinery/computer/records/medical/laptop, +/turf/open/floor/iron/white/textured, +/area/station/security/medical) "vSi" = ( /turf/closed/wall, /area/mine/eva) @@ -68066,6 +68104,17 @@ /obj/structure/closet/firecloset, /turf/open/floor/plating, /area/station/maintenance/starboard/lesser) +"vTD" = ( +/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/landmark/event_spawn, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/security/brig/upper) "vTJ" = ( /obj/structure/table, /obj/item/toy/plush/slimeplushie{ @@ -68150,6 +68199,13 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/fore) +"vWd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/reagent_containers/blood, +/obj/machinery/iv_drip, +/turf/open/floor/iron/white/textured, +/area/station/security/medical) "vWe" = ( /obj/effect/turf_decal/siding/yellow{ dir = 4 @@ -68831,13 +68887,6 @@ dir = 4 }, /area/station/science/xenobiology) -"whd" = ( -/obj/machinery/airalarm/directional/east, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron/white/textured, -/area/station/security/medical) "whf" = ( /obj/machinery/atmospherics/pipe/smart/manifold/purple/visible, /turf/open/floor/glass/reinforced, @@ -69297,15 +69346,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/aft) -"wox" = ( -/obj/structure/table/reinforced, -/obj/effect/landmark/event_spawn, -/obj/item/clipboard, -/obj/item/folder/yellow, -/obj/item/paper/monitorkey, -/obj/item/stamp/ce, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) "woF" = ( /obj/machinery/modular_computer/preset/cargochat/medical{ dir = 1 @@ -69996,12 +70036,6 @@ }, /turf/open/floor/iron, /area/mine/laborcamp) -"wAq" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/station/security/medical) "wAv" = ( /obj/structure/chair/comfy/brown{ dir = 1 @@ -70144,17 +70178,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/disposal) -"wCf" = ( -/obj/item/storage/medkit/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/medkit/regular, -/obj/structure/table/reinforced/rglass, -/obj/structure/window/reinforced/spawner/directional/south, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron/white/textured, -/area/station/security/medical) "wCg" = ( /obj/machinery/light/small/directional/east, /obj/machinery/light_switch/directional/east, @@ -70205,6 +70228,20 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/engineering/atmos/mix) +"wCR" = ( +/obj/item/storage/box/bodybags, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/item/reagent_containers/syringe{ + name = "steel point" + }, +/obj/item/reagent_containers/cup/bottle/multiver, +/obj/item/reagent_containers/cup/bottle/epinephrine, +/obj/structure/table/reinforced/rglass, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/item/roller, +/obj/item/clothing/neck/stethoscope, +/turf/open/floor/iron/white/textured, +/area/station/security/medical) "wCU" = ( /obj/structure/cable, /obj/structure/table, @@ -73228,22 +73265,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/central) -"xyn" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/door/poddoor/preopen{ - id = "xenobiomain"; - name = "Containment Blast Door" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/structure/cable, -/obj/machinery/duct, -/obj/structure/liquid_barrier, -/turf/open/floor/iron, -/area/station/science/xenobiology) "xyx" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -73382,19 +73403,6 @@ }, /turf/open/floor/iron, /area/station/commons/vacant_room/commissary) -"xAQ" = ( -/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/red/half/contrasted{ - dir = 1 - }, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/security/brig/upper) "xAS" = ( /obj/item/seeds/apple, /obj/item/seeds/banana, @@ -74149,10 +74157,6 @@ }, /turf/open/floor/plating, /area/station/engineering/atmos) -"xMn" = ( -/obj/machinery/holopad, -/turf/open/floor/iron/white/textured, -/area/station/security/medical) "xMq" = ( /turf/closed/mineral/random/snow, /area/icemoon/underground/explored) @@ -74381,19 +74385,6 @@ dir = 1 }, /area/mine/eva/lower) -"xQG" = ( -/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/red/half/contrasted, -/obj/machinery/duct, -/turf/open/floor/iron/dark/side{ - dir = 1 - }, -/area/station/security/processing) "xQO" = ( /obj/structure/disposalpipe/segment, /obj/machinery/light/directional/west, @@ -75193,6 +75184,21 @@ /obj/effect/turf_decal/tile/yellow/opposingcorners, /turf/open/floor/iron/white, /area/station/maintenance/port/fore) +"ydk" = ( +/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/structure/cable, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 8 + }, +/obj/machinery/duct, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/security/processing) "ydt" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, @@ -75533,12 +75539,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/primary/central/fore) -"ykW" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/stamp/captain, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) "ykZ" = ( /obj/effect/turf_decal/siding/wideplating/dark, /obj/item/radio/intercom/directional/east, @@ -184752,7 +184752,7 @@ ffe pXj cZT qSE -qLN +oNt cZT cZT pXj @@ -185013,7 +185013,7 @@ hRC euM mVO sfv -xyn +mAP dmj rXD rXD @@ -186292,7 +186292,7 @@ alM oxO ffe ffe -iwx +ipi ffe ffe xwd @@ -227645,7 +227645,7 @@ sdi tKI ouZ vGC -nWk +efV sim bAa xal @@ -233312,7 +233312,7 @@ rpu ybI nnR tuz -vEA +jSE bhK rAA cpm @@ -235305,7 +235305,7 @@ nbp mgU nlz ioi -nBx +vcI azx tDw rhf @@ -235569,8 +235569,8 @@ eDM xFm tGB nCh -fwh -ijU +aZv +vTD bqG lbk fqH @@ -235826,8 +235826,8 @@ mgU kzw kzw kzw -wAq -jaw +hkd +cpk xwf aPd cUf @@ -236080,12 +236080,12 @@ loI ehy sBt mgU -fLX -kcc -tpX -oIC -jjt -tpj +hwo +doE +ovq +wCR +tki +lLJ jNp jNp jNp @@ -236337,11 +236337,11 @@ bUx bUx bUx bUx -mBK -eGj -xMn -ocl -jjt +gmM +mjb +ulQ +erV +tki bRG hfA idv @@ -236594,11 +236594,11 @@ bUx jOQ bxQ bUx -ipP -vxc -aKt -tDk -iAo +vSh +kBx +ayf +bui +hfg lUw iWS vwt @@ -236851,11 +236851,11 @@ bUx xmO ubE bUx -iLe +imQ aOS -rud -jkf -mWM +hqw +nhr +ldg bRG pmr qPp @@ -236947,7 +236947,7 @@ mBB mQH ojv htc -wox +gGL vTi qKQ aTj @@ -237108,12 +237108,12 @@ bUx xmO deY bUx -kdT -hQd -whd -wCf -mWM -nNQ +gZd +vWd +svV +dKk +ldg +rkq kpj fGq eig @@ -237368,8 +237368,8 @@ bUx kzw kzw kzw -dyr -xAQ +iHf +mwe mEI jNp jNp @@ -237414,7 +237414,7 @@ oRk mvc mvc rAW -ykW +uNM ghJ uEm sqU @@ -237623,10 +237623,10 @@ eyb gck ykw fXi -vhL -law +ydk +fsD eqI -rAN +fZr wAT lbk bln @@ -237880,7 +237880,7 @@ rVy wOc lEj cKv -nsL +twa eyb hAQ ksC @@ -238137,7 +238137,7 @@ clq qgO qgO qgO -xQG +lWp ykw mfH cIY @@ -238394,7 +238394,7 @@ rVy lEj fCW nUg -dKP +qRc ykw ybD kfc @@ -238651,7 +238651,7 @@ mvl mvl kkl ezO -qOP +oag ykw nOQ cqx @@ -238908,7 +238908,7 @@ bLd dAa kkl dhU -xQG +lWp olY hQi mAl @@ -239165,7 +239165,7 @@ bEf iME tsH bLb -xQG +lWp ykw pDB wNt @@ -239422,7 +239422,7 @@ nsO eWB kkl rEP -xQG +lWp ykw jpE gnL @@ -239679,7 +239679,7 @@ bnM mWq kkl viO -gUs +gqe ykw lbk lbk @@ -239936,7 +239936,7 @@ kkl kkl kkl eyb -rTX +qmY ykw bln bln @@ -240193,7 +240193,7 @@ arT eyb iKS xIk -bYF +pfQ ykw bUx bUx @@ -240450,7 +240450,7 @@ ufm eyb wug uLF -nSH +aUE hqi dKA deY @@ -240707,7 +240707,7 @@ bOg hFC xyS fhu -bLI +qeT ykw skl deY @@ -240964,10 +240964,10 @@ blT ntq cWG ekW -vRN -fEA -uHF -lYS +nsh +dcv +ceA +hGK eqq qdK eqq @@ -241223,8 +241223,8 @@ aML hPq hSJ ykw -jhL -hwh +erK +foI deY deY deY @@ -247699,7 +247699,7 @@ vBG wvW lmM vBG -ghI +klh oMR hsC vBG @@ -251827,7 +251827,7 @@ jbU iyP dUe ank -dez +bNP fUM vaQ jbU diff --git a/_maps/map_files/KiloStation/KiloStation.dmm b/_maps/map_files/KiloStation/KiloStation.dmm index 2efd4297657a..5c953f9801aa 100644 --- a/_maps/map_files/KiloStation/KiloStation.dmm +++ b/_maps/map_files/KiloStation/KiloStation.dmm @@ -587,6 +587,49 @@ }, /turf/open/floor/plating, /area/station/security/execution/transfer) +"agL" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/folder/yellow, +/obj/item/computer_disk/quartermaster, +/obj/item/computer_disk/quartermaster, +/obj/item/computer_disk/quartermaster, +/obj/item/pen/fountain, +/obj/item/stamp{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/stamp/denied{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/stamp/head/qm{ + pixel_x = 8; + pixel_y = 10 + }, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/obj/item/lighter{ + pixel_x = 11; + pixel_y = -7 + }, +/obj/item/clothing/mask/cigarette/cigar{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/item/clothing/mask/cigarette/cigar{ + pixel_x = 10; + pixel_y = -1 + }, +/obj/item/flashlight/lamp/green{ + pixel_x = -5; + pixel_y = 7 + }, +/turf/open/floor/carpet/orange, +/area/station/cargo/quartermaster) "ahz" = ( /obj/effect/turf_decal/tile/yellow/half/contrasted{ dir = 4 @@ -1501,16 +1544,6 @@ /obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, /turf/open/floor/engine, /area/station/ai_monitored/turret_protected/aisat/atmos) -"aup" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/obj/structure/cable, -/obj/effect/turf_decal/siding/dark_red{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/medical) "auN" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/airalarm/directional/west, @@ -1803,6 +1836,10 @@ "aAu" = ( /turf/open/floor/plating, /area/station/security/prison/mess) +"aAI" = ( +/obj/machinery/duct, +/turf/open/floor/iron/showroomfloor, +/area/station/security/medical) "aAP" = ( /obj/effect/turf_decal/tile/yellow/anticorner/contrasted, /turf/open/floor/iron/showroomfloor, @@ -2670,6 +2707,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/tcommsat/computer) +"aQS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/duct, +/turf/open/floor/iron, +/area/station/security/brig) "aRI" = ( /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 8 @@ -3292,6 +3336,15 @@ /obj/effect/mapping_helpers/airlock/access/all/command/general, /turf/open/floor/iron/dark, /area/station/command/bridge) +"bdx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/machinery/duct, +/turf/open/floor/iron, +/area/station/security/brig) "bdF" = ( /obj/machinery/door/airlock/engineering{ name = "Emergency Storage" @@ -4299,6 +4352,21 @@ /obj/effect/turf_decal/tile/red/opposingcorners, /turf/open/floor/iron/showroomfloor, /area/station/service/bar/atrium) +"bvP" = ( +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/item/stamp/head/captain{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/pen/fountain/captain, +/obj/item/radio/intercom/directional/south, +/obj/structure/table/wood, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain) "bvR" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/decal/cleanable/dirt, @@ -5526,18 +5594,6 @@ /obj/structure/transit_tube/diagonal/topleft, /turf/open/space/basic, /area/space/nearstation) -"bRo" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/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/duct, -/obj/structure/grille/broken, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) "bRv" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/structure/crate, @@ -6054,20 +6110,6 @@ }, /turf/open/floor/iron/dark, /area/station/service/kitchen) -"bZe" = ( -/obj/machinery/door/airlock/maintenance, -/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/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "brig-maint-passthrough" - }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/obj/machinery/duct, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) "bZg" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -7115,13 +7157,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/station/science/ordnance) -"clH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/security/brig) "clL" = ( /obj/structure/cable, /obj/effect/turf_decal/stripes/line, @@ -7155,6 +7190,19 @@ }, /turf/open/floor/iron, /area/station/security/prison) +"cmb" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/structure/bodycontainer/crematorium{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/security/medical) "cme" = ( /obj/effect/turf_decal/tile/neutral/opposingcorners, /obj/effect/turf_decal/tile/brown/opposingcorners{ @@ -8296,26 +8344,6 @@ }, /turf/open/floor/iron/dark, /area/station/cargo/sorting) -"cHI" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/pen/fourcolor, -/obj/item/stamp/hop{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue/half/contrasted{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hop) "cHL" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/stripes/line{ @@ -9113,6 +9141,19 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron/dark/corner, /area/station/hallway/primary/central/fore) +"cWs" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/door/airlock/research{ + name = "Xenobiology Lab" + }, +/obj/effect/mapping_helpers/airlock/access/any/science/xenobio, +/obj/effect/mapping_helpers/airlock/access/any/science/genetics, +/obj/effect/decal/cleanable/dirt, +/obj/structure/liquid_barrier, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) "cWu" = ( /obj/effect/turf_decal/tile/yellow/half/contrasted{ dir = 4 @@ -9434,17 +9475,6 @@ /obj/effect/spawner/random/maintenance/two, /turf/open/floor/plating, /area/station/maintenance/fore) -"dbR" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/burnt_floor, -/obj/machinery/duct, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) "dbW" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -10992,6 +11022,25 @@ /obj/machinery/air_sensor/nitrogen_tank, /turf/open/floor/engine/n2, /area/station/engineering/atmos) +"dyH" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/structure/table/glass, +/obj/machinery/computer/records/medical/laptop, +/obj/effect/turf_decal/siding/dark_red, +/turf/open/floor/iron/showroomfloor, +/area/station/security/medical) "dyK" = ( /obj/structure/sign/warning/electric_shock, /turf/closed/wall/r_wall, @@ -15384,49 +15433,6 @@ /obj/structure/sign/poster/contraband/random/directional/north, /turf/open/floor/plating, /area/station/cargo/warehouse) -"eYb" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/folder/yellow, -/obj/item/computer_disk/quartermaster, -/obj/item/computer_disk/quartermaster, -/obj/item/computer_disk/quartermaster, -/obj/item/pen/fountain, -/obj/item/stamp{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/stamp/denied{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/stamp/qm{ - pixel_x = 8; - pixel_y = 10 - }, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen, -/obj/item/lighter{ - pixel_x = 11; - pixel_y = -7 - }, -/obj/item/clothing/mask/cigarette/cigar{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/item/clothing/mask/cigarette/cigar{ - pixel_x = 10; - pixel_y = -1 - }, -/obj/item/flashlight/lamp/green{ - pixel_x = -5; - pixel_y = 7 - }, -/turf/open/floor/carpet/orange, -/area/station/cargo/quartermaster) "eYd" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -16466,21 +16472,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/starboard) -"fnp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/machinery/door/window/left/directional/south{ - dir = 1; - name = "Maximum Security Test Chamber" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple/full, -/obj/effect/mapping_helpers/airlock/access/any/science/xenobio, -/obj/structure/liquid_barrier, -/turf/open/floor/iron/showroomfloor, -/area/station/science/xenobiology) "fnu" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/neutral/half/contrasted{ @@ -16644,14 +16635,6 @@ }, /turf/open/floor/iron/dark/corner, /area/station/hallway/primary/starboard) -"fqx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/obj/structure/reagent_dispensers/plumbed{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) "fqG" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -16717,6 +16700,35 @@ }, /turf/open/floor/iron/dark, /area/station/service/chapel) +"frB" = ( +/obj/structure/table/wood, +/obj/item/storage/photo_album{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/taperecorder{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/camera, +/obj/item/pen{ + pixel_x = -7; + pixel_y = -5 + }, +/obj/machinery/light/small/directional/west, +/obj/machinery/camera/directional/west{ + c_tag = "Library Backroom"; + name = "library camera" + }, +/obj/structure/sign/painting/large/library_private{ + dir = 8; + pixel_x = -29 + }, +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/item/radio/radio_mic, +/turf/open/floor/iron/dark, +/area/station/service/library) "frO" = ( /turf/closed/wall/r_wall, /area/station/science/genetics) @@ -17293,6 +17305,18 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, /area/station/hallway/primary/central/fore) +"fAb" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/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/duct, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) "fAp" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -17691,15 +17715,6 @@ }, /turf/open/floor/iron/dark, /area/station/maintenance/disposal/incinerator) -"fEr" = ( -/obj/machinery/firealarm/directional/east, -/obj/machinery/iv_drip, -/obj/item/reagent_containers/blood, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/medical) "fEu" = ( /obj/effect/turf_decal/siding/yellow{ dir = 4 @@ -17731,15 +17746,6 @@ /obj/effect/mapping_helpers/airlock/access/all/service/bar, /turf/open/floor/iron/dark, /area/station/hallway/secondary/service) -"fEI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/security/brig) "fEP" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -18209,6 +18215,23 @@ /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/iron/dark, /area/station/maintenance/central) +"fLz" = ( +/obj/machinery/door/poddoor/preopen{ + id = "prisonblast"; + name = "Prison Blast Door" + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/button/door/directional/north{ + id = "prisonblast"; + name = "Prison Lockdown"; + req_access = list("brig") + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/machinery/duct, +/turf/open/floor/iron/dark, +/area/station/security/brig) "fLD" = ( /obj/machinery/power/terminal{ dir = 8 @@ -19269,6 +19292,20 @@ }, /turf/open/floor/wood, /area/station/security/detectives_office) +"gdY" = ( +/obj/machinery/door/airlock/maintenance, +/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/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "brig-maint-passthrough" + }, +/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/obj/machinery/duct, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) "gel" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -19433,6 +19470,18 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) +"ggK" = ( +/obj/structure/cable, +/obj/structure/table/wood, +/obj/item/stamp/head/hos, +/obj/item/stamp/denied{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/folder/red, +/obj/item/clipboard, +/turf/open/floor/carpet/red, +/area/station/command/heads_quarters/hos) "ggS" = ( /turf/closed/wall/r_wall, /area/station/science/ordnance) @@ -20479,6 +20528,10 @@ /obj/effect/turf_decal/tile/purple/half/contrasted, /turf/open/floor/iron/showroomfloor, /area/station/science/lab) +"gxB" = ( +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/iron/showroomfloor, +/area/station/security/medical) "gyb" = ( /turf/open/floor/plating/rust, /area/station/security/prison) @@ -20566,18 +20619,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/starboard) -"gzh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/mapping_helpers/burnt_floor, -/obj/structure/reagent_dispensers/plumbed{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) "gzm" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -21045,7 +21086,7 @@ name = "service camera" }, /obj/effect/turf_decal/tile/red/opposingcorners, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron/showroomfloor, /area/station/service/bar/atrium) "gHA" = ( @@ -22111,16 +22152,6 @@ /obj/item/radio/intercom/prison/directional/west, /turf/open/floor/iron, /area/station/security/prison/garden) -"haZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Lab" - }, -/obj/effect/mapping_helpers/airlock/access/any/science/xenobio, -/obj/structure/liquid_barrier, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) "hbf" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -22301,6 +22332,20 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/security/bitden) +"hdW" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/landmark/start/brig_physician, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/showroomfloor, +/area/station/security/medical) "hea" = ( /obj/effect/turf_decal/siding/blue, /obj/effect/turf_decal/tile/blue/half/contrasted, @@ -22401,18 +22446,6 @@ }, /turf/open/floor/iron/dark/textured, /area/station/cargo/storage) -"hfP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Prison Wing" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "brig-maint-passthrough" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/obj/machinery/duct, -/turf/open/floor/iron/dark, -/area/station/security/execution/transfer) "hfR" = ( /obj/structure/flora/bush/flowers_br/style_random, /mob/living/basic/chicken/brown{ @@ -22525,6 +22558,24 @@ }, /turf/open/floor/iron/showroomfloor, /area/station/science/lab) +"hhF" = ( +/obj/structure/table/reinforced, +/obj/item/folder/blue{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/folder/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/folder{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/lighter, +/obj/item/clothing/mask/cigarette/cigar/cohiba, +/obj/item/stamp/head/ce, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/iron/dark, +/area/station/command/heads_quarters/ce) "hib" = ( /obj/machinery/door/airlock/maintenance/external{ name = "Construction Zone" @@ -22994,6 +23045,16 @@ /obj/item/hand_labeler, /turf/open/floor/iron/dark, /area/station/engineering/lobby) +"hnF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/airlock/research{ + name = "Xenobiology Lab" + }, +/obj/effect/mapping_helpers/airlock/access/any/science/xenobio, +/obj/structure/liquid_barrier, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) "hnL" = ( /obj/machinery/telecomms/server/presets/engineering, /turf/open/floor/circuit/green/telecomms/mainframe, @@ -23298,18 +23359,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/station/commons/storage/art) -"hsQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/item/storage/secure/briefcase{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/effect/turf_decal/trimline/blue/filled/line, -/turf/open/floor/iron/showroomfloor, -/area/station/command/heads_quarters/cmo) "htn" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/tile/blue/opposingcorners, @@ -23446,6 +23495,16 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark, /area/station/hallway/primary/fore) +"hwo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/cable, +/obj/machinery/duct, +/turf/open/floor/iron, +/area/station/security/brig) "hwA" = ( /turf/closed/wall/rust, /area/station/maintenance/solars/starboard/aft) @@ -26407,10 +26466,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, /area/station/hallway/primary/central) -"inI" = ( -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/showroomfloor, -/area/station/security/medical) "ios" = ( /turf/closed/wall/rust, /area/station/service/kitchen) @@ -29474,18 +29529,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"jgv" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/medical/glass{ - name = "Infirmary" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/obj/machinery/duct, -/turf/open/floor/iron/dark, -/area/station/security/medical) "jgz" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -29657,20 +29700,6 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron/dark, /area/station/security/courtroom) -"jiZ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red/half/contrasted, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/box, -/obj/effect/turf_decal/siding/dark_red{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/medical) "jjf" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -30144,6 +30173,16 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) +"jsC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/obj/structure/cable, +/obj/effect/turf_decal/siding/dark_red{ + dir = 8 + }, +/turf/open/floor/iron/showroomfloor, +/area/station/security/medical) "jsI" = ( /obj/structure/hoop{ dir = 8 @@ -30338,6 +30377,18 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) +"jwz" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/security/medical) "jwQ" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/tile/neutral/half/contrasted{ @@ -30719,7 +30770,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) "jDU" = ( @@ -30854,6 +30905,26 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, /area/station/maintenance/port/greater) +"jGK" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/pen/fourcolor, +/obj/item/stamp/head/hop{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/iron/dark, +/area/station/command/heads_quarters/hop) "jGU" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/stripes/line{ @@ -30884,25 +30955,6 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron/dark, /area/station/service/janitor) -"jHN" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 1 - }, -/obj/effect/turf_decal/box, -/obj/structure/table/glass, -/obj/machinery/computer/records/medical/laptop, -/obj/effect/turf_decal/siding/dark_red, -/turf/open/floor/iron/showroomfloor, -/area/station/security/medical) "jHR" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -31287,16 +31339,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/station/medical/surgery/aft) -"jMh" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/shower/directional/north, -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/turf/open/floor/iron/white/textured, -/area/station/security/medical) "jMo" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -31361,24 +31403,6 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"jNM" = ( -/obj/structure/table/reinforced, -/obj/item/folder/blue{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/folder/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/folder{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/lighter, -/obj/item/clothing/mask/cigarette/cigar/cohiba, -/obj/item/stamp/ce, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) "jNR" = ( /obj/structure/girder, /obj/effect/decal/cleanable/dirt, @@ -32360,6 +32384,18 @@ /obj/structure/sign/warning/biohazard, /turf/closed/wall, /area/station/maintenance/starboard) +"khV" = ( +/obj/effect/decal/cleanable/dirt, +/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 = 9 + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) "kii" = ( /obj/structure/disposalpipe/segment, /obj/machinery/light/neon_lining{ @@ -32666,6 +32702,49 @@ /obj/effect/turf_decal/tile/red/fourcorners, /turf/open/floor/iron/white, /area/station/security/prison/safe) +"koo" = ( +/obj/structure/table/wood, +/obj/item/device/walkman{ + pixel_y = 7; + pixel_x = -8 + }, +/obj/item/device/walkman{ + pixel_y = 7; + pixel_x = -8 + }, +/obj/item/device/walkman{ + pixel_y = 7; + pixel_x = -8 + }, +/obj/item/device/walkman{ + pixel_y = 7; + pixel_x = -8 + }, +/obj/item/device/walkman{ + pixel_y = 7; + pixel_x = -8 + }, +/obj/item/device/walkman{ + pixel_y = 7; + pixel_x = -8 + }, +/obj/item/device/walkman{ + pixel_y = 7; + pixel_x = -8 + }, +/obj/item/device/walkman{ + pixel_y = 7; + pixel_x = -8 + }, +/obj/item/device/walkman{ + pixel_y = 7; + pixel_x = -8 + }, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/cassette_rack/prefilled, +/turf/open/floor/iron/dark, +/area/station/service/library) "kox" = ( /obj/machinery/atmospherics/miner/carbon_dioxide, /turf/open/floor/engine/co2, @@ -33036,6 +33115,18 @@ /obj/structure/closet/firecloset/full, /turf/open/floor/iron, /area/station/service/chapel/dock) +"kwq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/mapping_helpers/burnt_floor, +/obj/structure/reagent_dispensers/plumbed{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) "kwu" = ( /obj/machinery/camera/directional/south{ c_tag = "Xenobiology Entrance"; @@ -33667,6 +33758,24 @@ /obj/structure/reagent_dispensers/servingdish, /turf/open/floor/iron/white, /area/station/security/prison/mess) +"kGZ" = ( +/obj/structure/table, +/obj/effect/turf_decal/bot, +/obj/machinery/recharger{ + pixel_x = -3 + }, +/obj/structure/cable, +/obj/item/toy/figure/rd{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/stamp/head/rd{ + pixel_x = 8 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/iron/dark, +/area/station/command/heads_quarters/rd) "kHh" = ( /obj/machinery/door/airlock/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -33896,15 +34005,6 @@ /obj/effect/turf_decal/box, /turf/open/floor/iron, /area/station/security/brig) -"kKM" = ( -/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, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/security/brig) "kKP" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -34036,19 +34136,6 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, /area/station/maintenance/starboard) -"kNe" = ( -/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/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/obj/machinery/duct, -/turf/open/floor/plating, -/area/station/security/execution/transfer) "kNf" = ( /obj/structure/sign/warning/electric_shock, /turf/closed/wall/r_wall, @@ -35310,6 +35397,19 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/fore) +"lha" = ( +/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/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/security/execution/transfer) "lhf" = ( /obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, @@ -40149,6 +40249,19 @@ /obj/effect/turf_decal/tile/neutral/anticorner/contrasted, /turf/open/floor/iron/dark, /area/station/security/office) +"mLZ" = ( +/obj/machinery/door/airlock/research{ + name = "Xenobiology Lab" + }, +/obj/effect/mapping_helpers/airlock/access/any/science/xenobio, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/liquid_barrier, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) "mMb" = ( /obj/effect/turf_decal/delivery, /obj/effect/decal/cleanable/cobweb, @@ -40349,16 +40462,6 @@ }, /turf/open/floor/iron/dark, /area/station/ai_monitored/command/storage/satellite) -"mPG" = ( -/obj/machinery/vending/wallmed/directional/east, -/obj/machinery/computer/operating{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/medical) "mPP" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -41300,6 +41403,18 @@ /obj/structure/closet/secure_closet/hydroponics, /turf/open/floor/iron/dark, /area/station/service/hydroponics) +"ndy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Prison Wing" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "brig-maint-passthrough" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/machinery/duct, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) "ndP" = ( /obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, /obj/effect/decal/cleanable/dirt, @@ -41671,19 +41786,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, /area/station/security/detectives_office) -"nmc" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Lab" - }, -/obj/effect/mapping_helpers/airlock/access/any/science/xenobio, -/obj/effect/mapping_helpers/airlock/access/any/science/genetics, -/obj/effect/decal/cleanable/dirt, -/obj/structure/liquid_barrier, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) "nml" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -41949,6 +42051,15 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/primary/starboard) +"npE" = ( +/obj/machinery/firealarm/directional/east, +/obj/machinery/iv_drip, +/obj/item/reagent_containers/blood, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/showroomfloor, +/area/station/security/medical) "npR" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/closed/wall, @@ -42646,16 +42757,6 @@ /obj/machinery/light/directional/south, /turf/open/floor/iron/grimy, /area/station/hallway/primary/fore) -"nCF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/cable, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/security/brig) "nCI" = ( /obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/iron/dark, @@ -44074,17 +44175,6 @@ }, /turf/open/floor/plating, /area/station/security/prison/safe) -"oes" = ( -/obj/structure/table/optable, -/obj/machinery/button/crematorium/indestructible{ - pixel_x = 22 - }, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/medical) "oeF" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/showroomfloor, @@ -44870,11 +44960,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/engineering/atmos) -"oux" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/iron/showroomfloor, -/area/station/security/medical) "ouC" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/cable, @@ -47687,16 +47772,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/security/courtroom) -"pon" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/obj/machinery/duct, -/turf/open/floor/iron, -/area/station/security/brig) "pop" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -47707,6 +47782,17 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) +"pov" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Infirmary" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/effect/turf_decal/siding/dark_red/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/security/medical) "poK" = ( /obj/machinery/suit_storage_unit/ce, /obj/effect/turf_decal/delivery, @@ -49118,6 +49204,17 @@ /obj/machinery/station_map/engineering/directional/east, /turf/open/floor/carpet/orange, /area/station/cargo/quartermaster) +"pMR" = ( +/obj/structure/table/optable, +/obj/machinery/button/crematorium/indestructible{ + pixel_x = 22 + }, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/showroomfloor, +/area/station/security/medical) "pMS" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -49253,21 +49350,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/security/prison/garden) -"pOS" = ( -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/item/stamp/captain{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/pen/fountain/captain, -/obj/item/radio/intercom/directional/south, -/obj/structure/table/wood, -/turf/open/floor/carpet/royalblue, -/area/station/command/heads_quarters/captain) "pOV" = ( /turf/closed/wall, /area/station/service/chapel/storage) @@ -49571,14 +49653,6 @@ }, /turf/open/floor/iron, /area/station/security/courtroom) -"pUm" = ( -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/obj/structure/closet/secure_closet/brig_physician, -/obj/item/clothing/suit/jacket/straight_jacket, -/turf/open/floor/iron/showroomfloor, -/area/station/security/medical) "pUA" = ( /obj/structure/table/reinforced, /obj/structure/disposalpipe/segment{ @@ -50788,6 +50862,14 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron/dark, /area/station/service/lawoffice) +"qnN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/obj/structure/reagent_dispensers/plumbed{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) "qnT" = ( /obj/structure/closet/secure_closet/chemical, /obj/structure/window/reinforced/spawner/directional/north, @@ -51341,6 +51423,19 @@ /obj/effect/mapping_helpers/airlock/access/all/science/general, /turf/open/floor/iron/dark, /area/station/maintenance/starboard) +"qwY" = ( +/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/red/half/contrasted{ + dir = 1 + }, +/obj/machinery/duct, +/obj/effect/turf_decal/siding/dark_red/corner{ + dir = 8 + }, +/turf/open/floor/iron/showroomfloor, +/area/station/security/medical) "qxh" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -53065,7 +53160,7 @@ /obj/effect/turf_decal/tile/green/half/contrasted{ dir = 1 }, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron, /area/station/hallway/primary/central/fore) "qXA" = ( @@ -53151,6 +53246,14 @@ "qZx" = ( /turf/closed/wall/r_wall/rust, /area/station/tcommsat/server) +"qZC" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/obj/structure/closet/secure_closet/brig_physician, +/obj/item/clothing/suit/jacket/straight_jacket, +/turf/open/floor/iron/showroomfloor, +/area/station/security/medical) "qZL" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -53515,19 +53618,6 @@ }, /turf/open/floor/iron/dark, /area/station/medical/pathology) -"reO" = ( -/obj/machinery/door/airlock/research{ - name = "Xenobiology Lab" - }, -/obj/effect/mapping_helpers/airlock/access/any/science/xenobio, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/liquid_barrier, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) "reT" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line{ @@ -53992,18 +54082,6 @@ }, /turf/open/floor/iron/dark, /area/station/engineering/atmos) -"rnW" = ( -/obj/effect/decal/cleanable/dirt, -/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 = 9 - }, -/obj/effect/mapping_helpers/broken_floor, -/obj/machinery/duct, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) "ron" = ( /obj/effect/turf_decal/tile/purple/anticorner/contrasted, /obj/effect/landmark/start/scientist, @@ -55388,10 +55466,6 @@ /obj/machinery/light/small/directional/south, /turf/open/floor/plating, /area/station/hallway/primary/central/fore) -"rJs" = ( -/obj/machinery/duct, -/turf/open/floor/iron/showroomfloor, -/area/station/security/medical) "rJJ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -56399,25 +56473,6 @@ "sbq" = ( /turf/open/floor/carpet/green, /area/station/security/detectives_office) -"sbu" = ( -/obj/machinery/requests_console/directional/west{ - anon_tips_receiver = 1; - assistance_requestable = 1; - department = "Security"; - name = "Security Requests Console"; - pixel_y = -32 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/structure/table/glass, -/obj/machinery/camera/directional/east{ - c_tag = "Security Infirmary" - }, -/obj/item/storage/medkit/regular, -/obj/item/reagent_containers/cup/bottle/epinephrine, -/obj/item/reagent_containers/syringe, -/obj/effect/turf_decal/tile/red/anticorner/contrasted, -/turf/open/floor/iron/showroomfloor, -/area/station/security/medical) "sby" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/siding/white{ @@ -56831,7 +56886,7 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 1 }, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron/dark/corner{ dir = 4 }, @@ -57156,6 +57211,16 @@ "slC" = ( /turf/open/floor/iron, /area/station/hallway/secondary/entry) +"slJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/machinery/duct, +/turf/open/floor/iron, +/area/station/security/brig) "slM" = ( /obj/machinery/door/airlock/external{ name = "Medical Escape Pod"; @@ -57370,11 +57435,6 @@ /obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plating, /area/station/maintenance/department/security/upper) -"soW" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/red/half/contrasted, -/turf/open/floor/iron/showroomfloor, -/area/station/security/medical) "spd" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, /obj/effect/turf_decal/tile/blue/half/contrasted, @@ -58227,28 +58287,6 @@ }, /turf/open/floor/iron, /area/station/commons/storage/primary) -"sEs" = ( -/obj/item/storage/box/bodybags, -/obj/item/pen, -/obj/structure/table, -/obj/item/radio/intercom/directional/west, -/obj/item/clothing/gloves/latex, -/obj/item/healthanalyzer, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = 5; - pixel_y = -1 - }, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark/textured_half{ - dir = 1 - }, -/area/station/security/medical) "sEx" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -62271,19 +62309,6 @@ /obj/machinery/telecomms/bus/preset_three, /turf/open/floor/circuit/green/telecomms/mainframe, /area/station/tcommsat/server) -"tRx" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/obj/structure/bodycontainer/crematorium{ - dir = 4 - }, -/turf/open/floor/iron/dark/textured_half{ - dir = 1 - }, -/area/station/security/medical) "tRL" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -62504,6 +62529,16 @@ }, /turf/open/floor/iron/showroomfloor, /area/station/medical/chemistry) +"tWA" = ( +/obj/effect/decal/cleanable/dirt, +/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/mapping_helpers/broken_floor, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) "tWL" = ( /obj/machinery/door/poddoor/preopen{ id = "bridge blast"; @@ -63609,6 +63644,25 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/engineering/atmos/storage/gas) +"unZ" = ( +/obj/machinery/requests_console/directional/west{ + anon_tips_receiver = 1; + assistance_requestable = 1; + department = "Security"; + name = "Security Requests Console"; + pixel_y = -32 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/structure/table/glass, +/obj/machinery/camera/directional/east{ + c_tag = "Security Infirmary" + }, +/obj/item/storage/medkit/regular, +/obj/item/reagent_containers/cup/bottle/epinephrine, +/obj/item/reagent_containers/syringe, +/obj/effect/turf_decal/tile/red/anticorner/contrasted, +/turf/open/floor/iron/showroomfloor, +/area/station/security/medical) "uok" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -63763,6 +63817,20 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, /area/station/hallway/primary/port) +"uqn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red/half/contrasted, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/siding/dark_red{ + dir = 8 + }, +/turf/open/floor/iron/showroomfloor, +/area/station/security/medical) "uqp" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -64258,6 +64326,14 @@ /obj/effect/mapping_helpers/airlock/access/any/security/maintenance, /turf/open/floor/iron/dark, /area/station/maintenance/port/lesser) +"uzH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/siding/dark_red{ + dir = 8 + }, +/turf/open/floor/iron/showroomfloor, +/area/station/security/medical) "uzQ" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/decal/cleanable/dirt, @@ -64367,14 +64443,6 @@ /obj/effect/landmark/navigate_destination/gateway, /turf/open/floor/iron, /area/station/command/gateway) -"uCd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/siding/dark_red{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/medical) "uCf" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, @@ -64484,6 +64552,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/commons/fitness/recreation) +"uEe" = ( +/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, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/machinery/duct, +/turf/open/floor/iron, +/area/station/security/brig) "uEi" = ( /obj/machinery/portable_atmospherics/scrubber, /obj/effect/turf_decal/bot, @@ -64605,6 +64682,16 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/station/maintenance/department/chapel/monastery) +"uGr" = ( +/obj/machinery/vending/wallmed/directional/east, +/obj/machinery/computer/operating{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/showroomfloor, +/area/station/security/medical) "uGA" = ( /obj/structure/plasticflaps/opaque, /obj/effect/turf_decal/delivery, @@ -65573,16 +65660,28 @@ }, /turf/open/floor/iron/dark, /area/station/service/hydroponics/garden) -"uZr" = ( -/obj/effect/decal/cleanable/dirt, -/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/mapping_helpers/broken_floor, -/obj/machinery/duct, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) +"uZI" = ( +/obj/item/storage/box/bodybags, +/obj/item/pen, +/obj/structure/table, +/obj/item/radio/intercom/directional/west, +/obj/item/clothing/gloves/latex, +/obj/item/healthanalyzer, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 5; + pixel_y = -1 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/security/medical) "uZN" = ( /obj/structure/table/wood, /obj/structure/mirror/directional/east, @@ -65731,6 +65830,17 @@ /obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, /turf/open/floor/iron/dark, /area/station/engineering/atmos/storage/gas) +"vbk" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/burnt_floor, +/obj/machinery/duct, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) "vbo" = ( /obj/structure/chair/stool/bar/directional/east, /obj/effect/decal/cleanable/dirt, @@ -65906,17 +66016,6 @@ /obj/structure/cable, /turf/open/floor/wood/parquet, /area/station/service/bar/backroom) -"veN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Infirmary" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/obj/effect/turf_decal/siding/dark_red/corner{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/security/medical) "veP" = ( /obj/machinery/door/airlock/grunge{ name = "Restrooms" @@ -65975,6 +66074,18 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/engineering/main) +"vfn" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/medical/glass{ + name = "Infirmary" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/machinery/duct, +/turf/open/floor/iron/dark, +/area/station/security/medical) "vfu" = ( /obj/effect/landmark/start/hangover, /obj/effect/turf_decal/tile/neutral/half/contrasted, @@ -66548,24 +66659,6 @@ /obj/effect/turf_decal/tile/purple/half/contrasted, /turf/open/floor/iron/showroomfloor, /area/station/science/robotics/lab) -"voa" = ( -/obj/structure/table, -/obj/effect/turf_decal/bot, -/obj/machinery/recharger{ - pixel_x = -3 - }, -/obj/structure/cable, -/obj/item/toy/figure/rd{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/stamp/rd{ - pixel_x = 8 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/effect/turf_decal/tile/neutral/half/contrasted, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/rd) "voj" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -67830,75 +67923,6 @@ /obj/machinery/light/floor/has_bulb, /turf/open/floor/engine, /area/station/ai_monitored/turret_protected/ai) -"vFD" = ( -/obj/structure/table/wood, -/obj/item/device/walkman{ - pixel_y = 7; - pixel_x = -8 - }, -/obj/item/device/walkman{ - pixel_y = 7; - pixel_x = -8 - }, -/obj/item/device/walkman{ - pixel_y = 7; - pixel_x = -8 - }, -/obj/item/device/walkman{ - pixel_y = 7; - pixel_x = -8 - }, -/obj/item/device/walkman{ - pixel_y = 7; - pixel_x = -8 - }, -/obj/item/device/walkman{ - pixel_y = 7; - pixel_x = -8 - }, -/obj/item/device/walkman{ - pixel_y = 7; - pixel_x = -8 - }, -/obj/item/device/walkman{ - pixel_y = 7; - pixel_x = -8 - }, -/obj/item/device/walkman{ - pixel_y = 7; - pixel_x = -8 - }, -/obj/item/device/cassette_tape/blank, -/obj/item/device/cassette_tape/blank, -/obj/item/device/cassette_tape/blank, -/obj/item/device/cassette_tape/blank, -/obj/item/device/cassette_tape/blank, -/obj/item/device/cassette_tape/blank, -/obj/item/device/cassette_tape/blank, -/obj/item/device/cassette_tape/blank, -/obj/item/device/cassette_tape/random{ - pixel_y = 8 - }, -/obj/item/device/cassette_tape/random{ - pixel_y = 8 - }, -/obj/item/device/cassette_tape/random{ - pixel_y = 8 - }, -/obj/item/device/cassette_tape/random{ - pixel_y = 8 - }, -/obj/item/device/cassette_tape/random{ - pixel_y = 8 - }, -/obj/item/device/cassette_tape/friday{ - pixel_y = 2; - pixel_x = 9 - }, -/obj/structure/window/reinforced/spawner/directional/west, -/obj/structure/window/reinforced/spawner/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/library) "vFH" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/stripes/line{ @@ -67927,23 +67951,6 @@ "vFY" = ( /turf/closed/wall, /area/station/science/lab) -"vGn" = ( -/obj/machinery/door/poddoor/preopen{ - id = "prisonblast"; - name = "Prison Blast Door" - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/button/door/directional/north{ - id = "prisonblast"; - name = "Prison Lockdown"; - req_access = list("brig") - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/obj/machinery/duct, -/turf/open/floor/iron/dark, -/area/station/security/brig) "vGs" = ( /obj/structure/flora/bush/flowers_br/style_random, /obj/structure/flora/bush/leavy/style_random, @@ -69523,6 +69530,16 @@ /obj/effect/mapping_helpers/airlock/access/any/command/maintenance, /turf/open/floor/plating, /area/station/maintenance/department/crew_quarters/bar) +"wbD" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/shower/directional/north, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/turf/open/floor/iron/white/textured, +/area/station/security/medical) "wbG" = ( /obj/effect/turf_decal/sand/plating, /obj/structure/disposalpipe/segment{ @@ -69911,7 +69928,7 @@ dir = 1 }, /obj/machinery/light/directional/north, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron/dark, /area/station/service/chapel/monastery) "wio" = ( @@ -71631,20 +71648,6 @@ /obj/effect/mapping_helpers/airlock/access/all/security/general, /turf/open/floor/iron/showroomfloor, /area/station/security/brig) -"wKw" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/landmark/start/brig_physician, -/obj/effect/turf_decal/tile/red/half/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/medical) "wKG" = ( /obj/structure/closet/secure_closet/brig, /obj/effect/turf_decal/tile/red/half/contrasted, @@ -72213,18 +72216,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/cargo/warehouse) -"wTK" = ( -/obj/structure/cable, -/obj/structure/table/wood, -/obj/item/stamp/hos, -/obj/item/stamp/denied{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/folder/red, -/obj/item/clipboard, -/turf/open/floor/carpet/red, -/area/station/command/heads_quarters/hos) "wTP" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -72579,6 +72570,19 @@ /obj/effect/mapping_helpers/burnt_floor, /turf/open/floor/plating, /area/station/maintenance/fore) +"xak" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/item/storage/secure/briefcase{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/item/stamp/head/cmo, +/turf/open/floor/iron/showroomfloor, +/area/station/command/heads_quarters/cmo) "xaz" = ( /obj/structure/railing/corner{ dir = 4 @@ -72836,19 +72840,6 @@ /obj/effect/turf_decal/caution/stand_clear, /turf/open/floor/iron/dark, /area/station/security/brig) -"xeL" = ( -/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/red/half/contrasted{ - dir = 1 - }, -/obj/machinery/duct, -/obj/effect/turf_decal/siding/dark_red/corner{ - dir = 8 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/security/medical) "xeP" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -73156,6 +73147,11 @@ /obj/item/clothing/gloves/latex, /turf/open/floor/iron/dark, /area/station/science/genetics) +"xkc" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/iron/showroomfloor, +/area/station/security/medical) "xkd" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -73212,34 +73208,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/white, /area/station/security/prison/mess) -"xkP" = ( -/obj/structure/table/wood, -/obj/item/storage/photo_album{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/taperecorder{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/camera, -/obj/item/pen{ - pixel_x = -7; - pixel_y = -5 - }, -/obj/machinery/light/small/directional/west, -/obj/machinery/camera/directional/west{ - c_tag = "Library Backroom"; - name = "library camera" - }, -/obj/structure/sign/painting/large/library_private{ - dir = 8; - pixel_x = -29 - }, -/obj/effect/turf_decal/tile/neutral/opposingcorners, -/turf/open/floor/iron/dark, -/area/station/service/library) "xle" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -74850,18 +74818,6 @@ /obj/effect/mapping_helpers/airlock/access/all/command/captain, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/captain) -"xMM" = ( -/obj/structure/bodycontainer/morgue, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark/textured_half{ - dir = 1 - }, -/area/station/security/medical) "xNc" = ( /turf/closed/wall/r_wall/rust, /area/station/command/heads_quarters/cmo) @@ -75176,6 +75132,21 @@ /obj/effect/turf_decal/tile/red/opposingcorners, /turf/open/floor/iron/showroomfloor, /area/station/service/bar/atrium) +"xTj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/obj/machinery/door/window/left/directional/south{ + dir = 1; + name = "Maximum Security Test Chamber" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple/full, +/obj/effect/mapping_helpers/airlock/access/any/science/xenobio, +/obj/structure/liquid_barrier, +/turf/open/floor/iron/showroomfloor, +/area/station/science/xenobiology) "xTw" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, @@ -76338,6 +76309,11 @@ /obj/effect/turf_decal/tile/red/opposingcorners, /turf/open/floor/iron/showroomfloor, /area/station/service/bar/atrium) +"ykr" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/red/half/contrasted, +/turf/open/floor/iron/showroomfloor, +/area/station/security/medical) "ykv" = ( /obj/structure/railing/corner{ dir = 8 @@ -93576,11 +93552,11 @@ kho shZ xNq mlB -fqx -gzh -dbR -bZe -kNe +qnN +kwq +vbk +gdY +lha qSB gPA pQi @@ -93833,11 +93809,11 @@ htJ nJQ pqD kzh -uZr -rnW -bRo +tWA +khV +fAb wDz -hfP +ndy viX cuR iaY @@ -94094,7 +94070,7 @@ rnc rnc pkl rnc -vGn +fLz hjs cuR cuR @@ -94351,7 +94327,7 @@ dwx qvt mrB rMl -pon +slJ iZa rbz iFU @@ -94608,7 +94584,7 @@ azG bPr jki hRq -nCF +hwo ddP bEs bEs @@ -94865,7 +94841,7 @@ cXh rnc rnc bmi -fEI +bdx wFJ nzW kKG @@ -95333,7 +95309,7 @@ xxk xCt rtU rLp -hsQ +xak hJH vam hXi @@ -95379,12 +95355,12 @@ pEa phs iMK gyA -kKM +uEe gRd -jHN -sEs -xMM -tRx +dyH +uZI +jwz +cmb yfx vBS rhv @@ -95636,13 +95612,13 @@ cXh rnc rnc vVt -clH -jgv -xeL -aup -uCd -jiZ -veN +aQS +vfn +qwY +jsC +uzH +uqn +pov iHP qWS kiZ @@ -95895,10 +95871,10 @@ sOi crk jmw kxG -pUm -rJs -rJs -jMh +qZC +aAI +aAI +wbD uax lmA rCF @@ -96152,10 +96128,10 @@ wUi uDu wHh gRd -wKw -oux -inI -soW +hdW +xkc +gxB +ykr uax ijl hJn @@ -96167,7 +96143,7 @@ pSG gpM cFO pIS -wTK +ggK tZf amR qQS @@ -96409,10 +96385,10 @@ rnc xex dSv gRd -mPG -oes -fEr -sbu +uGr +pMR +npE +unZ gRd brP vtf @@ -101771,12 +101747,12 @@ sLb lbO jcN oKV -vFD +koo oTT fcs lbO mHe -xkP +frB dcr jCm cYZ @@ -105137,7 +105113,7 @@ cEr dFA nGJ soC -cHI +jGK axt ixO kqD @@ -108988,7 +108964,7 @@ swA lBj qaF xUk -pOS +bvP rcM jlh qgu @@ -112289,7 +112265,7 @@ wuc vJc vJc qIE -reO +mLZ vJc mrA fJq @@ -112606,7 +112582,7 @@ vHF jjs cwj cLx -jNM +hhF ueJ tav snU @@ -114071,7 +114047,7 @@ vct rRz rFr tGx -fnp +xTj sOo cyn pFB @@ -114089,7 +114065,7 @@ iFi iFi pQc jWN -nmc +cWs jTy dgB uNi @@ -115637,7 +115613,7 @@ bkK xLC tnR gtW -voa +kGZ ncC kmN mVh @@ -115659,7 +115635,7 @@ rZV vOX svY jms -eYb +agL vhX dMo bWu @@ -115887,7 +115863,7 @@ vJc vJc vJc vJc -haZ +hnF vJc vJc wZZ diff --git a/_maps/map_files/MetaStation/MetaStation.dmm b/_maps/map_files/MetaStation/MetaStation.dmm index 406cb9344313..36a260e70e06 100644 --- a/_maps/map_files/MetaStation/MetaStation.dmm +++ b/_maps/map_files/MetaStation/MetaStation.dmm @@ -1636,6 +1636,15 @@ }, /turf/open/floor/iron, /area/station/cargo/sorting) +"aEE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) "aEH" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -1802,6 +1811,28 @@ "aIw" = ( /turf/open/floor/plating/airless, /area/station/solars/port/fore) +"aIx" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/reagent_containers/condiment/rice{ + pixel_x = -8 + }, +/obj/machinery/light/directional/west, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/item/reagent_containers/condiment/sugar{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/reagent_containers/condiment/flour{ + pixel_x = 5 + }, +/obj/item/storage/fancy/egg_box, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/security/prison/mess) "aIz" = ( /obj/effect/turf_decal/tile/red{ dir = 8 @@ -1925,22 +1956,6 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, /area/station/hallway/secondary/service) -"aJK" = ( -/obj/structure/reagent_dispensers/plumbed, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) -"aJN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) "aJO" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=14.8-Dorms-Lockers"; @@ -3410,13 +3425,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/security/brig) -"bhI" = ( -/obj/structure/bodycontainer/morgue, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/security/medical) "bhM" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -3566,12 +3574,6 @@ }, /turf/open/floor/plating, /area/station/medical/treatment_center) -"bkT" = ( -/obj/structure/chair/office/light, -/obj/structure/cable, -/obj/item/stamp/cmo, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) "bla" = ( /obj/effect/spawner/random/vending/snackvend, /turf/open/floor/wood, @@ -4917,6 +4919,14 @@ /obj/effect/turf_decal/trimline/brown/filled/warning, /turf/open/floor/iron, /area/station/cargo/sorting) +"bLp" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/landmark/start/brig_physician, +/obj/structure/chair/office, +/turf/open/floor/iron/white, +/area/station/security/medical) "bLQ" = ( /turf/closed/wall, /area/station/medical/coldroom) @@ -5249,6 +5259,21 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron/dark, /area/station/medical/storage) +"bTg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small/directional/south, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/duct, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/security/medical) "bTj" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -8067,6 +8092,24 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/engineering/transit_tube) +"dah" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/machinery/camera/directional/south{ + c_tag = "Brig - Infirmary" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/computer/operating{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/security/medical) "das" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -8075,7 +8118,7 @@ /area/station/engineering/atmospherics_engine) "daz" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron/dark, /area/station/commons/fitness/recreation) "daC" = ( @@ -8994,6 +9037,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/grass, /area/station/medical/pathology) +"dso" = ( +/obj/structure/chair/office/light, +/obj/structure/cable, +/obj/item/stamp/head/cmo, +/turf/open/floor/iron/white, +/area/station/command/heads_quarters/cmo) "dsq" = ( /obj/machinery/door/airlock/research{ name = "Ordnance Lab" @@ -9370,7 +9419,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron/white, /area/station/medical/medbay/central) "dAG" = ( @@ -9978,6 +10027,21 @@ }, /turf/open/floor/iron/dark, /area/station/engineering/storage/tech) +"dMh" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/left/directional/north{ + dir = 4; + name = "Containment Pen #1"; + req_access = list("xenobiology") + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio1"; + name = "Xenobio Pen 1 Blast Door" + }, +/obj/machinery/duct, +/obj/structure/liquid_barrier, +/turf/open/floor/iron, +/area/station/science/xenobiology) "dMu" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/holopad, @@ -10304,6 +10368,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/security/prison/safe) +"dSM" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/structure/closet/secure_closet/brig_physician, +/obj/item/clothing/suit/jacket/straight_jacket, +/turf/open/floor/iron/white, +/area/station/security/medical) "dTi" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -10391,6 +10464,24 @@ /obj/item/radio/intercom/directional/south, /turf/open/floor/iron, /area/station/hallway/secondary/entry) +"dUT" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/window/left/directional/north{ + dir = 8; + name = "Containment Pen #6"; + req_access = list("xenobiology") + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio6"; + name = "Xenobio Pen 6 Blast Door" + }, +/obj/machinery/duct, +/obj/structure/liquid_barrier, +/turf/open/floor/iron, +/area/station/science/xenobiology) "dVb" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plating, @@ -12689,15 +12780,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"eMS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) "eMU" = ( /obj/effect/turf_decal/trimline/blue/filled/corner{ dir = 8 @@ -14670,7 +14752,7 @@ /obj/effect/turf_decal/tile/yellow{ dir = 4 }, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron, /area/station/hallway/primary/starboard) "fAI" = ( @@ -14762,6 +14844,18 @@ /obj/effect/turf_decal/tile/green/fourcorners, /turf/open/floor/iron, /area/station/hallway/primary/central) +"fCu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/turf/open/floor/iron/white, +/area/station/security/medical) "fDa" = ( /obj/structure/window/spawner/directional/south, /turf/open/floor/iron/dark, @@ -15677,24 +15771,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/carpet, /area/station/service/theater) -"fVz" = ( -/obj/structure/window/reinforced/spawner/directional/east, -/obj/machinery/camera/directional/south{ - c_tag = "Brig - Infirmary" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/computer/operating{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/security/medical) "fVA" = ( /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ dir = 4 @@ -16296,21 +16372,6 @@ }, /turf/open/floor/iron/white, /area/station/science/research) -"gga" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/airlock/hatch{ - name = "Xenobiology Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/obj/structure/liquid_barrier, -/turf/open/floor/plating, -/area/station/maintenance/department/science/xenobiology) "ggi" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 @@ -17337,23 +17398,6 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron, /area/station/engineering/main) -"gyI" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/window/left/directional/north{ - base_state = "right"; - dir = 4; - icon_state = "right"; - name = "Containment Pen #8"; - req_access = list("xenobiology") - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio8"; - name = "Xenobio Pen 8 Blast Door" - }, -/obj/machinery/duct, -/obj/structure/liquid_barrier, -/turf/open/floor/iron, -/area/station/science/xenobiology) "gyK" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, /turf/open/floor/engine, @@ -17628,6 +17672,19 @@ /obj/effect/spawner/random/maintenance/two, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) +"gEK" = ( +/obj/machinery/door/window/left/directional/west{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Infirmary"; + req_access = list("security") + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/security/medical) "gES" = ( /obj/machinery/computer/shuttle/labor{ dir = 4 @@ -17666,6 +17723,24 @@ }, /turf/open/space/basic, /area/space) +"gFc" = ( +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/rack, +/obj/item/storage/medkit/regular, +/obj/item/storage/medkit/regular, +/obj/item/clothing/gloves/latex, +/obj/item/roller, +/obj/item/clothing/mask/surgical, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/reagent_containers/cup/bottle/epinephrine, +/obj/item/reagent_containers/cup/bottle/multiver, +/obj/item/reagent_containers/syringe, +/obj/item/clothing/neck/stethoscope, +/turf/open/floor/iron/white, +/area/station/security/medical) "gFd" = ( /obj/machinery/power/terminal, /obj/machinery/light/small/directional/east, @@ -17994,15 +18069,6 @@ }, /turf/open/floor/iron/dark, /area/station/medical/morgue) -"gMg" = ( -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/structure/closet/secure_closet/brig_physician, -/obj/item/clothing/suit/jacket/straight_jacket, -/turf/open/floor/iron/white, -/area/station/security/medical) "gMi" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small/directional/west, @@ -18969,28 +19035,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark/corner, /area/station/engineering/atmos/storage/gas) -"hcb" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/item/reagent_containers/condiment/rice{ - pixel_x = -8 - }, -/obj/machinery/light/directional/west, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/item/reagent_containers/condiment/sugar{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/item/reagent_containers/condiment/flour{ - pixel_x = 5 - }, -/obj/item/storage/fancy/egg_box, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) "hcv" = ( /obj/effect/landmark/observer_start, /obj/effect/turf_decal/plaque{ @@ -19336,6 +19380,22 @@ }, /turf/open/floor/iron/kitchen_coldroom/freezerfloor, /area/station/service/kitchen/coldroom) +"hjj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/obj/structure/table/optable, +/obj/machinery/defibrillator_mount/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/security/medical) "hjo" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 @@ -19370,6 +19430,26 @@ /obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) +"hjt" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/window/left/directional/north{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen #3"; + req_access = list("xenobiology") + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio3"; + name = "Xenobio Pen 3 Blast Door" + }, +/obj/machinery/duct, +/obj/structure/liquid_barrier, +/turf/open/floor/iron, +/area/station/science/xenobiology) "hjw" = ( /turf/open/floor/iron/white, /area/station/science/cytology) @@ -20752,6 +20832,23 @@ /obj/structure/disposalpipe/trunk, /turf/open/floor/iron/dark, /area/station/medical/morgue) +"hKd" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/left/directional/north{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Containment Pen #8"; + req_access = list("xenobiology") + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio8"; + name = "Xenobio Pen 8 Blast Door" + }, +/obj/machinery/duct, +/obj/structure/liquid_barrier, +/turf/open/floor/iron, +/area/station/science/xenobiology) "hKg" = ( /turf/closed/wall, /area/station/cargo/miningoffice) @@ -20926,21 +21023,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/treatment_center) -"hMv" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/window/left/directional/north{ - dir = 4; - name = "Containment Pen #1"; - req_access = list("xenobiology") - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio1"; - name = "Xenobio Pen 1 Blast Door" - }, -/obj/machinery/duct, -/obj/structure/liquid_barrier, -/turf/open/floor/iron, -/area/station/science/xenobiology) "hMy" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -21061,7 +21143,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron, /area/station/hallway/primary/central) "hOR" = ( @@ -21956,6 +22038,19 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/cargo/miningoffice) +"ieN" = ( +/obj/machinery/door/window/left/directional/west{ + dir = 4; + name = "Infirmary"; + req_access = list("security") + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/turf/open/floor/iron/white, +/area/station/security/medical) "ieV" = ( /turf/closed/wall/r_wall, /area/station/security/holding_cell) @@ -21988,7 +22083,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron, /area/station/hallway/primary/port) "ifJ" = ( @@ -22558,19 +22653,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/engineering/atmos) -"iom" = ( -/obj/machinery/door/window/left/directional/west{ - base_state = "right"; - dir = 4; - icon_state = "right"; - name = "Infirmary"; - req_access = list("security") - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/security/medical) "iov" = ( /obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, @@ -22747,6 +22829,15 @@ /obj/effect/turf_decal/siding/yellow, /turf/open/floor/iron, /area/station/hallway/primary/starboard) +"iqV" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/griddle, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron/white, +/area/station/security/prison/mess) "irL" = ( /obj/effect/turf_decal/trimline/blue/filled/line, /turf/open/floor/iron/white, @@ -22888,6 +22979,26 @@ /mob/living/basic/parrot/poly, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/ce) +"itl" = ( +/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" + }, +/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, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/obj/structure/liquid_barrier, +/turf/open/floor/iron/white, +/area/station/science/xenobiology/hallway) "itp" = ( /obj/structure/chair{ dir = 8 @@ -23780,11 +23891,6 @@ dir = 8 }, /area/station/service/chapel) -"iIw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/turf/open/floor/iron/white, -/area/station/security/medical) "iIC" = ( /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)."; @@ -25883,6 +25989,19 @@ /obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/iron/white, /area/station/medical/surgery/theatre) +"jpp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Brig Infirmary Maintenance" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) "jpr" = ( /obj/structure/rack, /obj/effect/spawner/random/techstorage/command_all, @@ -28998,27 +29117,6 @@ /obj/effect/landmark/generic_maintenance_landmark, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) -"ksM" = ( -/obj/structure/table/wood, -/obj/effect/mapping_helpers/broken_floor, -/obj/item/clipboard{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/stamp{ - pixel_x = 7; - pixel_y = 9 - }, -/obj/item/stamp/denied{ - pixel_x = 7; - pixel_y = 4 - }, -/obj/item/stamp/qm{ - pixel_x = 7; - pixel_y = -2 - }, -/turf/open/floor/wood, -/area/station/cargo/quartermaster) "ksT" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -29902,31 +30000,6 @@ }, /turf/open/floor/iron/dark, /area/station/engineering/atmos) -"kLC" = ( -/obj/machinery/door_buttons/access_button{ - idDoor = "xeno_airlock_exterior"; - idSelf = "xeno_airlock_control"; - name = "Access Button"; - pixel_y = -24; - req_access = list("xenobiology") - }, -/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" - }, -/obj/effect/turf_decal/tile/purple/fourcorners, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/obj/structure/liquid_barrier, -/turf/open/floor/iron/white, -/area/station/science/xenobiology/hallway) "kLF" = ( /obj/machinery/light/small/directional/south, /obj/machinery/light_switch/directional/south{ @@ -30358,16 +30431,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/station/maintenance/port/fore) -"kSs" = ( -/obj/item/radio/intercom/directional/north, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/structure/table/reinforced/rglass, -/obj/machinery/computer/records/medical/laptop, -/turf/open/floor/iron/white, -/area/station/security/medical) "kSw" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 1 @@ -31159,22 +31222,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"lhc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/obj/structure/table/optable, -/obj/machinery/defibrillator_mount/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron/white, -/area/station/security/medical) "lhk" = ( /obj/structure/table, /obj/item/storage/medkit/brute, @@ -31404,38 +31451,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/white, /area/station/security/prison/mess) -"llT" = ( -/obj/structure/table/wood, -/obj/machinery/button/ticket_machine{ - pixel_x = 32 - }, -/obj/item/paper_bin/carbon{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/stamp/hop{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/machinery/light_switch/directional/south{ - pixel_x = 6; - pixel_y = -34 - }, -/obj/machinery/button/door/directional/south{ - id = "hop"; - name = "Privacy Shutters Control"; - pixel_x = -6; - req_access = list("hop") - }, -/obj/machinery/button/door/directional/south{ - id = "hopqueue"; - name = "Queue Shutters Control"; - pixel_x = -6; - pixel_y = -34; - req_access = list("hop") - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) "llW" = ( /obj/structure/fluff/broken_flooring{ dir = 4; @@ -32083,19 +32098,6 @@ /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/lesser) -"lvu" = ( -/obj/machinery/door/window/left/directional/west{ - dir = 4; - name = "Infirmary"; - req_access = list("security") - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/turf/open/floor/iron/white, -/area/station/security/medical) "lvG" = ( /obj/machinery/light/directional/north, /obj/machinery/door/window{ @@ -32223,6 +32225,21 @@ }, /turf/open/floor/iron/white, /area/station/medical/chemistry) +"lxy" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/airlock/hatch{ + name = "Xenobiology Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/obj/structure/liquid_barrier, +/turf/open/floor/plating, +/area/station/maintenance/department/science/xenobiology) "lxC" = ( /obj/item/radio/intercom/directional/south, /obj/structure/chair/sofa/corp/left{ @@ -32295,6 +32312,15 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/command) +"lzB" = ( +/obj/structure/table/wood, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/item/radio/intercom/directional/east, +/obj/item/folder/blue, +/obj/item/hand_tele, +/obj/item/stamp/head/captain, +/turf/open/floor/wood, +/area/station/command/heads_quarters/captain/private) "lzJ" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -34784,17 +34810,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/central) -"muu" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/chem_master/condimaster{ - name = "CondiMaster Neo" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) "mux" = ( /obj/machinery/airalarm/directional/south, /obj/effect/turf_decal/tile/neutral{ @@ -35950,15 +35965,6 @@ /obj/machinery/holopad, /turf/open/floor/iron, /area/station/cargo/storage) -"mOa" = ( -/obj/structure/table, -/obj/item/folder/white, -/obj/item/stamp/rd, -/obj/item/toy/figure/rd{ - pixel_y = 10 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/rd) "mOt" = ( /obj/effect/landmark/start/detective, /obj/structure/chair/office{ @@ -36485,6 +36491,11 @@ }, /turf/open/floor/iron/white, /area/station/medical/chemistry) +"mXV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/turf/open/floor/iron/white, +/area/station/security/medical) "mXX" = ( /obj/structure/table/reinforced, /obj/item/paper_bin{ @@ -36588,6 +36599,24 @@ }, /turf/open/floor/iron/dark, /area/station/security/office) +"mZe" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/storage/bag/tray, +/obj/item/kitchen/rollingpin{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/item/kitchen/rollingpin{ + pixel_x = 5; + pixel_y = -3 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron/white, +/area/station/security/prison/mess) "mZy" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -37012,15 +37041,6 @@ }, /turf/open/floor/iron, /area/station/security/courtroom) -"nhO" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/griddle, -/obj/machinery/camera/autoname/directional/west, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) "nhP" = ( /turf/open/floor/circuit/green, /area/station/ai_monitored/turret_protected/ai_upload) @@ -37057,15 +37077,6 @@ /obj/effect/mapping_helpers/airlock/access/all/engineering/ce, /turf/open/floor/iron, /area/station/command/heads_quarters/ce) -"niz" = ( -/obj/structure/table/wood, -/obj/structure/window/reinforced/spawner/directional/south, -/obj/item/radio/intercom/directional/east, -/obj/item/folder/blue, -/obj/item/hand_tele, -/obj/item/stamp/captain, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain/private) "niG" = ( /obj/machinery/light/small/directional/west, /obj/machinery/conveyor{ @@ -37884,17 +37895,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/office) -"nuw" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/table/reinforced, -/obj/machinery/processor{ - pixel_y = 10 - }, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) "nuI" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -39385,6 +39385,14 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/ai_monitored/command/nuke_storage) +"nYv" = ( +/obj/effect/turf_decal/stripes/end, +/obj/machinery/shower/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/machinery/iv_drip, +/obj/item/reagent_containers/blood, +/turf/open/floor/iron/white/textured, +/area/station/security/medical) "nYJ" = ( /obj/structure/lattice, /obj/structure/grille/broken, @@ -39966,24 +39974,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/security/brig) -"ohD" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/door/window/left/directional/north{ - dir = 8; - name = "Containment Pen #6"; - req_access = list("xenobiology") - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio6"; - name = "Xenobio Pen 6 Blast Door" - }, -/obj/machinery/duct, -/obj/structure/liquid_barrier, -/turf/open/floor/iron, -/area/station/science/xenobiology) "ohE" = ( /turf/closed/wall/r_wall, /area/station/maintenance/central) @@ -42130,24 +42120,6 @@ /obj/effect/mapping_helpers/airlock/access/any/command/hop, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/hop) -"oWZ" = ( -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/structure/rack, -/obj/item/storage/medkit/regular, -/obj/item/storage/medkit/regular, -/obj/item/clothing/gloves/latex, -/obj/item/roller, -/obj/item/clothing/mask/surgical, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/reagent_containers/cup/bottle/epinephrine, -/obj/item/reagent_containers/cup/bottle/multiver, -/obj/item/reagent_containers/syringe, -/obj/item/clothing/neck/stethoscope, -/turf/open/floor/iron/white, -/area/station/security/medical) "oXd" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/junction{ dir = 4 @@ -42365,6 +42337,10 @@ /obj/effect/turf_decal/tile/yellow/half/contrasted, /turf/open/floor/iron, /area/station/construction/mining/aux_base) +"pal" = ( +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) "pan" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/closed/wall/r_wall, @@ -43074,14 +43050,6 @@ /obj/machinery/holopad, /turf/open/floor/iron/white, /area/station/command/heads_quarters/rd) -"poE" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/oven, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) "poJ" = ( /obj/machinery/telecomms/hub/preset, /turf/open/floor/circuit/green/telecomms/mainframe, @@ -43616,7 +43584,7 @@ /turf/open/floor/iron, /area/station/security/courtroom) "pyc" = ( -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/wood, /area/station/commons/lounge) "pyd" = ( @@ -44634,7 +44602,7 @@ /area/station/service/bar/backroom) "pQD" = ( /obj/effect/turf_decal/delivery, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron, /area/station/construction/storage_wing) "pQG" = ( @@ -44667,24 +44635,6 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, /area/station/maintenance/central) -"pQV" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/item/storage/bag/tray, -/obj/item/kitchen/rollingpin{ - pixel_x = -4; - pixel_y = -3 - }, -/obj/item/kitchen/rollingpin{ - pixel_x = 5; - pixel_y = -3 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/iron/white, -/area/station/security/prison/mess) "pQW" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -44782,6 +44732,18 @@ }, /turf/open/floor/iron, /area/station/engineering/main) +"pTA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) "pTK" = ( /obj/machinery/portable_atmospherics/scrubber, /obj/structure/window/reinforced/spawner/directional/north, @@ -45045,6 +45007,15 @@ /obj/effect/turf_decal/tile/blue/fourcorners, /turf/open/floor/iron/white, /area/station/medical/surgery/theatre) +"pXW" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) "pYh" = ( /obj/structure/cable, /turf/open/floor/iron/white, @@ -45395,7 +45366,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/spawner/random/engineering/tracking_beacon, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) "qfL" = ( @@ -45874,6 +45845,25 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/secondary/command) +"qnx" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/structure/table/reinforced/rglass, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/folder/white{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/pen, +/obj/item/folder/red{ + pixel_x = 3 + }, +/turf/open/floor/iron/white, +/area/station/security/medical) "qnK" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -46516,7 +46506,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron, /area/station/hallway/primary/central) "qyT" = ( @@ -46587,17 +46577,6 @@ /obj/structure/lattice/catwalk, /turf/open/space/basic, /area/space) -"qAr" = ( -/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/machinery/door/airlock/hatch{ - name = "Xenobiology Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/obj/structure/liquid_barrier, -/turf/open/floor/plating, -/area/station/maintenance/department/science/xenobiology) "qAA" = ( /obj/machinery/newscaster/directional/east, /obj/machinery/computer/security/mining{ @@ -46624,26 +46603,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/security/prison) -"qBo" = ( -/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" - }, -/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, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/obj/structure/liquid_barrier, -/turf/open/floor/iron/white, -/area/station/science/xenobiology/hallway) "qBq" = ( /obj/structure/rack, /obj/effect/landmark/blobstart, @@ -46781,6 +46740,16 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/science/robotics/lab) +"qDz" = ( +/obj/item/radio/intercom/directional/north, +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/table/reinforced/rglass, +/obj/machinery/computer/records/medical/laptop, +/turf/open/floor/iron/white, +/area/station/security/medical) "qDI" = ( /obj/effect/turf_decal/trimline/green/filled/line, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -47667,6 +47636,27 @@ "qST" = ( /turf/open/floor/iron, /area/station/cargo/drone_bay) +"qTo" = ( +/obj/structure/table/wood, +/obj/effect/mapping_helpers/broken_floor, +/obj/item/clipboard{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/stamp{ + pixel_x = 7; + pixel_y = 9 + }, +/obj/item/stamp/denied{ + pixel_x = 7; + pixel_y = 4 + }, +/obj/item/stamp/head/qm{ + pixel_x = 7; + pixel_y = -2 + }, +/turf/open/floor/wood, +/area/station/cargo/quartermaster) "qTx" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -48057,6 +48047,21 @@ }, /turf/open/floor/iron, /area/station/engineering/main) +"rat" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/left/directional/north{ + dir = 8; + name = "Containment Pen #5"; + req_access = list("xenobiology") + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio5"; + name = "Xenobio Pen 5 Blast Door" + }, +/obj/machinery/duct, +/obj/structure/liquid_barrier, +/turf/open/floor/iron, +/area/station/science/xenobiology) "raz" = ( /obj/structure/cable, /turf/open/floor/plating/airless, @@ -48841,23 +48846,6 @@ /obj/effect/spawner/random/structure/grille, /turf/open/space/basic, /area/space/nearstation) -"rrL" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/window/left/directional/north{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen #4"; - req_access = list("xenobiology") - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio4"; - name = "Xenobio Pen 4 Blast Door" - }, -/obj/machinery/duct, -/obj/structure/liquid_barrier, -/turf/open/floor/iron, -/area/station/science/xenobiology) "rrT" = ( /obj/effect/turf_decal/tile/red{ dir = 8 @@ -49111,22 +49099,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"rvK" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Xenolab"; - name = "Test Chamber Blast Door" - }, -/obj/effect/turf_decal/bot, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/machinery/door/window/left/directional/south{ - dir = 4; - name = "Maximum Security Test Chamber"; - req_access = list("xenobiology") - }, -/obj/structure/liquid_barrier, -/turf/open/floor/engine, -/area/station/science/xenobiology) "rvL" = ( /obj/effect/turf_decal/tile/neutral, /obj/structure/disposalpipe/segment, @@ -49168,26 +49140,6 @@ /obj/machinery/light_switch/directional/south, /turf/open/floor/iron/dark, /area/station/engineering/storage/tech) -"rwx" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/door/window/left/directional/north{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen #3"; - req_access = list("xenobiology") - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio3"; - name = "Xenobio Pen 3 Blast Door" - }, -/obj/machinery/duct, -/obj/structure/liquid_barrier, -/turf/open/floor/iron, -/area/station/science/xenobiology) "rwE" = ( /obj/structure/table, /obj/item/paper_bin{ @@ -50070,6 +50022,15 @@ /obj/machinery/firealarm/directional/west, /turf/open/floor/plating, /area/station/command/teleporter) +"rKL" = ( +/obj/machinery/door/airlock/hatch{ + name = "Secure Pen" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/obj/structure/liquid_barrier, +/turf/open/floor/engine, +/area/station/science/cytology) "rKQ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -51344,7 +51305,7 @@ /obj/effect/turf_decal/trimline/red/filled/line{ dir = 1 }, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron, /area/station/hallway/primary/fore) "sfl" = ( @@ -52050,6 +52011,10 @@ /obj/machinery/duct, /turf/open/floor/stone, /area/station/science/xenobiology) +"ssG" = ( +/obj/structure/reagent_dispensers/plumbed, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) "ssI" = ( /obj/machinery/power/emitter, /turf/open/floor/plating, @@ -52568,21 +52533,6 @@ /obj/structure/sign/warning/radiation, /turf/closed/wall/r_wall, /area/station/engineering/atmospherics_engine) -"sCv" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/window/left/directional/north{ - dir = 8; - name = "Containment Pen #5"; - req_access = list("xenobiology") - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio5"; - name = "Xenobio Pen 5 Blast Door" - }, -/obj/machinery/duct, -/obj/structure/liquid_barrier, -/turf/open/floor/iron, -/area/station/science/xenobiology) "sCz" = ( /obj/structure/cable, /turf/open/floor/iron, @@ -52806,6 +52756,31 @@ /obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/plating, /area/station/maintenance/aft/greater) +"sGF" = ( +/obj/machinery/door_buttons/access_button{ + idDoor = "xeno_airlock_exterior"; + idSelf = "xeno_airlock_control"; + name = "Access Button"; + pixel_y = -24; + req_access = list("xenobiology") + }, +/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" + }, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/obj/structure/liquid_barrier, +/turf/open/floor/iron/white, +/area/station/science/xenobiology/hallway) "sGL" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -53873,6 +53848,17 @@ /obj/machinery/light/small/directional/west, /turf/open/floor/wood, /area/station/command/heads_quarters/captain/private) +"sYE" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/table/reinforced, +/obj/machinery/processor{ + pixel_y = 10 + }, +/turf/open/floor/iron/white, +/area/station/security/prison/mess) "sZH" = ( /obj/effect/turf_decal/trimline/blue/filled/corner{ dir = 1 @@ -55020,6 +55006,38 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/wood, /area/station/maintenance/port/aft) +"tsT" = ( +/obj/structure/table/wood, +/obj/machinery/button/ticket_machine{ + pixel_x = 32 + }, +/obj/item/paper_bin/carbon{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/stamp/head/hop{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/machinery/light_switch/directional/south{ + pixel_x = 6; + pixel_y = -34 + }, +/obj/machinery/button/door/directional/south{ + id = "hop"; + name = "Privacy Shutters Control"; + pixel_x = -6; + req_access = list("hop") + }, +/obj/machinery/button/door/directional/south{ + id = "hopqueue"; + name = "Queue Shutters Control"; + pixel_x = -6; + pixel_y = -34; + req_access = list("hop") + }, +/turf/open/floor/wood, +/area/station/command/heads_quarters/hop) "tsZ" = ( /obj/machinery/atmospherics/pipe/smart/simple/orange/visible, /obj/structure/lattice/catwalk, @@ -55133,6 +55151,13 @@ }, /turf/open/floor/iron/white, /area/station/medical/treatment_center) +"tvn" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/security/medical) "tvE" = ( /turf/closed/wall/r_wall, /area/station/command/gateway) @@ -55592,15 +55617,6 @@ /obj/machinery/light_switch/directional/east, /turf/open/floor/iron/dark, /area/station/engineering/storage/tcomms) -"tFg" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) "tFj" = ( /obj/structure/railing/corner{ dir = 4 @@ -56061,6 +56077,17 @@ }, /turf/open/floor/wood, /area/station/command/corporate_showroom) +"tNF" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/chem_master/condimaster{ + name = "CondiMaster Neo" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/white, +/area/station/security/prison/mess) "tNH" = ( /obj/structure/cable, /obj/effect/mapping_helpers/broken_floor, @@ -57204,21 +57231,6 @@ }, /turf/open/floor/iron, /area/station/cargo/sorting) -"uin" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/item/folder/red{ - pixel_x = -7 - }, -/obj/item/folder/red{ - pixel_x = -7; - pixel_y = 6 - }, -/obj/item/stamp/hos, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hos) "uiB" = ( /obj/machinery/door/airlock/maintenance, /obj/structure/cable, @@ -57551,6 +57563,15 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/security/brig) +"uoO" = ( +/obj/structure/table, +/obj/item/folder/white, +/obj/item/stamp/head/rd, +/obj/item/toy/figure/rd{ + pixel_y = 10 + }, +/turf/open/floor/iron/white, +/area/station/command/heads_quarters/rd) "upe" = ( /obj/machinery/camera/directional/east{ c_tag = "Interrogation room"; @@ -58881,21 +58902,6 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/iron, /area/station/hallway/primary/port) -"uKR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/small/directional/south, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/machinery/duct, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/iron/white, -/area/station/security/medical) "uLa" = ( /obj/effect/spawner/random/structure/table_or_rack, /obj/effect/spawner/random/maintenance/two, @@ -59062,6 +59068,14 @@ }, /turf/open/floor/iron, /area/station/engineering/atmos) +"uOy" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/obj/item/stamp/head/ce, +/obj/item/reagent_containers/pill/patch/aiuri, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/iron, +/area/station/command/heads_quarters/ce) "uOH" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -59641,18 +59655,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/security/range) -"vaH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/duct, -/turf/open/floor/iron/white, -/area/station/security/medical) "vbq" = ( /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)."; @@ -60199,25 +60201,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) -"vkO" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/obj/structure/table/reinforced/rglass, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/folder/white{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/pen, -/obj/item/folder/red{ - pixel_x = 3 - }, -/turf/open/floor/iron/white, -/area/station/security/medical) "vkP" = ( /obj/structure/table/reinforced, /obj/item/stack/sheet/plasteel{ @@ -60453,6 +60436,14 @@ }, /turf/open/floor/iron/white, /area/station/medical/pathology) +"voZ" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/oven, +/turf/open/floor/iron/white, +/area/station/security/prison/mess) "vpe" = ( /obj/structure/sign/poster/random/directional/east, /obj/structure/railing{ @@ -61522,6 +61513,17 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/port) +"vJD" = ( +/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/machinery/door/airlock/hatch{ + name = "Xenobiology Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/obj/structure/liquid_barrier, +/turf/open/floor/plating, +/area/station/maintenance/department/science/xenobiology) "vJI" = ( /obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, /obj/machinery/atmospherics/pipe/smart/simple/purple/visible, @@ -63637,19 +63639,6 @@ /obj/machinery/airalarm/directional/north, /turf/open/floor/iron/white, /area/station/medical/treatment_center) -"wwj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Brig Infirmary Maintenance" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/obj/machinery/duct, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) "wwt" = ( /obj/machinery/door/airlock/research{ name = "Mech Bay" @@ -64398,14 +64387,6 @@ /obj/structure/window/reinforced/spawner/directional/east, /turf/open/floor/iron/dark, /area/station/ai_monitored/aisat/exterior) -"wLH" = ( -/obj/effect/turf_decal/stripes/end, -/obj/machinery/shower/directional/south, -/obj/structure/window/reinforced/spawner/directional/east, -/obj/machinery/iv_drip, -/obj/item/reagent_containers/blood, -/turf/open/floor/iron/white/textured, -/area/station/security/medical) "wMk" = ( /obj/machinery/door/airlock/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -65332,6 +65313,21 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/port) +"xbE" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/item/folder/red{ + pixel_x = -7 + }, +/obj/item/folder/red{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/item/stamp/head/hos, +/turf/open/floor/wood, +/area/station/command/heads_quarters/hos) "xbP" = ( /obj/effect/mapping_helpers/broken_floor, /obj/machinery/suit_storage_unit/standard_unit, @@ -65534,15 +65530,6 @@ dir = 6 }, /area/station/medical/treatment_center) -"xfA" = ( -/obj/machinery/door/airlock/hatch{ - name = "Secure Pen" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/obj/structure/liquid_barrier, -/turf/open/floor/engine, -/area/station/science/cytology) "xfD" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 1 @@ -67656,6 +67643,23 @@ /obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, /turf/open/floor/plating, /area/station/engineering/atmos) +"xRz" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/left/directional/north{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen #4"; + req_access = list("xenobiology") + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio4"; + name = "Xenobio Pen 4 Blast Door" + }, +/obj/machinery/duct, +/obj/structure/liquid_barrier, +/turf/open/floor/iron, +/area/station/science/xenobiology) "xRB" = ( /obj/structure/window/reinforced/spawner/directional/east, /obj/effect/spawner/random/trash/mess, @@ -67672,14 +67676,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/security/execution/education) -"xSA" = ( -/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/station/command/heads_quarters/ce) "xSQ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, @@ -67766,14 +67762,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, /area/station/service/hydroponics/garden) -"xUH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/landmark/start/brig_physician, -/obj/structure/chair/office, -/turf/open/floor/iron/white, -/area/station/security/medical) "xUK" = ( /obj/structure/sign/poster/contraband/missing_gloves, /turf/closed/wall, @@ -67874,6 +67862,22 @@ }, /turf/open/floor/wood, /area/station/service/lawoffice) +"xWf" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Xenolab"; + name = "Test Chamber Blast Door" + }, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/obj/machinery/door/window/left/directional/south{ + dir = 4; + name = "Maximum Security Test Chamber"; + req_access = list("xenobiology") + }, +/obj/structure/liquid_barrier, +/turf/open/floor/engine, +/area/station/science/xenobiology) "xWm" = ( /obj/structure/rack, /obj/item/restraints/handcuffs{ @@ -68076,10 +68080,6 @@ /obj/structure/mirror/directional/west, /turf/open/floor/wood, /area/station/maintenance/port/aft) -"xZv" = ( -/obj/machinery/duct, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) "xZx" = ( /obj/machinery/space_heater, /turf/open/floor/plating, @@ -86116,7 +86116,7 @@ kQP kQP mxO qkD -ksM +qTo qIK xWV kKr @@ -88629,12 +88629,12 @@ hfU aXa jMx umN -muu -poE -nhO -hcb -pQV -nuw +tNF +voZ +iqV +aIx +mZe +sYE aXa fbX oGr @@ -90966,8 +90966,8 @@ aaa aaa aaa jXu -aJK -xZv +ssG +pal siY jXu jXu @@ -91223,9 +91223,9 @@ aaa aaa bxr jXu -aJK -xZv -tFg +ssG +pal +pXW jXu aaa aaa @@ -91482,7 +91482,7 @@ uza hZQ jXu jXu -tFg +pXW jXu aaa aaa @@ -91739,7 +91739,7 @@ vxC hZQ qmO fsQ -eMS +aEE jXu aaa aaa @@ -91996,7 +91996,7 @@ gdZ hZQ qmO dqc -aJN +pTA jXu aaa aaa @@ -92253,7 +92253,7 @@ uza hZQ hZQ hZQ -wwj +jpp hZQ aaa aaa @@ -92507,10 +92507,10 @@ iQW mzL qWT nRZ -vkO -gMg -bhI -vaH +qnx +dSM +tvn +fCu nRZ cGu cGu @@ -92764,10 +92764,10 @@ pav wsX dla nRZ -kSs -xUH +qDz +bLp euX -uKR +bTg nRZ gES cGu @@ -92838,7 +92838,7 @@ jhk cOR vgZ ijZ -bkT +dso edo pXM iNc @@ -93021,10 +93021,10 @@ hQH eXj vSo nRZ -oWZ -iIw -iIw -lhc +gFc +mXV +mXV +hjj nRZ bhn tjh @@ -93278,10 +93278,10 @@ wsX wsX fTm nRZ -wLH -lvu -iom -fVz +nYv +ieN +gEK +dah nRZ pHb guS @@ -93834,7 +93834,7 @@ pJR lJn psy htG -llT +tsT pJR uwC ndS @@ -99743,7 +99743,7 @@ uGj tyY iDh csS -niz +lzB gpS xuH rVC @@ -101239,7 +101239,7 @@ aaa rrg iFF gfk -uin +xbE mBf sjM sPj @@ -102861,7 +102861,7 @@ yeI gIM tAg tcx -mOa +uoO vYE eDf nfs @@ -108213,7 +108213,7 @@ acs uXd qJd nLz -xSA +uOy rSi pCt aRS @@ -109556,7 +109556,7 @@ aaa aaa oCX wmL -kLC +sGF wmL wmL lMJ @@ -110584,7 +110584,7 @@ oMA oMA wmL gUS -qBo +itl gUS wmL oMA @@ -111361,7 +111361,7 @@ mBj mKD hxY nae -xfA +rKL cvn jaY dPF @@ -112890,7 +112890,7 @@ bPB kWc jlU gTK -hMv +dMh wKT vGq vXi @@ -112904,7 +112904,7 @@ gSM frt vGq qko -gyI +hKd phI jlU kvO @@ -113401,7 +113401,7 @@ lAu lMJ wrc oyj -qAr +vJD uVk xen mdo @@ -113421,7 +113421,7 @@ nYL nYL ddK hoV -gga +lxy hAN wrc aaa @@ -116231,7 +116231,7 @@ oyj oyj xiL nkq -rwx +hjt wEu vul kkT @@ -116245,7 +116245,7 @@ qID jdj qqq kKG -ohD +dUT dQa xiL lmn @@ -116491,7 +116491,7 @@ jgq imw aft ygF -rrL +xRz cHV jlU aYt @@ -116499,7 +116499,7 @@ gva aYt jlU jlU -sCv +rat ixR shY eOP @@ -118037,7 +118037,7 @@ hdy cbn tQJ tQJ -rvK +xWf tQJ tQJ nnc diff --git a/_maps/map_files/NorthStar/north_star.dmm b/_maps/map_files/NorthStar/north_star.dmm index e4e7c3b9100c..5d8e9b1e4c7e 100644 --- a/_maps/map_files/NorthStar/north_star.dmm +++ b/_maps/map_files/NorthStar/north_star.dmm @@ -225,9 +225,7 @@ /obj/effect/turf_decal/stripes/line, /obj/machinery/holopad, /obj/effect/landmark/navigate_destination/dockarrival, -/obj/machinery/atm{ - pixel_y = -30 - }, +/obj/machinery/atm/directional/south, /turf/open/floor/iron/textured_large, /area/station/hallway/secondary/entry) "acl" = ( @@ -587,6 +585,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/station/command/heads_quarters/hop) +"ahv" = ( +/obj/effect/turf_decal/siding/white, +/obj/item/kirbyplants/random/fullysynthetic, +/turf/open/floor/mineral/silver, +/area/station/service/chapel/funeral) "ahG" = ( /obj/machinery/modular_computer/preset/research{ dir = 4 @@ -986,26 +989,6 @@ }, /turf/open/floor/plating, /area/station/construction/mining/aux_base) -"amR" = ( -/obj/structure/table/reinforced/plastitaniumglass, -/obj/item/folder/white, -/obj/item/taperecorder{ - pixel_x = -9; - pixel_y = 3 - }, -/obj/item/stamp/rd{ - pixel_x = 5 - }, -/obj/item/toy/figure/rd{ - pixel_x = 2; - pixel_y = 13 - }, -/obj/effect/turf_decal/tile/purple/opposingcorners, -/obj/effect/turf_decal/siding{ - dir = 6 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/rd) "amU" = ( /obj/structure/closet/secure_closet/research_director, /obj/effect/turf_decal/tile/neutral/opposingcorners{ @@ -1473,6 +1456,24 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/rd) +"asE" = ( +/obj/effect/turf_decal/trimline/brown/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/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/trimline/brown/line, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 8 + }, +/area/station/cargo/drone_bay) "asI" = ( /obj/structure/industrial_lift/public, /turf/open/floor/plating/elevatorshaft, @@ -2295,7 +2296,7 @@ /area/station/maintenance/floor1/starboard/fore) "aDl" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron/dark, /area/station/hallway/secondary/exit/departure_lounge) "aDn" = ( @@ -2872,15 +2873,6 @@ "aKx" = ( /turf/closed/wall/r_wall, /area/station/maintenance/floor3/starboard/aft) -"aKy" = ( -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/table, -/obj/structure/disposalpipe/segment, -/obj/item/stamp/hos, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hos) "aKC" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -5206,14 +5198,6 @@ /obj/item/radio/intercom/directional/east, /turf/open/floor/iron, /area/station/science/robotics/lab) -"bnm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/thinplating_new/dark{ - dir = 8 - }, -/obj/machinery/holopad, -/turf/open/floor/iron/dark/textured_large, -/area/station/cargo/drone_bay) "bnu" = ( /obj/machinery/light/blacklight/directional/west, /obj/structure/table, @@ -6767,16 +6751,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/security/prison/safe) -"bFU" = ( -/obj/effect/turf_decal/siding/thinplating_new/dark{ - dir = 4 - }, -/obj/effect/turf_decal/arrows{ - dir = 4 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/dark/textured_large, -/area/station/cargo/drone_bay) "bFZ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -7016,6 +6990,13 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/station/medical/abandoned) +"bJI" = ( +/obj/machinery/quantum_server, +/obj/effect/turf_decal/bot/left, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 4 + }, +/area/station/cargo/drone_bay) "bJQ" = ( /obj/structure/railing/corner{ dir = 1 @@ -7963,6 +7944,14 @@ }, /turf/open/floor/iron, /area/station/engineering/atmos) +"bVH" = ( +/obj/machinery/netpod, +/obj/machinery/airalarm/directional/east, +/obj/machinery/airalarm/directional/east, +/obj/machinery/airalarm/directional/east, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/cargo/drone_bay) "bVK" = ( /obj/structure/table, /mob/living/basic/mouse/brown/tom, @@ -11067,6 +11056,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood/tile, /area/station/service/library) +"cOw" = ( +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/table, +/obj/structure/disposalpipe/segment, +/obj/item/stamp/head/hos, +/turf/open/floor/iron/dark, +/area/station/command/heads_quarters/hos) "cOz" = ( /obj/machinery/vending/wardrobe/chap_wardrobe, /obj/item/radio/intercom/directional/west, @@ -12792,6 +12790,12 @@ "dnU" = ( /turf/closed/wall, /area/station/security/office) +"dob" = ( +/obj/machinery/computer/quantum_console{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_corner, +/area/station/cargo/drone_bay) "dog" = ( /obj/structure/showcase/cyborg/old{ dir = 8; @@ -15436,9 +15440,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atm{ - pixel_y = -30 - }, +/obj/machinery/atm/directional/south, /turf/open/floor/carpet/red, /area/station/service/theater) "dYr" = ( @@ -17452,6 +17454,12 @@ }, /turf/open/floor/iron/white, /area/station/science/circuits) +"eBn" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/item/stamp/head/captain, +/turf/open/floor/carpet, +/area/station/command/heads_quarters/captain) "eBu" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/spawner/random/structure/crate_abandoned, @@ -19414,6 +19422,17 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/cargo/office) +"fhi" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/arrows{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/disposalpipe/trunk/multiz, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/drone_bay) "fhl" = ( /obj/structure/bed{ dir = 1 @@ -21445,14 +21464,6 @@ /obj/machinery/door/firedoor/border_only, /turf/open/floor/catwalk_floor/iron_dark, /area/station/maintenance/floor2/starboard/aft) -"fIS" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/obj/machinery/airalarm/directional/north, -/obj/effect/mapping_helpers/airalarm/mixingchamber_access, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/freezerchamber) "fIX" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/structure/crate, @@ -21749,6 +21760,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/science/ordnance/testlab) +"fNv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/iron/stairs{ + dir = 1 + }, +/area/station/cargo/drone_bay) "fNA" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -22195,6 +22213,14 @@ name = "lab floor" }, /area/station/science/robotics/lab) +"fTs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/holopad, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/drone_bay) "fTu" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/shreds, @@ -24116,7 +24142,7 @@ /obj/structure/cable, /obj/structure/table/reinforced, /obj/item/storage/fancy/donut_box, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron/half{ dir = 1 }, @@ -26452,6 +26478,26 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/engine, /area/station/engineering/supermatter) +"hdw" = ( +/obj/structure/table/reinforced/plastitaniumglass, +/obj/item/folder/white, +/obj/item/taperecorder{ + pixel_x = -9; + pixel_y = 3 + }, +/obj/item/stamp/head/rd{ + pixel_x = 5 + }, +/obj/item/toy/figure/rd{ + pixel_x = 2; + pixel_y = 13 + }, +/obj/effect/turf_decal/tile/purple/opposingcorners, +/obj/effect/turf_decal/siding{ + dir = 6 + }, +/turf/open/floor/iron/white, +/area/station/command/heads_quarters/rd) "hdx" = ( /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /obj/machinery/door/airlock/hatch{ @@ -28374,6 +28420,14 @@ }, /turf/open/floor/iron/dark, /area/station/security/lockers) +"hFC" = ( +/obj/machinery/firealarm/directional/south, +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/oil/streak, +/obj/machinery/byteforge, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/smooth_large, +/area/station/cargo/drone_bay) "hFE" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -28788,6 +28842,21 @@ }, /turf/open/floor/iron, /area/station/engineering/lobby) +"hKX" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + 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/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/mining/glass{ + name = "Bitrunning Den" + }, +/turf/open/floor/pod/dark, +/area/station/cargo/drone_bay) "hKZ" = ( /obj/machinery/button/door/directional/south{ id = "dorms_1_bolts"; @@ -29288,13 +29357,6 @@ }, /turf/open/floor/wood, /area/station/commons/dorms/apartment2) -"hSr" = ( -/obj/machinery/quantum_server, -/obj/effect/turf_decal/bot/left, -/turf/open/floor/iron/dark/smooth_corner{ - dir = 4 - }, -/area/station/cargo/drone_bay) "hSC" = ( /obj/structure/railing{ dir = 4 @@ -30121,6 +30183,16 @@ /obj/item/kirbyplants/random, /turf/open/floor/iron, /area/station/hallway/floor3/aft) +"ifn" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/arrows{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/drone_bay) "ifo" = ( /obj/structure/tank_holder/emergency_oxygen, /obj/effect/turf_decal/stripes/line{ @@ -31376,13 +31448,6 @@ }, /turf/open/floor/iron, /area/station/service/hydroponics) -"ixP" = ( -/obj/machinery/netpod, -/obj/structure/railing{ - layer = 3.1 - }, -/turf/open/floor/catwalk_floor/iron_dark, -/area/station/cargo/drone_bay) "ixQ" = ( /obj/effect/turf_decal/tile/green/full, /obj/structure/railing{ @@ -32733,6 +32798,12 @@ }, /turf/open/floor/engine/airless, /area/station/solars/port/aft) +"iRu" = ( +/obj/machinery/airalarm/directional/north, +/obj/effect/mapping_helpers/airalarm/tlv_cold_room, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/service/kitchen/coldroom) "iRD" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -32962,7 +33033,7 @@ /obj/effect/turf_decal/trimline/purple/filled/corner{ dir = 1 }, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron/dark, /area/station/hallway/floor2/fore) "iVL" = ( @@ -36128,7 +36199,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron/white, /area/station/medical/medbay/central) "jMn" = ( @@ -36424,7 +36495,7 @@ /area/station/science/lobby) "jPs" = ( /obj/machinery/camera/autoname/directional/north, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron/dark/side{ dir = 1 }, @@ -39647,6 +39718,24 @@ /obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible/layer2, /turf/open/floor/iron, /area/station/engineering/atmos) +"kIn" = ( +/obj/effect/turf_decal/trimline/brown/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/brown/line, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_half, +/area/station/cargo/drone_bay) "kIu" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, @@ -40238,12 +40327,6 @@ /obj/machinery/camera/autoname/directional/north, /turf/open/floor/iron, /area/station/commons/vacant_room/commissary) -"kQJ" = ( -/obj/machinery/airalarm/directional/south, -/obj/effect/mapping_helpers/airalarm/engine_access, -/obj/effect/baseturf_helper/reinforced_plating/ceiling, -/turf/open/floor/engine, -/area/station/engineering/supermatter) "kQN" = ( /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -41253,6 +41336,21 @@ /obj/machinery/research/anomaly_refinery, /turf/open/floor/iron/dark/textured, /area/station/science/ordnance/storage) +"leE" = ( +/obj/structure/table/wood, +/obj/item/folder/yellow{ + pixel_x = -6 + }, +/obj/item/stamp/head/qm{ + pixel_x = -6 + }, +/obj/structure/cable, +/obj/item/flashlight/lamp/green{ + pixel_x = 6; + pixel_y = 15 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/qm) "leF" = ( /obj/effect/turf_decal/siding/yellow{ dir = 10 @@ -41918,12 +42016,6 @@ dir = 8 }, /area/station/ai_monitored/command/storage/eva) -"lmi" = ( -/obj/machinery/airalarm/directional/north, -/obj/effect/mapping_helpers/airalarm/tlv_cold_room, -/obj/machinery/light/directional/north, -/turf/open/floor/iron/kitchen_coldroom/freezerfloor, -/area/station/service/kitchen/coldroom) "lmk" = ( /obj/effect/turf_decal/trimline/red/warning{ dir = 8 @@ -42946,6 +43038,21 @@ /obj/effect/landmark/generic_maintenance_landmark, /turf/open/floor/pod/light, /area/station/maintenance/floor1/port/aft) +"lzV" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/item/cigbutt/cigarbutt{ + pixel_x = 7 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/iron/dark/smooth_half, +/area/station/cargo/drone_bay) "lzX" = ( /obj/effect/turf_decal/trimline/red/line, /obj/effect/turf_decal/trimline/white/warning, @@ -43026,21 +43133,6 @@ "lAU" = ( /turf/closed/wall, /area/station/service/library/printer) -"lBb" = ( -/obj/effect/turf_decal/siding/thinplating_new/dark{ - 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/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/mining/glass{ - name = "Bitrunning Den" - }, -/turf/open/floor/pod/dark, -/area/station/cargo/drone_bay) "lBo" = ( /obj/machinery/atmospherics/pipe/smart/simple/dark/visible/layer2{ dir = 10 @@ -43477,6 +43569,16 @@ }, /turf/open/floor/iron/dark/textured, /area/station/commons/fitness) +"lGu" = ( +/obj/machinery/netpod, +/obj/effect/decal/cleanable/vomit/old{ + pixel_x = -12; + pixel_y = -13 + }, +/obj/item/radio/intercom/directional/north, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/cargo/drone_bay) "lGw" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -44091,6 +44193,14 @@ /obj/item/restraints/handcuffs, /turf/open/floor/iron/dark, /area/station/security/brig) +"lOF" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/obj/effect/mapping_helpers/airalarm/mixingchamber_access, +/turf/open/floor/iron/dark, +/area/station/science/ordnance/freezerchamber) "lOI" = ( /obj/machinery/airalarm/directional/west, /obj/structure/noticeboard/ce{ @@ -44394,20 +44504,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/hallway/floor3/aft) -"lRL" = ( -/obj/machinery/button/ignition/incinerator/ordmix{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/machinery/button/door/incinerator_vent_ordmix{ - pixel_x = -8; - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/machinery/airalarm/directional/west, -/obj/effect/mapping_helpers/airalarm/mixingchamber_access, -/turf/open/floor/iron/dark, -/area/station/science/ordnance/burnchamber) "lRO" = ( /obj/structure/table/wood, /obj/effect/spawner/random/entertainment/musical_instrument, @@ -45137,13 +45233,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron/white, /area/station/medical/abandoned) -"mbR" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/stripes{ - dir = 8 - }, -/turf/open/floor/iron/dark/smooth_large, -/area/station/cargo/drone_bay) "mbS" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, /obj/effect/spawner/structure/window/hollow/reinforced/plasma/middle, @@ -45287,6 +45376,12 @@ /obj/machinery/status_display/ai/directional/west, /turf/open/floor/iron, /area/station/hallway/floor1/aft) +"mdu" = ( +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/engine_access, +/obj/effect/baseturf_helper/reinforced_plating/ceiling, +/turf/open/floor/engine, +/area/station/engineering/supermatter) "mdB" = ( /turf/open/floor/iron, /area/station/commons/fitness/recreation) @@ -45607,18 +45702,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/textured_large, /area/station/cargo/sorting) -"mho" = ( -/obj/structure/table, -/obj/item/paper_bin/carbon{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/stamp/hop{ - pixel_x = -4; - pixel_y = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hop) "mhq" = ( /obj/structure/table, /obj/item/paper_bin, @@ -46677,20 +46760,6 @@ }, /turf/open/floor/iron/dark, /area/station/hallway/floor2/aft) -"muC" = ( -/obj/structure/table/reinforced/plastitaniumglass, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/paper_bin/construction{ - pixel_x = 6; - pixel_y = 7 - }, -/obj/item/pen, -/obj/item/stamp/ce{ - pixel_x = -8 - }, -/turf/open/floor/catwalk_floor/iron_dark, -/area/station/command/heads_quarters/ce) "muI" = ( /obj/machinery/door/airlock/hatch{ name = "Maintenance Bulkhead" @@ -47657,11 +47726,6 @@ /obj/effect/turf_decal/tile/red/fourcorners, /turf/open/floor/iron/dark, /area/station/security/lockers) -"mId" = ( -/obj/item/kirbyplants/random/dead, -/obj/effect/turf_decal/tile/purple/opposingcorners, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/rd) "mIh" = ( /obj/structure/closet/toolcloset, /obj/effect/turf_decal/bot, @@ -48134,13 +48198,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/tcommsat/server) -"mNq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/iron/stairs{ - dir = 1 - }, -/area/station/cargo/drone_bay) "mNT" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 4 @@ -50561,14 +50618,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor1/port) -"nri" = ( -/obj/machinery/firealarm/directional/south, -/obj/machinery/light/directional/south, -/obj/effect/decal/cleanable/oil/streak, -/obj/machinery/byteforge, -/obj/effect/turf_decal/box, -/turf/open/floor/iron/dark/smooth_large, -/area/station/cargo/drone_bay) "nrk" = ( /obj/structure/cable, /obj/structure/table, @@ -51455,12 +51504,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/pod/dark, /area/station/maintenance/floor4/port/aft) -"nCB" = ( -/obj/machinery/computer/quantum_console{ - dir = 4 - }, -/turf/open/floor/iron/dark/smooth_corner, -/area/station/cargo/drone_bay) "nCD" = ( /obj/structure/flora/bush/flowers_br/style_random, /turf/open/floor/grass, @@ -51856,7 +51899,7 @@ /turf/open/floor/iron/dark, /area/station/security/lockers) "nHB" = ( -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron/dark/side{ dir = 1 }, @@ -52276,15 +52319,6 @@ }, /turf/open/floor/iron, /area/station/hallway/floor3/aft) -"nNy" = ( -/obj/structure/sign/poster/random/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/siding/thinplating_new/dark{ - dir = 8 - }, -/turf/open/floor/iron/dark/textured_large, -/area/station/cargo/drone_bay) "nNJ" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -55800,13 +55834,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/hop) -"oJZ" = ( -/obj/effect/turf_decal/siding/white{ - dir = 1 - }, -/obj/item/kirbyplants/random/fullysynthetic, -/turf/open/floor/mineral/silver, -/area/station/service/chapel/funeral) "oKc" = ( /obj/effect/turf_decal/trimline/green/filled/corner{ dir = 8 @@ -55916,11 +55943,6 @@ /obj/structure/railing, /turf/open/floor/iron, /area/station/commons/vacant_room/commissary) -"oMk" = ( -/obj/effect/turf_decal/siding/white, -/obj/item/kirbyplants/random/fullysynthetic, -/turf/open/floor/mineral/silver, -/area/station/service/chapel/funeral) "oMn" = ( /obj/item/grenade/barrier{ pixel_x = -3; @@ -57428,6 +57450,13 @@ }, /turf/open/floor/pod/light, /area/station/cargo/sorting) +"pjG" = ( +/obj/machinery/netpod, +/obj/structure/railing{ + layer = 3.1 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/cargo/drone_bay) "pjM" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -61144,14 +61173,6 @@ }, /turf/open/floor/iron, /area/station/cargo/miningdock) -"qlP" = ( -/obj/machinery/netpod, -/obj/machinery/airalarm/directional/east, -/obj/machinery/airalarm/directional/east, -/obj/machinery/airalarm/directional/east, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/catwalk_floor/iron_dark, -/area/station/cargo/drone_bay) "qlX" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 8 @@ -61556,21 +61577,6 @@ dir = 8 }, /area/station/service/chapel) -"qsc" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/item/cigbutt/cigarbutt{ - pixel_x = 7 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/decal/cleanable/glass, -/turf/open/floor/iron/dark/smooth_half, -/area/station/cargo/drone_bay) "qse" = ( /obj/structure/closet/secure_closet/personal, /turf/open/floor/iron/dark, @@ -67507,12 +67513,6 @@ }, /turf/open/floor/iron/dark, /area/station/security/brig) -"rWL" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/stamp/captain, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/captain) "rWT" = ( /turf/closed/wall/r_wall, /area/station/command/heads_quarters/rd) @@ -69245,6 +69245,20 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/station/medical/treatment_center) +"szr" = ( +/obj/effect/turf_decal/trimline/brown/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/trimline/brown/line, +/turf/open/floor/iron/dark/smooth_half, +/area/station/cargo/drone_bay) "szt" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -70173,6 +70187,15 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark, /area/station/hallway/floor3/fore) +"sMk" = ( +/obj/structure/sign/poster/random/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/decal/cleanable/oil, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/drone_bay) "sMm" = ( /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ dir = 4 @@ -71142,7 +71165,7 @@ /turf/open/floor/eighties, /area/station/commons/fitness/recreation/entertainment) "sZF" = ( -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron/dark/side{ dir = 9 }, @@ -71216,6 +71239,10 @@ "tat" = ( /turf/open/openspace, /area/station/maintenance/floor3/starboard/aft) +"taC" = ( +/obj/structure/cable, +/turf/closed/wall, +/area/station/cargo/drone_bay) "taD" = ( /obj/machinery/door/airlock/external/glass, /obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ @@ -73059,24 +73086,6 @@ /obj/machinery/light_switch/directional/south, /turf/open/floor/iron/kitchen, /area/station/command/heads_quarters/rd) -"tCm" = ( -/obj/effect/turf_decal/trimline/brown/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/brown/line, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/iron/dark/smooth_half, -/area/station/cargo/drone_bay) "tCB" = ( /obj/effect/spawner/random/trash/garbage{ spawn_scatter_radius = 1 @@ -73163,6 +73172,18 @@ dir = 1 }, /area/station/engineering/atmos/office) +"tDO" = ( +/obj/structure/table, +/obj/item/paper_bin/carbon{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/stamp/head/hop{ + pixel_x = -4; + pixel_y = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command/heads_quarters/hop) "tEb" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/textured_large, @@ -73439,21 +73460,6 @@ }, /turf/open/floor/carpet/blue, /area/station/command/meeting_room) -"tIf" = ( -/obj/structure/table/wood, -/obj/item/folder/yellow{ - pixel_x = -6 - }, -/obj/item/stamp/qm{ - pixel_x = -6 - }, -/obj/structure/cable, -/obj/item/flashlight/lamp/green{ - pixel_x = 6; - pixel_y = 15 - }, -/turf/open/floor/wood/large, -/area/station/command/heads_quarters/qm) "tIj" = ( /obj/structure/railing, /obj/structure/chair, @@ -73544,15 +73550,6 @@ }, /turf/open/floor/iron/dark, /area/station/security/execution/transfer) -"tIW" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/obj/structure/table/reinforced/rglass, -/obj/item/paper_bin, -/obj/item/stamp/cmo, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) "tJd" = ( /obj/structure/closet/firecloset, /turf/open/floor/pod/light, @@ -73616,7 +73613,7 @@ dir = 8 }, /obj/machinery/light_switch/directional/east, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/wood, /area/station/commons/dorms/apartment2) "tJZ" = ( @@ -76766,20 +76763,6 @@ /obj/effect/decal/cleanable/blood/tracks, /turf/open/floor/engine, /area/station/maintenance/floor4/starboard/aft) -"uHw" = ( -/obj/effect/turf_decal/siding/thinplating_new/dark{ - dir = 4 - }, -/obj/effect/turf_decal/arrows{ - dir = 4 - }, -/obj/structure/railing{ - layer = 3.1 - }, -/obj/effect/decal/cleanable/robot_debris, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron/dark/textured_large, -/area/station/cargo/drone_bay) "uHx" = ( /obj/structure/grille/broken, /turf/open/floor/plating, @@ -77736,6 +77719,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/engineering/atmos/pumproom) +"uUi" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/cargo/drone_bay) "uUj" = ( /obj/structure/transit_tube/curved{ dir = 8 @@ -78509,6 +78499,20 @@ }, /turf/open/floor/wood, /area/station/service/theater) +"veD" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/arrows{ + dir = 4 + }, +/obj/structure/railing{ + layer = 3.1 + }, +/obj/effect/decal/cleanable/robot_debris, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/drone_bay) "veF" = ( /obj/effect/turf_decal/siding/white{ dir = 4 @@ -78775,6 +78779,15 @@ }, /turf/open/floor/iron/dark/small, /area/station/service/chapel/office) +"viE" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/structure/table/reinforced/rglass, +/obj/item/paper_bin, +/obj/item/stamp/head/cmo, +/turf/open/floor/iron/dark, +/area/station/command/heads_quarters/cmo) "viL" = ( /obj/effect/turf_decal/trimline/purple/line{ dir = 5 @@ -79832,7 +79845,7 @@ }, /area/station/engineering/lobby) "vvT" = ( -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron/dark, /area/station/hallway/floor1/fore) "vvX" = ( @@ -79879,6 +79892,20 @@ /obj/machinery/disposal/bin, /turf/open/floor/iron/white, /area/station/medical/medbay/central) +"vwC" = ( +/obj/structure/table/reinforced/plastitaniumglass, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/paper_bin/construction{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/item/pen, +/obj/item/stamp/head/ce{ + pixel_x = -8 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/command/heads_quarters/ce) "vwD" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -81325,20 +81352,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/storage) -"vQF" = ( -/obj/effect/turf_decal/trimline/brown/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/west, -/obj/effect/turf_decal/stripes, -/obj/effect/turf_decal/trimline/brown/line, -/turf/open/floor/iron/dark/smooth_half, -/area/station/cargo/drone_bay) "vQR" = ( /obj/effect/turf_decal/tile/blue/half/contrasted, /turf/open/floor/iron/dark/side{ @@ -84803,6 +84816,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor2/starboard) +"wJM" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/item/kirbyplants/random/fullysynthetic, +/turf/open/floor/mineral/silver, +/area/station/service/chapel/funeral) "wJR" = ( /obj/structure/table, /obj/item/plate{ @@ -86027,17 +86047,6 @@ dir = 1 }, /area/station/hallway/floor3/aft) -"xal" = ( -/obj/effect/turf_decal/siding/thinplating_new/dark{ - dir = 4 - }, -/obj/effect/turf_decal/arrows{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/disposalpipe/trunk/multiz, -/turf/open/floor/iron/dark/textured_large, -/area/station/cargo/drone_bay) "xam" = ( /obj/effect/turf_decal/trimline/white/line{ dir = 8 @@ -87456,24 +87465,6 @@ /obj/structure/cable, /turf/open/floor/catwalk_floor, /area/station/maintenance/floor2/port/aft) -"xur" = ( -/obj/effect/turf_decal/trimline/brown/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes{ - dir = 1 - }, -/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/trimline/brown/line, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron/dark/smooth_corner{ - dir = 8 - }, -/area/station/cargo/drone_bay) "xuv" = ( /turf/closed/wall/r_wall, /area/station/maintenance/floor2/starboard/fore) @@ -87673,6 +87664,20 @@ /obj/machinery/camera/autoname/directional/east, /turf/open/floor/iron/kitchen_coldroom/freezerfloor, /area/station/service/kitchen/coldroom) +"xwP" = ( +/obj/machinery/button/ignition/incinerator/ordmix{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/machinery/button/door/incinerator_vent_ordmix{ + pixel_x = -8; + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/mixingchamber_access, +/turf/open/floor/iron/dark, +/area/station/science/ordnance/burnchamber) "xwX" = ( /obj/structure/easel, /turf/open/floor/bamboo/tatami/black, @@ -87802,16 +87807,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/pod/dark, /area/station/maintenance/floor2/starboard) -"xyT" = ( -/obj/machinery/netpod, -/obj/effect/decal/cleanable/vomit/old{ - pixel_x = -12; - pixel_y = -13 - }, -/obj/item/radio/intercom/directional/north, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/catwalk_floor/iron_dark, -/area/station/cargo/drone_bay) "xyU" = ( /obj/effect/decal/cleanable/dirt, /obj/item/picket_sign, @@ -88803,10 +88798,6 @@ /obj/machinery/atmospherics/components/unary/cryo_cell, /turf/open/floor/iron/dark/textured, /area/station/medical/cryo) -"xNr" = ( -/obj/structure/cable, -/turf/closed/wall, -/area/station/cargo/drone_bay) "xNx" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/iron, @@ -89209,6 +89200,11 @@ /obj/effect/turf_decal/tile/green/full, /turf/open/floor/iron, /area/station/service/hydroponics) +"xUp" = ( +/obj/item/kirbyplants/random/dead, +/obj/effect/turf_decal/tile/purple/opposingcorners, +/turf/open/floor/iron/white, +/area/station/command/heads_quarters/rd) "xUI" = ( /obj/structure/cable, /obj/structure/chair/sofa/bench/left, @@ -113173,8 +113169,8 @@ owI owI aQK aQK -nCB -hSr +dob +bJI aQK aQK aQK @@ -113430,11 +113426,11 @@ owI owI aQK aQK -nNy -bnm -mNq -vQF -nri +sMk +fTs +fNv +szr +hFC aQK rGF yiZ @@ -113687,11 +113683,11 @@ owI owI aQK aQK -bFU -xal -uHw -tCm -mbR +ifn +fhi +veD +kIn +uUi gfn hBR qWJ @@ -113944,11 +113940,11 @@ owI owI aQK aQK -xyT -qlP -ixP -xur -qsc +lGu +bVH +pjG +asE +lzV gfn rYA eEB @@ -114203,8 +114199,8 @@ aQK aQK aQK aQK -xNr -lBb +taC +hKX aQK aQK fxr @@ -119860,7 +119856,7 @@ wZN lWH lNE pZU -tIf +leE cmT sMS mar @@ -133255,7 +133251,7 @@ nPb qDs kSF cpE -muC +vwC qIf xGI kzE @@ -136330,7 +136326,7 @@ sly uyD aFJ mMq -kQJ +mdu uyD sHL ddT @@ -184114,10 +184110,10 @@ hge dPi hge oiO -mId +xUp aeI aiN -amR +hdw anN vIp asz @@ -188512,7 +188508,7 @@ obM kKr dXt wRD -tIW +viE okN cBa dYv @@ -248913,7 +248909,7 @@ ftp pzi eMj diA -lmi +iRu dDn pmQ pDK @@ -307999,7 +307995,7 @@ qlp qlp oKq mFS -rWL +eBn dWu wfx vLW @@ -310813,7 +310809,7 @@ tQO mXH qyH mXH -lRL +xwP nmc xJx rov @@ -312607,7 +312603,7 @@ ucA ucA ucA lYx -fIS +lOF koC oOA tyR @@ -314195,7 +314191,7 @@ apg sWm kHO iAq -aKy +cOw iAq cBx vEa @@ -314940,7 +314936,7 @@ hMm ipn pYl geD -mho +tDO mKs lif jmI @@ -328804,9 +328800,9 @@ fVV fVV fVV ulj -oJZ +wJM gbZ -oMk +ahv iWQ xeQ fVV diff --git a/_maps/map_files/generic/CentCom.dmm b/_maps/map_files/generic/CentCom.dmm index 1f36125564c3..85742b5df225 100644 --- a/_maps/map_files/generic/CentCom.dmm +++ b/_maps/map_files/generic/CentCom.dmm @@ -9266,7 +9266,7 @@ pixel_x = 18; pixel_y = 5 }, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /obj/structure/table, /turf/open/floor/iron/dark/herringbone, /area/centcom/central_command_areas/arcade) diff --git a/_maps/map_files/tramstation/tramstation.dmm b/_maps/map_files/tramstation/tramstation.dmm index d67925aea236..ce8f17253144 100644 --- a/_maps/map_files/tramstation/tramstation.dmm +++ b/_maps/map_files/tramstation/tramstation.dmm @@ -3774,6 +3774,11 @@ "awE" = ( /turf/open/floor/engine/n2, /area/station/engineering/atmos) +"awQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/duct, +/turf/open/floor/iron/smooth, +/area/station/maintenance/department/eva) "awT" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 6 @@ -4159,6 +4164,23 @@ }, /turf/open/floor/iron/dark/textured, /area/station/engineering/main) +"aBk" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/machinery/airalarm/directional/north, +/obj/structure/rack, +/obj/item/storage/medkit/regular{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/medkit/regular, +/obj/item/storage/box/bodybags, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/cup/bottle/epinephrine, +/obj/item/reagent_containers/cup/bottle/multiver, +/turf/open/floor/iron/white, +/area/station/security/medical) "aBo" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 4 @@ -7207,23 +7229,6 @@ }, /turf/open/floor/wood/large, /area/station/service/barber) -"bjb" = ( -/obj/machinery/door/window/left/directional/west{ - base_state = "right"; - dir = 4; - icon_state = "right"; - name = "Brig Infirmary"; - req_access = list("security") - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/corner, -/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/station/security/medical) "bju" = ( /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 6 @@ -7826,6 +7831,28 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/catwalk_floor, /area/station/maintenance/central/lesser) +"bup" = ( +/obj/structure/table, +/obj/machinery/button/door{ + id = "rdoffice"; + name = "Privacy Shutter Control"; + pixel_x = -7; + pixel_y = -2; + req_access = list("research") + }, +/obj/item/folder/white{ + pixel_x = 5 + }, +/obj/item/stamp/head/rd{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/item/pen/fountain{ + pixel_x = -4; + pixel_y = 7 + }, +/turf/open/floor/glass/reinforced, +/area/station/command/heads_quarters/rd) "buv" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/freezer, @@ -8881,6 +8908,12 @@ }, /turf/open/floor/iron/dark, /area/station/ai_monitored/turret_protected/aisat/maint) +"bKP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/duct, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/department/eva) "bKT" = ( /obj/machinery/portable_atmospherics/canister, /turf/open/floor/iron/dark, @@ -10250,16 +10283,6 @@ }, /turf/open/floor/iron/dark/herringbone, /area/ruin/powered/clownplanet) -"ceO" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/obj/machinery/power/apc/auto_name/directional/north, -/obj/structure/cable, -/obj/machinery/iv_drip, -/obj/item/reagent_containers/blood, -/turf/open/floor/iron/white, -/area/station/security/medical) "ceQ" = ( /turf/open/floor/engine/hull, /area/station/solars/starboard/fore) @@ -11068,18 +11091,20 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/engineering/engine_smes) +"csL" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/duct, +/turf/open/floor/iron/white, +/area/station/security/medical) "csR" = ( /obj/machinery/firealarm/directional/west, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/service/chapel/office) -"csW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/duct, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/department/eva) "cta" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/trimline/neutral/filled/line{ @@ -11328,13 +11353,6 @@ /obj/item/storage/box/lights/tubes, /turf/open/floor/iron, /area/station/service/janitor) -"cxS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/plumbed{ - name = "dormitory water reservoir" - }, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/eva) "cxV" = ( /obj/machinery/light/directional/east, /obj/structure/chair/office{ @@ -12166,6 +12184,14 @@ /obj/effect/turf_decal/trimline/neutral/filled/warning, /turf/open/floor/iron, /area/station/hallway/primary/tram/center) +"cMU" = ( +/obj/structure/table/glass, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/item/stamp/head/cmo, +/turf/open/floor/iron/white, +/area/station/command/heads_quarters/cmo) "cNc" = ( /obj/effect/turf_decal/tile/blue/half/contrasted{ dir = 4 @@ -12921,27 +12947,6 @@ /obj/structure/cable, /turf/open/floor/iron/grimy, /area/station/service/chapel/office) -"daU" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/stamp/hop, -/obj/item/trapdoor_remote/preloaded{ - pixel_x = -8 - }, -/obj/machinery/requests_console/directional/west{ - anon_tips_receiver = 1; - assistance_requestable = 1; - department = "Head of Personnel's Desk"; - name = "Head of Personnel's Requests Console"; - supplies_requestable = 1; - can_send_announcements = 1 - }, -/obj/item/paper_bin/carbon, -/obj/item/pen{ - pixel_x = -4 - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/hop) "dbc" = ( /obj/effect/turf_decal/trimline/brown/filled/corner{ dir = 4 @@ -13771,6 +13776,23 @@ }, /turf/open/floor/iron, /area/station/security/brig) +"doe" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/left/directional/east{ + name = "Containment Pen #6"; + req_access = list("xenobiology") + }, +/obj/machinery/door/window/left/directional/west{ + name = "Containment Pen #6"; + req_access = list("xenobiology") + }, +/obj/machinery/door/poddoor/preopen{ + id = "containdeez6"; + name = "Xenobiology Containment Blast Door" + }, +/obj/structure/liquid_barrier, +/turf/open/floor/engine, +/area/station/science/xenobiology) "dor" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 1 @@ -14168,6 +14190,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/mineral/titanium/blue, /area/station/maintenance/starboard/central) +"dvJ" = ( +/obj/machinery/door/airlock/hatch{ + name = "Secure Pen" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/obj/structure/liquid_barrier, +/turf/open/floor/engine, +/area/station/science/xenobiology) "dvQ" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 5 @@ -15221,6 +15251,12 @@ /obj/item/storage/box/disks_nanite, /turf/open/floor/iron/white, /area/station/science/ordnance/office) +"dNT" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/structure/table/optable, +/obj/machinery/defibrillator_mount/directional/south, +/turf/open/floor/iron/white, +/area/station/security/medical) "dNY" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/neutral/filled/line{ @@ -20990,23 +21026,6 @@ "fFl" = ( /turf/open/floor/wood/large, /area/station/service/barber) -"fFu" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/window/left/directional/east{ - name = "Containment Pen #2"; - req_access = list("xenobiology") - }, -/obj/machinery/door/window/left/directional/west{ - name = "Containment Pen #2"; - req_access = list("xenobiology") - }, -/obj/machinery/door/poddoor/preopen{ - id = "containdeez2"; - name = "Xenobiology Containment Blast Door" - }, -/obj/structure/liquid_barrier, -/turf/open/floor/engine, -/area/station/science/xenobiology) "fFx" = ( /obj/effect/landmark/start/hangover, /turf/open/floor/iron, @@ -21343,6 +21362,15 @@ /obj/machinery/air_sensor/nitrogen_tank, /turf/open/floor/engine/n2, /area/station/engineering/atmos) +"fKm" = ( +/obj/structure/table/reinforced/rglass, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/obj/machinery/computer/records/medical/laptop, +/turf/open/floor/iron/white, +/area/station/security/medical) "fKx" = ( /obj/machinery/door/airlock/bananium, /turf/open/floor/iron/grimy, @@ -23329,13 +23357,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/smooth, /area/station/maintenance/department/science) -"gws" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/stamp/hos, -/obj/item/food/spaghetti/pastatomato/soulful, -/turf/open/floor/carpet, -/area/station/command/heads_quarters/hos) "gwy" = ( /obj/structure/sign/warning/no_smoking{ pixel_x = -28 @@ -25723,6 +25744,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/department/security) +"hkU" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/stamp/head/hos, +/obj/item/food/spaghetti/pastatomato/soulful, +/turf/open/floor/carpet, +/area/station/command/heads_quarters/hos) "hla" = ( /obj/structure/railing{ dir = 8; @@ -25913,7 +25941,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /obj/effect/landmark/navigate_destination/common/dorms, /turf/open/floor/iron, /area/station/commons/dorms) @@ -26446,6 +26474,21 @@ /obj/effect/spawner/random/bureaucracy/paper, /turf/open/floor/plastic, /area/station/engineering/break_room) +"hyM" = ( +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "Xenolab"; + name = "Test Chamber Blast Door" + }, +/obj/machinery/door/window/left/directional/south{ + dir = 1; + name = "Maximum Security Test Chamber"; + req_access = list("xenobiology") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/obj/structure/liquid_barrier, +/turf/open/floor/engine, +/area/station/science/xenobiology) "hyO" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/window/spawner, @@ -27098,12 +27141,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/smooth, /area/station/maintenance/tram/right) -"hKz" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/structure/table/optable, -/obj/machinery/defibrillator_mount/directional/south, -/turf/open/floor/iron/white, -/area/station/security/medical) "hKH" = ( /obj/effect/decal/cleanable/dirt, /mob/living/simple_animal/bot/mulebot{ @@ -28807,7 +28844,7 @@ /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 1 }, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron, /area/station/escapepodbay) "imY" = ( @@ -28839,7 +28876,7 @@ pixel_x = -25; pixel_y = -5 }, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron/white, /area/station/medical/medbay/lobby) "int" = ( @@ -28891,14 +28928,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/central/greater) -"inO" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/duct, -/turf/open/floor/iron/white, -/area/station/security/medical) "inP" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -30025,7 +30054,7 @@ /obj/effect/turf_decal/trimline/neutral/filled/warning{ dir = 1 }, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron, /area/station/hallway/primary/tram/right) "iGg" = ( @@ -30668,6 +30697,18 @@ /obj/effect/turf_decal/trimline/neutral/filled/warning, /turf/open/floor/iron, /area/station/hallway/primary/tram/right) +"iQx" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/item/stamp/head/captain, +/obj/machinery/door/window{ + base_state = "right"; + icon_state = "right"; + name = "Captain's Desk"; + req_access = list("captain") + }, +/turf/open/floor/wood, +/area/station/command/heads_quarters/captain) "iQC" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/sorting/mail/flip{ @@ -31669,14 +31710,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/security/courtroom/holding) -"jfU" = ( -/obj/machinery/door/airlock/hatch{ - name = "Secure Pen" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/obj/structure/liquid_barrier, -/turf/open/floor/engine, -/area/station/science/xenobiology) "jge" = ( /obj/structure/cable/layer1, /obj/machinery/power/apc/auto_name/directional/west, @@ -32733,6 +32766,17 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, /area/station/commons/dorms) +"jwu" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Security Maintenance Hatch" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/machinery/duct, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/department/eva) "jwT" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -34076,6 +34120,14 @@ }, /turf/open/floor/iron/smooth, /area/station/maintenance/starboard/lesser) +"jTT" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/obj/structure/closet/secure_closet/brig_physician, +/obj/item/clothing/suit/jacket/straight_jacket, +/turf/open/floor/iron/dark, +/area/station/security/medical) "jUa" = ( /obj/effect/turf_decal/trimline/purple/filled/corner{ dir = 4 @@ -34654,6 +34706,16 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/science/robotics/lab) +"kcQ" = ( +/obj/structure/table/reinforced/rglass, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/item/radio/intercom/directional/west, +/obj/item/clothing/gloves/latex, +/obj/item/clothing/neck/stethoscope, +/turf/open/floor/iron/white, +/area/station/security/medical) "kcT" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/window/brigdoor/left/directional/east{ @@ -37402,21 +37464,6 @@ }, /turf/open/floor/iron/white, /area/station/science/lab) -"kUf" = ( -/obj/structure/table/reinforced/rglass, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/machinery/camera{ - c_tag = "Security - Medical Center"; - dir = 10; - network = list("ss13","Security") - }, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/roller, -/turf/open/floor/iron/white, -/area/station/security/medical) "kUh" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -39694,14 +39741,6 @@ }, /turf/open/floor/iron/smooth, /area/station/hallway/primary/tram/center) -"lGn" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/duct, -/turf/open/floor/iron/white, -/area/station/security/medical) "lGu" = ( /obj/structure/lattice/catwalk, /obj/structure/railing, @@ -44090,11 +44129,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/hallway/secondary/service) -"nco" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/duct, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/eva) "ncE" = ( /obj/effect/turf_decal/sand/plating, /obj/structure/cable, @@ -44709,6 +44743,13 @@ /obj/effect/decal/cleanable/plastic, /turf/closed/wall/r_wall, /area/ruin/powered/clownplanet) +"nlB" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/machinery/duct, +/turf/open/floor/iron/white, +/area/station/security/medical) "nlD" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -44887,6 +44928,15 @@ /obj/structure/cable, /turf/open/floor/catwalk_floor, /area/station/maintenance/starboard/central) +"noq" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/obj/machinery/computer/operating{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/security/medical) "noy" = ( /obj/structure/cable, /turf/open/floor/iron/dark, @@ -45584,21 +45634,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark/textured, /area/station/engineering/main) -"nzg" = ( -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "Xenolab"; - name = "Test Chamber Blast Door" - }, -/obj/machinery/door/window/left/directional/south{ - dir = 1; - name = "Maximum Security Test Chamber"; - req_access = list("xenobiology") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/obj/structure/liquid_barrier, -/turf/open/floor/engine, -/area/station/science/xenobiology) "nzh" = ( /obj/structure/fluff/tram_rail/end{ dir = 8 @@ -46098,13 +46133,6 @@ /obj/item/pen/fourcolor, /turf/open/floor/iron/smooth, /area/station/maintenance/starboard/lesser) -"nHo" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/obj/machinery/duct, -/turf/open/floor/iron/white, -/area/station/security/medical) "nHu" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 @@ -46782,23 +46810,6 @@ }, /turf/open/floor/iron/white, /area/station/science/ordnance/freezerchamber) -"nSs" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/airalarm/directional/north, -/obj/structure/rack, -/obj/item/storage/medkit/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/medkit/regular, -/obj/item/storage/box/bodybags, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/cup/bottle/epinephrine, -/obj/item/reagent_containers/cup/bottle/multiver, -/turf/open/floor/iron/white, -/area/station/security/medical) "nSI" = ( /turf/closed/wall/r_wall, /area/station/commons/vacant_room/commissary) @@ -46946,6 +46957,23 @@ /obj/machinery/light/small/directional/north, /turf/open/floor/grass, /area/station/hallway/primary/tram/center) +"nUV" = ( +/obj/machinery/door/window/left/directional/west{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Brig Infirmary"; + req_access = list("security") + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/corner, +/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/station/security/medical) "nUW" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/smart/simple/green/visible, @@ -47114,11 +47142,6 @@ }, /turf/open/space/basic, /area/space/nearstation) -"nYY" = ( -/obj/effect/turf_decal/stripes/end, -/obj/machinery/shower/directional/south, -/turf/open/floor/iron/white/textured, -/area/station/security/medical) "nZJ" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 4 @@ -47915,6 +47938,14 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/ai_monitored/security/armory) +"olt" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/duct, +/turf/open/floor/iron/white, +/area/station/security/medical) "olw" = ( /obj/structure/industrial_lift/tram/white, /obj/structure/fluff/tram_rail, @@ -47974,7 +48005,7 @@ dir = 9 }, /obj/effect/turf_decal/trimline/dark_blue/corner, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/hop) "omT" = ( @@ -48002,6 +48033,21 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/commons/dorms) +"one" = ( +/obj/structure/table/reinforced/rglass, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/camera{ + c_tag = "Security - Medical Center"; + dir = 10; + network = list("ss13","Security") + }, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/roller, +/turf/open/floor/iron/white, +/area/station/security/medical) "onf" = ( /obj/effect/turf_decal/trimline/neutral/filled/warning{ dir = 6 @@ -49555,6 +49601,23 @@ /obj/effect/turf_decal/trimline/yellow/filled/warning, /turf/open/floor/iron, /area/station/construction/mining/aux_base) +"oQQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/item/folder/yellow, +/obj/item/pen{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/structure/table, +/obj/item/paper_bin/carbon{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/stamp/head/qm, +/turf/open/floor/carpet, +/area/station/cargo/quartermaster) "oQW" = ( /obj/effect/turf_decal/siding/thinplating{ dir = 8 @@ -52240,6 +52303,23 @@ }, /turf/open/floor/engine, /area/station/maintenance/disposal/incinerator) +"pHW" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/left/directional/east{ + name = "Containment Pen #2"; + req_access = list("xenobiology") + }, +/obj/machinery/door/window/left/directional/west{ + name = "Containment Pen #2"; + req_access = list("xenobiology") + }, +/obj/machinery/door/poddoor/preopen{ + id = "containdeez2"; + name = "Xenobiology Containment Blast Door" + }, +/obj/structure/liquid_barrier, +/turf/open/floor/engine, +/area/station/science/xenobiology) "pHX" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 4 @@ -53096,23 +53176,6 @@ }, /turf/open/floor/plating/airless, /area/station/science/ordnance/bomb) -"pUV" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/item/folder/yellow, -/obj/item/pen{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/structure/table, -/obj/item/paper_bin/carbon{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/stamp/qm, -/turf/open/floor/carpet, -/area/station/cargo/quartermaster) "pVb" = ( /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 8 @@ -53538,15 +53601,6 @@ /obj/machinery/station_map/engineering/directional/east, /turf/open/floor/iron/grimy, /area/station/hallway/secondary/entry) -"qcV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Security Maintenance Hatch" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/obj/machinery/duct, -/turf/open/floor/iron/smooth, -/area/station/maintenance/department/eva) "qcY" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line{ @@ -53589,16 +53643,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"qdr" = ( -/obj/structure/table/reinforced/rglass, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/item/radio/intercom/directional/west, -/obj/item/clothing/gloves/latex, -/obj/item/clothing/neck/stethoscope, -/turf/open/floor/iron/white, -/area/station/security/medical) "qdv" = ( /obj/structure/lattice/catwalk, /obj/machinery/light/small/directional/east, @@ -53693,6 +53737,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/station/command/heads_quarters/cmo) +"qeO" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/landmark/start/brig_physician, +/obj/structure/chair/office, +/obj/machinery/duct, +/turf/open/floor/iron/white, +/area/station/security/medical) "qeV" = ( /obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, @@ -54632,7 +54686,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron/dark, /area/station/commons/fitness/recreation/entertainment) "qvt" = ( @@ -54964,14 +55018,6 @@ /obj/structure/cable, /turf/open/floor/catwalk_floor, /area/station/maintenance/tram/mid) -"qAg" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/obj/structure/closet/secure_closet/brig_physician, -/obj/item/clothing/suit/jacket/straight_jacket, -/turf/open/floor/iron/dark, -/area/station/security/medical) "qAi" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -55240,6 +55286,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/security/courtroom/holding) +"qEv" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/obj/item/stamp/head/ce, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command/heads_quarters/ce) "qEw" = ( /obj/effect/spawner/random/trash/bacteria, /obj/effect/decal/cleanable/dirt/dust, @@ -57464,18 +57519,6 @@ /obj/structure/industrial_lift/public, /turf/open/floor/plating/elevatorshaft, /area/station/commons/dorms) -"rnc" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/stamp/captain, -/obj/machinery/door/window{ - base_state = "right"; - icon_state = "right"; - name = "Captain's Desk"; - req_access = list("captain") - }, -/turf/open/floor/wood, -/area/station/command/heads_quarters/captain) "rnd" = ( /obj/effect/turf_decal/trimline/neutral/filled/corner{ dir = 1 @@ -58201,6 +58244,17 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/medical/morgue) +"rzk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Cytology Maintenance Hatch" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/obj/structure/liquid_barrier, +/turf/open/floor/catwalk_floor, +/area/station/science/xenobiology) "rzt" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 8 @@ -58507,15 +58561,6 @@ /obj/effect/mapping_helpers/airlock/access/all/engineering/general, /turf/open/floor/plating/airless, /area/station/engineering) -"rFF" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/obj/machinery/computer/operating{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/security/medical) "rFW" = ( /obj/effect/turf_decal/delivery/white, /obj/structure/holosign/barrier/atmos/tram, @@ -59963,15 +60008,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/smooth, /area/station/hallway/primary/tram/right) -"sgu" = ( -/obj/structure/table/reinforced, -/obj/item/folder/yellow, -/obj/item/stamp/ce, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) "sgA" = ( /obj/structure/table, /obj/machinery/light/small/directional/west, @@ -61222,33 +61258,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/security/prison) -"szO" = ( -/obj/structure/table, -/obj/machinery/button/door{ - id = "rdoffice"; - name = "Privacy Shutter Control"; - pixel_x = -7; - pixel_y = -2; - req_access = list("research") - }, -/obj/item/folder/white{ - pixel_x = 5 - }, -/obj/item/stamp/rd{ - pixel_x = 6; - pixel_y = 2 - }, -/obj/item/pen/fountain{ - pixel_x = -4; - pixel_y = 7 - }, -/turf/open/floor/glass/reinforced, -/area/station/command/heads_quarters/rd) "szY" = ( /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 9 }, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron, /area/station/hallway/secondary/service) "szZ" = ( @@ -62871,15 +62885,6 @@ }, /turf/open/floor/carpet, /area/station/service/chapel) -"sZD" = ( -/obj/structure/table/reinforced/rglass, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/light/directional/west, -/obj/machinery/computer/records/medical/laptop, -/turf/open/floor/iron/white, -/area/station/security/medical) "sZH" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Public Garden Maintenance Hatch" @@ -63581,6 +63586,11 @@ /obj/effect/mapping_helpers/airlock/abandoned, /turf/open/floor/iron/smooth, /area/station/maintenance/starboard/lesser) +"tky" = ( +/obj/effect/turf_decal/stripes/end, +/obj/machinery/shower/directional/south, +/turf/open/floor/iron/white/textured, +/area/station/security/medical) "tkB" = ( /obj/structure/disposalpipe/junction/flip, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -64006,6 +64016,15 @@ }, /turf/open/floor/iron, /area/station/commons/dorms) +"trh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Security Maintenance Hatch" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/machinery/duct, +/turf/open/floor/iron/smooth, +/area/station/maintenance/department/eva) "trm" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 @@ -64728,6 +64747,11 @@ }, /turf/open/floor/glass/reinforced, /area/station/ai_monitored/turret_protected/aisat/hallway) +"tDs" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/duct, +/turf/open/floor/iron/white, +/area/station/security/medical) "tDz" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/dark, @@ -65885,23 +65909,6 @@ /obj/structure/lattice, /turf/open/openspace, /area/station/ai_monitored/turret_protected/aisat/hallway) -"tXW" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/window/left/directional/east{ - name = "Containment Pen #6"; - req_access = list("xenobiology") - }, -/obj/machinery/door/window/left/directional/west{ - name = "Containment Pen #6"; - req_access = list("xenobiology") - }, -/obj/machinery/door/poddoor/preopen{ - id = "containdeez6"; - name = "Xenobiology Containment Blast Door" - }, -/obj/structure/liquid_barrier, -/turf/open/floor/engine, -/area/station/science/xenobiology) "tXY" = ( /obj/effect/turf_decal/trimline/neutral/filled/corner{ dir = 8 @@ -66181,13 +66188,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/security/execution/transfer) -"udb" = ( -/obj/structure/table/glass, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) "udc" = ( /obj/structure/chair/sofa/bench/corner{ dir = 8 @@ -66435,25 +66435,6 @@ }, /turf/open/floor/iron/white, /area/station/science/genetics) -"uiC" = ( -/obj/machinery/door/airlock/research{ - name = "Xenobiology Entrance" - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/obj/structure/disposalpipe/segment, -/obj/structure/liquid_barrier, -/turf/open/floor/iron/white, -/area/station/science/xenobiology) "uiI" = ( /obj/effect/turf_decal/trimline/white/line{ dir = 4 @@ -66981,6 +66962,25 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) +"uqB" = ( +/obj/machinery/door/airlock/research{ + name = "Xenobiology Entrance" + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/obj/structure/disposalpipe/segment, +/obj/structure/liquid_barrier, +/turf/open/floor/iron/white, +/area/station/science/xenobiology) "uqC" = ( /obj/structure/table, /obj/machinery/recharger, @@ -67975,6 +67975,27 @@ }, /turf/open/floor/iron, /area/station/security/prison) +"uFt" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/item/stamp/head/hop, +/obj/item/trapdoor_remote/preloaded{ + pixel_x = -8 + }, +/obj/machinery/requests_console/directional/west{ + anon_tips_receiver = 1; + assistance_requestable = 1; + department = "Head of Personnel's Desk"; + name = "Head of Personnel's Requests Console"; + supplies_requestable = 1; + can_send_announcements = 1 + }, +/obj/item/paper_bin/carbon, +/obj/item/pen{ + pixel_x = -4 + }, +/turf/open/floor/wood, +/area/station/command/heads_quarters/hop) "uFD" = ( /obj/effect/turf_decal/trimline/neutral/filled/warning{ dir = 4 @@ -70159,6 +70180,13 @@ /obj/effect/artifact_spawner, /turf/open/floor/engine, /area/station/science/explab) +"vmU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/plumbed{ + name = "dormitory water reservoir" + }, +/turf/open/floor/iron/smooth, +/area/station/maintenance/department/eva) "vnd" = ( /obj/structure/ladder, /obj/machinery/door/firedoor/border_only{ @@ -70400,27 +70428,6 @@ }, /turf/open/floor/iron/white, /area/station/science/ordnance) -"vqe" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Cytology Maintenance Hatch" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/obj/structure/liquid_barrier, -/turf/open/floor/catwalk_floor, -/area/station/science/xenobiology) -"vqi" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/landmark/start/brig_physician, -/obj/structure/chair/office, -/obj/machinery/duct, -/turf/open/floor/iron/white, -/area/station/security/medical) "vqn" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -72231,11 +72238,6 @@ "vRv" = ( /turf/open/floor/iron, /area/station/command/heads_quarters/ce) -"vRy" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/duct, -/turf/open/floor/iron/white, -/area/station/security/medical) "vRA" = ( /obj/machinery/flasher/portable, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -73337,6 +73339,16 @@ /obj/effect/mapping_helpers/airlock/access/all/security/general, /turf/open/floor/iron, /area/station/security/checkpoint/supply) +"wkA" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 9 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/machinery/iv_drip, +/obj/item/reagent_containers/blood, +/turf/open/floor/iron/white, +/area/station/security/medical) "wkC" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -78211,17 +78223,6 @@ /obj/effect/turf_decal/trimline/blue/filled/line, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"xSB" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Security Maintenance Hatch" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/obj/machinery/duct, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/department/eva) "xSD" = ( /obj/structure/chair/office/light{ dir = 8 @@ -111594,7 +111595,7 @@ gKJ wIg rSj vRv -sgu +qEv joI fkq sHH @@ -123426,7 +123427,7 @@ fkf qVr fUz rkI -fFu +pHW jQE lIY tzq @@ -125214,11 +125215,11 @@ hWI bFQ hNw sqI -uiC +uqB aHr nDM apL -uiC +uqB rdU uon whd @@ -127024,7 +127025,7 @@ ohh qVr qVr wdD -tXW +doe vTx qVr vxy @@ -158562,10 +158563,10 @@ aaa aaa aaa osk -cxS -nco -qcV -csW +vmU +awQ +trh +bKP ayR tVp mdV @@ -158822,7 +158823,7 @@ osk vkc gKX osk -csW +bKP ayR xMg xMg @@ -159079,7 +159080,7 @@ run run run ayR -csW +bKP ayR hzN hzN @@ -159330,13 +159331,13 @@ dkO rGN dTL mjM -qAg -qdr -sZD -kUf +jTT +kcQ +fKm +one lqP ayR -csW +bKP ayR dsF dsF @@ -159587,13 +159588,13 @@ aBK ceF dta mjM -ceO -inO -vqi -inO -lGn -xSB -csW +wkA +csL +qeO +csL +olt +jwu +bKP ayR eeL kHZ @@ -159844,11 +159845,11 @@ aBK dkO dta mjM -nSs -vRy +aBk +tDs gbr kMR -hKz +dNT ayR gKX ayR @@ -160101,11 +160102,11 @@ gvQ kEc ntp mjM -nYY -nHo +tky +nlB bxH aFg -rFF +noq ayR gKX ayR @@ -160360,7 +160361,7 @@ gki mjM mjM aDl -bjb +nUV awW ayR ayR @@ -160388,7 +160389,7 @@ xSr umf qjW kqR -daU +uFt swc wHT omH @@ -164969,7 +164970,7 @@ aaa rmB qjw gJI -gws +hkU qUY auP qxT @@ -167060,7 +167061,7 @@ tth rKP kOr fpR -rnc +iQx aBt kbM qiN @@ -175333,7 +175334,7 @@ qOY iae qeL sYh -udb +cMU wdj oGJ oGJ @@ -189163,7 +189164,7 @@ gbW uUE nms int -pUV +oQQ gSi byL whL @@ -189474,7 +189475,7 @@ aaa aaa qVr qVr -jfU +dvJ glp soq soq @@ -189736,7 +189737,7 @@ rzt xyA wXi soq -vqe +rzk soq soq soq @@ -190757,7 +190758,7 @@ ttj bhf ttj ttj -nzg +hyM cwj xmY bsh @@ -191001,7 +191002,7 @@ jwe rBb vZD tes -szO +bup xPR kye cwX @@ -192044,7 +192045,7 @@ aaa aaa qVr qVr -jfU +dvJ qtB qVr qVr diff --git a/_maps/multiz_debug.json b/_maps/multiz_debug.json index b380a2b7fd0a..15cf73d599a4 100644 --- a/_maps/multiz_debug.json +++ b/_maps/multiz_debug.json @@ -3,6 +3,9 @@ "map_name": "MultiZ Debug", "map_path": "map_files/debug", "map_file": "multiz.dmm", + "ignored_unit_tests": [ + "/datum/unit_test/required_map_items" + ], "traits": [ { "Up": true, diff --git a/_maps/northstar.json b/_maps/northstar.json index 0dc25fd0df2f..9de8a4fd6866 100644 --- a/_maps/northstar.json +++ b/_maps/northstar.json @@ -12,6 +12,9 @@ }, "space_ruin_levels": 0, "space_empty_levels": 2, + "ignored_unit_tests": [ + "/datum/unit_test/required_map_items" + ], "traits": [ { "Up": true, diff --git a/_maps/runtimestation.json b/_maps/runtimestation.json index 6b77a7321f21..ccc971a9cc55 100644 --- a/_maps/runtimestation.json +++ b/_maps/runtimestation.json @@ -4,6 +4,9 @@ "map_path": "map_files/debug", "map_file": "runtimestation.dmm", "space_ruin_levels": 1, + "ignored_unit_tests": [ + "/datum/unit_test/required_map_items" + ], "shuttles": { "cargo": "cargo_delta" } diff --git a/_maps/shuttles/emergency_cruise.dmm b/_maps/shuttles/emergency_cruise.dmm index 3c61e456b8ae..ffa5f86a6d48 100644 --- a/_maps/shuttles/emergency_cruise.dmm +++ b/_maps/shuttles/emergency_cruise.dmm @@ -1119,7 +1119,7 @@ /turf/open/floor/plastic, /area/shuttle/escape/luxury) "uQ" = ( -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/wood/tile, /area/shuttle/escape) "uV" = ( diff --git a/_maps/shuttles/emergency_tranquility.dmm b/_maps/shuttles/emergency_tranquility.dmm index 88c061cd0276..71bf3f0f4dcc 100644 --- a/_maps/shuttles/emergency_tranquility.dmm +++ b/_maps/shuttles/emergency_tranquility.dmm @@ -898,7 +898,7 @@ /obj/item/stamp/denied{ pixel_x = 8 }, -/obj/item/stamp/qm{ +/obj/item/stamp/head/qm{ pixel_y = -5; pixel_x = 8 }, diff --git a/_maps/~monkestation/RandomBars/Icebox/Drunkopsbar.dmm b/_maps/~monkestation/RandomBars/Icebox/Drunkopsbar.dmm index 5b6c97d5451a..746f3cd0fdeb 100644 --- a/_maps/~monkestation/RandomBars/Icebox/Drunkopsbar.dmm +++ b/_maps/~monkestation/RandomBars/Icebox/Drunkopsbar.dmm @@ -534,7 +534,7 @@ "CF" = ( /obj/machinery/restaurant_portal/bar, /obj/machinery/camera/directional/north, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/mineral/plastitanium, /area/station/service/bar) "Ds" = ( diff --git a/_maps/~monkestation/RandomBars/Icebox/Magbar.dmm b/_maps/~monkestation/RandomBars/Icebox/Magbar.dmm index 7ba68244769b..3b4c3b15c4da 100644 --- a/_maps/~monkestation/RandomBars/Icebox/Magbar.dmm +++ b/_maps/~monkestation/RandomBars/Icebox/Magbar.dmm @@ -851,7 +851,7 @@ "CU" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron{ base_icon_state = "basalt0"; icon_state = "basalt0"; diff --git a/_maps/~monkestation/RandomBars/Icebox/clockwork_icebox.dmm b/_maps/~monkestation/RandomBars/Icebox/clockwork_icebox.dmm index a8890927c179..884feffcabd9 100644 --- a/_maps/~monkestation/RandomBars/Icebox/clockwork_icebox.dmm +++ b/_maps/~monkestation/RandomBars/Icebox/clockwork_icebox.dmm @@ -424,7 +424,7 @@ /turf/open/floor/bronze, /area/station/commons/lounge) "wb" = ( -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/bronze, /area/station/commons/lounge) "wg" = ( diff --git a/_maps/~monkestation/RandomBars/Icebox/cultbar_icebox.dmm b/_maps/~monkestation/RandomBars/Icebox/cultbar_icebox.dmm index 1201953d3555..34267a809206 100644 --- a/_maps/~monkestation/RandomBars/Icebox/cultbar_icebox.dmm +++ b/_maps/~monkestation/RandomBars/Icebox/cultbar_icebox.dmm @@ -570,9 +570,7 @@ dir = 1; name = "old bloody sofa" }, -/obj/machinery/atm{ - pixel_y = -30 - }, +/obj/machinery/atm/directional/south, /obj/machinery/airalarm/directional/east, /turf/open/floor/cult, /area/station/commons/lounge) @@ -832,7 +830,7 @@ dir = 4; name = "old bloody sofa" }, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/cult, /area/station/commons/lounge) "Ov" = ( diff --git a/_maps/~monkestation/RandomBars/Icebox/green_bar_disco.dmm b/_maps/~monkestation/RandomBars/Icebox/green_bar_disco.dmm index 6a4bc206155b..19a3317f9a3d 100644 --- a/_maps/~monkestation/RandomBars/Icebox/green_bar_disco.dmm +++ b/_maps/~monkestation/RandomBars/Icebox/green_bar_disco.dmm @@ -489,7 +489,7 @@ /turf/open/floor/carpet/green, /area/station/commons/lounge) "tJ" = ( -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /obj/structure/chair/wood{ dir = 4 }, diff --git a/_maps/~monkestation/RandomBars/Icebox/icebox_bar_abductor.dmm b/_maps/~monkestation/RandomBars/Icebox/icebox_bar_abductor.dmm index 5a588d418ebb..f8f0aefbc2e2 100644 --- a/_maps/~monkestation/RandomBars/Icebox/icebox_bar_abductor.dmm +++ b/_maps/~monkestation/RandomBars/Icebox/icebox_bar_abductor.dmm @@ -395,7 +395,7 @@ /turf/open/floor/mineral/fake_abductor, /area/station/commons/lounge) "sH" = ( -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/mineral/fake_abductor, /area/station/commons/lounge) "tL" = ( diff --git a/_maps/~monkestation/RandomBars/Icebox/icebox_bar_arcade.dmm b/_maps/~monkestation/RandomBars/Icebox/icebox_bar_arcade.dmm index 40a48926706b..68bcd6dec5ae 100644 --- a/_maps/~monkestation/RandomBars/Icebox/icebox_bar_arcade.dmm +++ b/_maps/~monkestation/RandomBars/Icebox/icebox_bar_arcade.dmm @@ -204,7 +204,7 @@ /area/station/service/bar) "jP" = ( /obj/machinery/light/directional/north, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /obj/effect/turf_decal/siding/purple{ dir = 4 }, diff --git a/_maps/~monkestation/RandomBars/Icebox/icebox_bar_base.dmm b/_maps/~monkestation/RandomBars/Icebox/icebox_bar_base.dmm index 0b4a15f881d4..5dc6cd68802d 100644 --- a/_maps/~monkestation/RandomBars/Icebox/icebox_bar_base.dmm +++ b/_maps/~monkestation/RandomBars/Icebox/icebox_bar_base.dmm @@ -972,7 +972,7 @@ /turf/open/floor/stone, /area/station/service/bar) "Tm" = ( -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/wood/parquet, /area/station/commons/lounge) "Uq" = ( diff --git a/_maps/~monkestation/RandomBars/Icebox/junglebar.dmm b/_maps/~monkestation/RandomBars/Icebox/junglebar.dmm index e9dbf68c65bb..6ead7780b6b0 100644 --- a/_maps/~monkestation/RandomBars/Icebox/junglebar.dmm +++ b/_maps/~monkestation/RandomBars/Icebox/junglebar.dmm @@ -467,7 +467,7 @@ /turf/open/floor/wood, /area/station/commons/lounge) "Vd" = ( -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, diff --git a/_maps/~monkestation/RandomBars/Icebox/mime_bar.dmm b/_maps/~monkestation/RandomBars/Icebox/mime_bar.dmm index 082161fd595b..b1d9b9a25c31 100644 --- a/_maps/~monkestation/RandomBars/Icebox/mime_bar.dmm +++ b/_maps/~monkestation/RandomBars/Icebox/mime_bar.dmm @@ -1962,7 +1962,7 @@ /turf/open/floor/stone, /area/station/service/bar) "Tm" = ( -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /obj/structure/window/reinforced/plasma{ dir = 1; alpha = 0 diff --git a/_maps/~monkestation/RandomBars/Tram/tram_bar_base.dmm b/_maps/~monkestation/RandomBars/Tram/tram_bar_base.dmm index cc58ec88902d..3d15998567b2 100644 --- a/_maps/~monkestation/RandomBars/Tram/tram_bar_base.dmm +++ b/_maps/~monkestation/RandomBars/Tram/tram_bar_base.dmm @@ -823,7 +823,7 @@ "wu" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/wood/large, /area/station/service/theater) "wx" = ( @@ -1784,7 +1784,7 @@ "Vq" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/structure/window/reinforced/spawner/directional/east, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/iron/dark, /area/station/commons/lounge) "Vs" = ( diff --git a/_maps/~monkestation/RandomBars/Tram/tram_bar_beachside.dmm b/_maps/~monkestation/RandomBars/Tram/tram_bar_beachside.dmm index 041c608df6f3..c3966427f4bd 100644 --- a/_maps/~monkestation/RandomBars/Tram/tram_bar_beachside.dmm +++ b/_maps/~monkestation/RandomBars/Tram/tram_bar_beachside.dmm @@ -1667,7 +1667,7 @@ /turf/open/floor/fakesand, /area/station/commons/lounge) "Wq" = ( -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /obj/effect/turf_decal/sand, /turf/open/misc/beach/sand, /area/station/commons/lounge) diff --git a/_maps/~monkestation/RandomBars/Tram/tram_bar_biodome.dmm b/_maps/~monkestation/RandomBars/Tram/tram_bar_biodome.dmm index 15c9c93944e6..e5ce805f2b75 100644 --- a/_maps/~monkestation/RandomBars/Tram/tram_bar_biodome.dmm +++ b/_maps/~monkestation/RandomBars/Tram/tram_bar_biodome.dmm @@ -893,7 +893,7 @@ "wu" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/misc/snow/actually_safe, /area/station/service/theater) "wx" = ( @@ -1991,7 +1991,7 @@ "Vq" = ( /obj/structure/window/reinforced/spawner/directional/west, /obj/structure/window/reinforced/spawner/directional/east, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/pod/light, /area/station/commons/lounge) "Vs" = ( diff --git a/_maps/~monkestation/RandomBars/Tram/tram_bar_cult.dmm b/_maps/~monkestation/RandomBars/Tram/tram_bar_cult.dmm index 253eb1f6538d..c0938396a975 100644 --- a/_maps/~monkestation/RandomBars/Tram/tram_bar_cult.dmm +++ b/_maps/~monkestation/RandomBars/Tram/tram_bar_cult.dmm @@ -1418,9 +1418,7 @@ /turf/open/floor/cult, /area/station/service/theater) "FA" = ( -/obj/machinery/atm{ - pixel_y = -30 - }, +/obj/machinery/atm/directional/south, /obj/effect/turf_decal/arrows{ pixel_x = -8 }, @@ -1946,10 +1944,7 @@ /turf/open/floor/cult, /area/station/commons/lounge) "Ud" = ( -/obj/machinery/atm{ - pixel_x = -30; - pixel_y = 0 - }, +/obj/machinery/atm/directional/west, /turf/open/floor/cult, /area/station/service/theater) "Uf" = ( diff --git a/_maps/~monkestation/RandomBars/Tram/tram_bar_maints_grape.dmm b/_maps/~monkestation/RandomBars/Tram/tram_bar_maints_grape.dmm index ca61184f3138..61876b3614f1 100644 --- a/_maps/~monkestation/RandomBars/Tram/tram_bar_maints_grape.dmm +++ b/_maps/~monkestation/RandomBars/Tram/tram_bar_maints_grape.dmm @@ -967,7 +967,7 @@ "wu" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /obj/structure/cable, /turf/open/floor/catwalk_floor, /area/station/service/theater) @@ -2083,7 +2083,7 @@ /area/station/commons/lounge) "Vq" = ( /obj/structure/window/reinforced/spawner/directional/west, -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /obj/item/shard{ pixel_x = 14 }, diff --git a/_maps/~monkestation/RandomBars/Tram/tram_bar_ocean.dmm b/_maps/~monkestation/RandomBars/Tram/tram_bar_ocean.dmm index 3df847a9c380..0363b7620519 100644 --- a/_maps/~monkestation/RandomBars/Tram/tram_bar_ocean.dmm +++ b/_maps/~monkestation/RandomBars/Tram/tram_bar_ocean.dmm @@ -795,7 +795,7 @@ /turf/open/floor/fake_seafloor/ironsand, /area/station/service/theater) "JI" = ( -/obj/machinery/atm, +/obj/machinery/atm/directional/north, /turf/open/floor/fake_seafloor/spawning, /area/station/commons/lounge) "Kh" = ( diff --git a/_maps/~monkestation/RandomBars/Tram/tram_rvb_bar.dmm b/_maps/~monkestation/RandomBars/Tram/tram_rvb_bar.dmm index e161d9ce8ff8..7bda319a1554 100644 --- a/_maps/~monkestation/RandomBars/Tram/tram_rvb_bar.dmm +++ b/_maps/~monkestation/RandomBars/Tram/tram_rvb_bar.dmm @@ -192,10 +192,7 @@ /obj/effect/turf_decal/tile/dark{ dir = 8 }, -/obj/machinery/atm{ - pixel_x = 30; - pixel_y = 0 - }, +/obj/machinery/atm/directional/east, /turf/open/floor/iron, /area/station/commons/lounge) "dn" = ( @@ -2271,10 +2268,7 @@ /obj/effect/turf_decal/tile/neutral/opposingcorners, /obj/effect/turf_decal/tile/neutral/opposingcorners, /obj/machinery/duct, -/obj/machinery/atm{ - pixel_x = -30; - pixel_y = 0 - }, +/obj/machinery/atm/directional/west, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, diff --git a/code/__DEFINES/unit_tests.dm b/code/__DEFINES/unit_tests.dm index 29deeb1716c5..60482923ec20 100644 --- a/code/__DEFINES/unit_tests.dm +++ b/code/__DEFINES/unit_tests.dm @@ -18,3 +18,34 @@ #else #define TEST_ONLY_ASSERT(test, explanation) #endif + +/** + * Used for registering typepaths of item to be tracked as a "required map item" + * This is used to ensure that that all station maps have certain items mapped in that they should have + * Or that people aren't mapping in an excess of items that they shouldn't be + * (For example, all map should only ever have 1 Pun Pun) + * + * Min is inclusive, Max is inclusive (so 1, 1 means min of 1, max of 1, or only 1 allowed) + * + * This should only be used in Initialize(). And don't forget to update the unit test with the type itself! + */ +#ifdef UNIT_TESTS +#define REGISTER_REQUIRED_MAP_ITEM(min, max) \ + do { \ + if(mapload) { \ + var/turf/spawn_turf = get_turf(src); \ + var/fixed_type = trim_directional_helper_suffix(type); \ + if(is_station_level(spawn_turf?.z || 0)) { \ + var/datum/required_item/existing_value = GLOB.required_map_items[fixed_type]; \ + if(isnull(existing_value)) { \ + var/datum/required_item/new_value = new(fixed_type, min, max); \ + GLOB.required_map_items[fixed_type] = new_value; \ + } else { \ + existing_value.total_amount += 1; \ + }; \ + }; \ + }; \ + } while (FALSE) +#else +#define REGISTER_REQUIRED_MAP_ITEM(min, max) +#endif diff --git a/code/__HELPERS/~monkestation-helpers/mapping.dm b/code/__HELPERS/~monkestation-helpers/mapping.dm index 62d6f30564da..a4d0a68fca7e 100644 --- a/code/__HELPERS/~monkestation-helpers/mapping.dm +++ b/code/__HELPERS/~monkestation-helpers/mapping.dm @@ -4,3 +4,13 @@ if(a.z == b.z) return TRUE return (b.z in SSmapping.get_connected_levels(a)) + +/// Trims "directional/dir" suffixes from typepaths. +/proc/trim_directional_helper_suffix(typepath) + if(!ispath(typepath)) + CRASH("Passed non-typepath [typepath] to trim_directional_helper_suffix") + var/static/regex/directional_helper_regex + if(!directional_helper_regex) + directional_helper_regex = new(@"\/directional\/(north|south|east|west)$") + var/replaced = replacetext("[typepath]", directional_helper_regex, "") + return text2path(replaced) || typepath diff --git a/code/_globalvars/phobias.dm b/code/_globalvars/phobias.dm index b2066d68077f..f493e82c1eb6 100644 --- a/code/_globalvars/phobias.dm +++ b/code/_globalvars/phobias.dm @@ -144,7 +144,7 @@ GLOBAL_LIST_INIT(phobia_objs, list( /obj/item/megaphone/sec, /obj/item/melee/baton, /obj/item/restraints/handcuffs, - /obj/item/stamp/hos, + /obj/item/stamp/head/hos, /obj/item/toy/figure/hos, /obj/item/toy/figure/secofficer, /obj/machinery/door/airlock/security, @@ -238,14 +238,8 @@ GLOBAL_LIST_INIT(phobia_objs, list( /obj/item/radio/headset/heads, /obj/item/megaphone/command, /obj/item/melee/baton/abductor, - /obj/item/stamp/captain, - /obj/item/stamp/ce, /obj/item/stamp/centcom, - /obj/item/stamp/cmo, - /obj/item/stamp/hop, - /obj/item/stamp/hos, - /obj/item/stamp/rd, - /obj/item/stamp/qm, + /obj/item/stamp/head, /obj/item/storage/belt/military/abductor, /obj/item/toy/figure/captain, /obj/item/toy/figure/ce, @@ -402,14 +396,8 @@ GLOBAL_LIST_INIT(phobia_objs, list( /obj/item/encryptionkey/heads, /obj/item/radio/headset/heads, /obj/item/melee/baton/telescopic, - /obj/item/stamp/captain, - /obj/item/stamp/ce, /obj/item/stamp/centcom, - /obj/item/stamp/cmo, - /obj/item/stamp/hop, - /obj/item/stamp/hos, - /obj/item/stamp/rd, - /obj/item/stamp/qm, + /obj/item/stamp/head, /obj/item/toy/figure/captain, /obj/item/toy/figure/ce, /obj/item/toy/figure/cmo, diff --git a/code/datums/components/crafting/misc.dm b/code/datums/components/crafting/misc.dm index e73c56ca67d5..dd850874d68f 100644 --- a/code/datums/components/crafting/misc.dm +++ b/code/datums/components/crafting/misc.dm @@ -32,5 +32,5 @@ /obj/item/paper/paperslip = 1, /obj/item/stack/sheet/plastic = 3, ) - tool_paths = list(/obj/item/stamp/captain) + tool_paths = list(/obj/item/stamp/head/captain) category = CAT_MISC diff --git a/code/datums/map_config.dm b/code/datums/map_config.dm index cd141561bd78..bc3985009a8c 100644 --- a/code/datums/map_config.dm +++ b/code/datums/map_config.dm @@ -41,6 +41,9 @@ /// List of additional areas that count as a part of the library var/library_areas = list() + /// List of unit tests that are skipped when running this map + var/list/skipped_tests + //List of particle_weather types for this map var/particle_weathers = list() //Monkestation addition @@ -210,6 +213,16 @@ continue library_areas += path +#ifdef UNIT_TESTS + // Check for unit tests to skip, no reason to check these if we're not running tests + for(var/path_as_text in json["ignored_unit_tests"]) + var/path_real = text2path(path_as_text) + if(!ispath(path_real, /datum/unit_test)) + stack_trace("Invalid path in mapping config for ignored unit tests: \[[path_as_text]\]") + continue + LAZYADD(skipped_tests, path_real) +#endif + defaulted = FALSE return TRUE #undef CHECK_EXISTS diff --git a/code/game/machinery/computer/communications.dm b/code/game/machinery/computer/communications.dm index 8ffaba16f6d6..a047ea743033 100644 --- a/code/game/machinery/computer/communications.dm +++ b/code/game/machinery/computer/communications.dm @@ -87,6 +87,9 @@ /obj/machinery/computer/communications/Initialize(mapload) . = ..() + // All maps should have at least 1 comms console + REGISTER_REQUIRED_MAP_ITEM(1, INFINITY) + GLOB.shuttle_caller_list += src AddComponent(/datum/component/gps, "Secured Communications Signal") diff --git a/code/modules/cargo/department_order.dm b/code/modules/cargo/department_order.dm index 57c0cbf0a814..66b67a885b86 100644 --- a/code/modules/cargo/department_order.dm +++ b/code/modules/cargo/department_order.dm @@ -33,6 +33,8 @@ GLOBAL_LIST_INIT(department_order_cooldowns, list( /obj/machinery/computer/department_orders/Initialize(mapload, obj/item/circuitboard/board) . = ..() + // All maps should have ONLY ONE of each order console roundstart + REGISTER_REQUIRED_MAP_ITEM(1, 1) if (radio_channel && radio_key_typepath) radio = new(src) diff --git a/code/modules/jobs/job_types/captain.dm b/code/modules/jobs/job_types/captain.dm index c49071d37027..d4e41d63b364 100755 --- a/code/modules/jobs/job_types/captain.dm +++ b/code/modules/jobs/job_types/captain.dm @@ -79,7 +79,7 @@ accessory = /obj/item/clothing/accessory/medal/gold/captain chameleon_extras = list( /obj/item/gun/energy/e_gun, - /obj/item/stamp/captain, + /obj/item/stamp/head/captain, ) implants = list(/obj/item/implant/mindshield) skillchips = list(/obj/item/skillchip/disk_verifier) diff --git a/code/modules/jobs/job_types/chief_engineer.dm b/code/modules/jobs/job_types/chief_engineer.dm index 09a0633ff927..9ef561013e1b 100644 --- a/code/modules/jobs/job_types/chief_engineer.dm +++ b/code/modules/jobs/job_types/chief_engineer.dm @@ -79,7 +79,7 @@ duffelbag = /obj/item/storage/backpack/duffelbag/engineering box = /obj/item/storage/box/survival/engineer - chameleon_extras = /obj/item/stamp/ce + chameleon_extras = /obj/item/stamp/head/ce skillchips = list(/obj/item/skillchip/job/engineer) implants = list(/obj/item/implant/mindshield) pda_slot = ITEM_SLOT_LPOCKET diff --git a/code/modules/jobs/job_types/chief_medical_officer.dm b/code/modules/jobs/job_types/chief_medical_officer.dm index 7ce73d4e7a5e..daebcfa9d845 100644 --- a/code/modules/jobs/job_types/chief_medical_officer.dm +++ b/code/modules/jobs/job_types/chief_medical_officer.dm @@ -78,7 +78,7 @@ box = /obj/item/storage/box/survival/medical chameleon_extras = list( /obj/item/gun/syringe, - /obj/item/stamp/cmo, + /obj/item/stamp/head/cmo, ) skillchips = list(/obj/item/skillchip/entrails_reader) diff --git a/code/modules/jobs/job_types/head_of_personnel.dm b/code/modules/jobs/job_types/head_of_personnel.dm index 7c2849e67c85..169260079dda 100644 --- a/code/modules/jobs/job_types/head_of_personnel.dm +++ b/code/modules/jobs/job_types/head_of_personnel.dm @@ -68,7 +68,7 @@ chameleon_extras = list( /obj/item/gun/energy/e_gun, - /obj/item/stamp/hop, + /obj/item/stamp/head/hop, ) /datum/outfit/job/hop/pre_equip(mob/living/carbon/human/H) diff --git a/code/modules/jobs/job_types/head_of_security.dm b/code/modules/jobs/job_types/head_of_security.dm index 4b0d7aaaaa39..259c828f47c0 100644 --- a/code/modules/jobs/job_types/head_of_security.dm +++ b/code/modules/jobs/job_types/head_of_security.dm @@ -71,7 +71,7 @@ box = /obj/item/storage/box/survival/security chameleon_extras = list( /obj/item/gun/energy/e_gun/hos, - /obj/item/stamp/hos, + /obj/item/stamp/head/hos, ) implants = list(/obj/item/implant/mindshield) diff --git a/code/modules/jobs/job_types/quartermaster.dm b/code/modules/jobs/job_types/quartermaster.dm index 200742195922..49d26f09d62a 100644 --- a/code/modules/jobs/job_types/quartermaster.dm +++ b/code/modules/jobs/job_types/quartermaster.dm @@ -47,4 +47,4 @@ shoes = /obj/item/clothing/shoes/sneakers/brown l_hand = /obj/item/clipboard - chameleon_extras = /obj/item/stamp/qm + chameleon_extras = /obj/item/stamp/head/qm diff --git a/code/modules/jobs/job_types/research_director.dm b/code/modules/jobs/job_types/research_director.dm index f1a1d8135d41..d0d711411061 100644 --- a/code/modules/jobs/job_types/research_director.dm +++ b/code/modules/jobs/job_types/research_director.dm @@ -73,7 +73,7 @@ satchel = /obj/item/storage/backpack/satchel/science duffelbag = /obj/item/storage/backpack/duffelbag/science - chameleon_extras = /obj/item/stamp/rd + chameleon_extras = /obj/item/stamp/head/rd skillchips = list(/obj/item/skillchip/job/research_director) implants = list(/obj/item/implant/mindshield) diff --git a/code/modules/mob/living/basic/pets/dog/corgi.dm b/code/modules/mob/living/basic/pets/dog/corgi.dm index 8337cc4435f7..00b64ffef6f9 100644 --- a/code/modules/mob/living/basic/pets/dog/corgi.dm +++ b/code/modules/mob/living/basic/pets/dog/corgi.dm @@ -353,6 +353,7 @@ /mob/living/basic/pet/dog/corgi/ian/Initialize(mapload) . = ..() + REGISTER_REQUIRED_MAP_ITEM(1, 1) //parent call must happen first to ensure IAN //is not in nullspace when child puppies spawn Read_Memory() diff --git a/code/modules/mob/living/basic/pets/parrot/poly.dm b/code/modules/mob/living/basic/pets/parrot/poly.dm index d5490389c434..3a1647726a60 100644 --- a/code/modules/mob/living/basic/pets/parrot/poly.dm +++ b/code/modules/mob/living/basic/pets/parrot/poly.dm @@ -31,6 +31,7 @@ /mob/living/basic/parrot/poly/Initialize(mapload) . = ..() + REGISTER_REQUIRED_MAP_ITEM(1, 1) if(!memory_saved) roundend_callback = CALLBACK(src, PROC_REF(Write_Memory)) diff --git a/code/modules/mob/living/carbon/human/monkey/monkey.dm b/code/modules/mob/living/carbon/human/monkey/monkey.dm index 2f1b8535d363..db8f2f4f1e3d 100644 --- a/code/modules/mob/living/carbon/human/monkey/monkey.dm +++ b/code/modules/mob/living/carbon/human/monkey/monkey.dm @@ -65,6 +65,8 @@ GLOBAL_DATUM(the_one_and_only_punpun, /mob/living/carbon/human/species/monkey/pu if(!GLOB.the_one_and_only_punpun && mapload) GLOB.the_one_and_only_punpun = src + // 1 Pun Pun should exist + REGISTER_REQUIRED_MAP_ITEM(1, 1) fully_replace_character_name(real_name, name_to_use) diff --git a/code/modules/mob/living/simple_animal/friendly/cat.dm b/code/modules/mob/living/simple_animal/friendly/cat.dm index a7a36a476b75..bd27c482caf0 100644 --- a/code/modules/mob/living/simple_animal/friendly/cat.dm +++ b/code/modules/mob/living/simple_animal/friendly/cat.dm @@ -118,6 +118,7 @@ held_state = "cat" /mob/living/simple_animal/pet/cat/runtime/Initialize(mapload) + REGISTER_REQUIRED_MAP_ITEM(1, 1) if(prob(5)) icon_state = "original" icon_living = "original" diff --git a/code/modules/paperwork/paperwork.dm b/code/modules/paperwork/paperwork.dm index cffa480e4a14..280bff58890a 100644 --- a/code/modules/paperwork/paperwork.dm +++ b/code/modules/paperwork/paperwork.dm @@ -113,7 +113,7 @@ //HEAD OF STAFF DOCUMENTS /obj/item/paperwork/cargo - stamp_requested = /obj/item/stamp/qm + stamp_requested = /obj/item/stamp/head/qm stamp_job = /datum/job/quartermaster stamp_icon = "paper_stamp-qm" @@ -126,7 +126,7 @@ detailed_desc += span_info(" Despite how disorganized the documents are, they're all appropriately filled in. You should probably stamp this.") /obj/item/paperwork/security - stamp_requested = /obj/item/stamp/hos + stamp_requested = /obj/item/stamp/head/hos stamp_job = /datum/job/head_of_security stamp_icon = "paper_stamp-hos" @@ -139,7 +139,7 @@ detailed_desc += span_info(" What a bunch of crap, the security team were clearly just doing what they had to. You should probably stamp this.") /obj/item/paperwork/service - stamp_requested = /obj/item/stamp/hop + stamp_requested = /obj/item/stamp/head/hop stamp_job = /datum/job/head_of_personnel stamp_icon = "paper_stamp-hop" @@ -152,7 +152,7 @@ detailed_desc += span_info(" A MAXIMUM priority request like this is nothing to balk at. You should probably stamp this.") /obj/item/paperwork/medical - stamp_requested = /obj/item/stamp/cmo + stamp_requested = /obj/item/stamp/head/cmo stamp_job = /datum/job/chief_medical_officer stamp_icon = "paper_stamp-cmo" @@ -166,7 +166,7 @@ /obj/item/paperwork/engineering - stamp_requested = /obj/item/stamp/ce + stamp_requested = /obj/item/stamp/head/ce stamp_job = /datum/job/chief_engineer stamp_icon = "paper_stamp-ce" @@ -179,7 +179,7 @@ detailed_desc += span_info(" Damn, that's impressive stuff. You should probably stamp this.") /obj/item/paperwork/research - stamp_requested = /obj/item/stamp/rd + stamp_requested = /obj/item/stamp/head/rd stamp_job = /datum/job/research_director stamp_icon = "paper_stamp-rd" @@ -192,7 +192,7 @@ detailed_desc += span_info(" Regardless, they're still perfectly usable test results. You should probably stamp this.") /obj/item/paperwork/captain - stamp_requested = /obj/item/stamp/captain + stamp_requested = /obj/item/stamp/head/captain stamp_job = /datum/job/captain stamp_icon = "paper_stamp-cap" diff --git a/code/modules/paperwork/stamps.dm b/code/modules/paperwork/stamps.dm index 12caa3c003e1..342833a7caec 100644 --- a/code/modules/paperwork/stamps.dm +++ b/code/modules/paperwork/stamps.dm @@ -26,46 +26,53 @@ stamp_class = sheet.icon_class_name(icon_state) ) -/obj/item/stamp/qm - name = "quartermaster's rubber stamp" - icon_state = "stamp-qm" - dye_color = DYE_QM - /obj/item/stamp/law name = "law office's rubber stamp" icon_state = "stamp-law" dye_color = DYE_LAW -/obj/item/stamp/captain +/obj/item/stamp/head + +/obj/item/stamp/head/Initialize(mapload) + . = ..() + // All maps should have at least 1 of each head of staff stamp + REGISTER_REQUIRED_MAP_ITEM(1, INFINITY) + +/obj/item/stamp/head/captain name = "captain's rubber stamp" icon_state = "stamp-cap" dye_color = DYE_CAPTAIN -/obj/item/stamp/hop +/obj/item/stamp/head/hop name = "head of personnel's rubber stamp" icon_state = "stamp-hop" dye_color = DYE_HOP -/obj/item/stamp/hos +/obj/item/stamp/head/hos name = "head of security's rubber stamp" icon_state = "stamp-hos" dye_color = DYE_HOS -/obj/item/stamp/ce +/obj/item/stamp/head/ce name = "chief engineer's rubber stamp" icon_state = "stamp-ce" dye_color = DYE_CE -/obj/item/stamp/rd +/obj/item/stamp/head/rd name = "research director's rubber stamp" icon_state = "stamp-rd" dye_color = DYE_RD -/obj/item/stamp/cmo +/obj/item/stamp/head/cmo name = "chief medical officer's rubber stamp" icon_state = "stamp-cmo" dye_color = DYE_CMO +/obj/item/stamp/head/qm + name = "quartermaster's rubber stamp" + icon_state = "stamp-qm" + dye_color = DYE_QM + /obj/item/stamp/denied name = "\improper DENIED rubber stamp" icon_state = "stamp-deny" diff --git a/code/modules/unit_tests/_unit_tests.dm b/code/modules/unit_tests/_unit_tests.dm index da3c7922bc0b..d00abb28fe10 100644 --- a/code/modules/unit_tests/_unit_tests.dm +++ b/code/modules/unit_tests/_unit_tests.dm @@ -70,6 +70,12 @@ #else #define TEST_OUTPUT_GREEN(text) (text) #endif +/// Change color to yellow on ANSI terminal output, if enabled with -DANSICOLORS. +#ifdef ANSICOLORS +#define TEST_OUTPUT_YELLOW(text) "\x1B\x5B1;33m[text]\x1B\x5B0m" +#else +#define TEST_OUTPUT_YELLOW(text) (text) +#endif /// A trait source when adding traits through unit tests #define TRAIT_SOURCE_UNIT_TESTS "unit_tests" @@ -181,6 +187,7 @@ #include "reagent_names.dm" #include "reagent_recipe_collisions.dm" #include "reagent_transfer.dm" +#include "required_map_items.dm" #include "resist.dm" #include "say.dm" #include "screenshot_antag_icons.dm" diff --git a/code/modules/unit_tests/required_map_items.dm b/code/modules/unit_tests/required_map_items.dm new file mode 100644 index 000000000000..5f5fe135a950 --- /dev/null +++ b/code/modules/unit_tests/required_map_items.dm @@ -0,0 +1,77 @@ +/** + * Tests that all expected items are mapped in roundstart. + * + * How to add an item to this test: + * - Add the typepath(s) to setup_expected_types + * - In the type's initialize, REGISTER_REQUIRED_MAP_ITEM() a minimum and maximum + */ +/datum/unit_test/required_map_items + /// A list of all typepaths that we expect to be in the required items list + var/list/expected_types = list() + /// Subtypes to ignore. + var/list/ignored_types = list() + +/// Used to fill the expected types list with all the types we look for on the map. +/// This list will just be full of typepaths that we expect. +/// More detailed information about each item (mainly, how much of each should exist) is set on a per item basis +/datum/unit_test/required_map_items/proc/setup_expected_types() + expected_types += subtypesof(/obj/item/stamp/head) + expected_types += subtypesof(/obj/machinery/computer/department_orders) + expected_types += /obj/machinery/computer/communications + expected_types += /mob/living/carbon/human/species/monkey/punpun + expected_types += /mob/living/basic/pet/dog/corgi/ian + expected_types += /mob/living/simple_animal/pet/cat/runtime + expected_types += /mob/living/basic/parrot/poly + // monkestation start + expected_types += /obj/item/radio/radio_mic + expected_types += /obj/machinery/atm + expected_types += /obj/machinery/cassette/adv_cassette_deck + expected_types += /obj/machinery/cassette/dj_station + expected_types += /obj/machinery/cassette/mailbox + expected_types += /obj/machinery/cryopod + expected_types += /obj/machinery/station_map/engineering + expected_types += /obj/structure/cassette_rack/prefilled + ignored_types += /obj/machinery/cryopod/prison + // monkestation end + +/datum/unit_test/required_map_items/Run() + setup_expected_types() + + var/list/required_map_items = GLOB.required_map_items.Copy() + for(var/got_type in expected_types) + var/datum/required_item/item = required_map_items[got_type] + var/items_found = item?.total_amount || 0 + required_map_items -= got_type + if(items_found <= 0) + TEST_FAIL("Item [got_type] was not found, but is expected to be mapped in on mapload!") + continue + + if(items_found < item.minimum_amount) + TEST_FAIL("Item [got_type] should have at least [item.minimum_amount] mapped in but only had [items_found] on mapload!") + continue + + if(items_found > item.maximum_amount) + TEST_FAIL("Item [got_type] should have at most [item.maximum_amount] mapped in but had [items_found] on mapload!") + continue + required_map_items -= ignored_types + + // This primarily serves as a reminder to include the typepath in the expected types list above. + // However we can easily delete this line in the future if it runs into false positives. + TEST_ASSERT(length(required_map_items) == 0, "The following paths were found in required map items, but weren't checked: [english_list(required_map_items)]") + +/// Datum for tracking required map items +/datum/required_item + /// Type (exact) being tracked + var/tracked_type + /// How many exist in the world + var/total_amount = 0 + /// Min. amount of this type that should exist roundstart (inclusive) + var/minimum_amount = 1 + /// Max. amount of this type that should exist roundstart (inclusive) + var/maximum_amount = 1 + +/datum/required_item/New(tracked_type, minimum_amount = 1, maximum_amount = 1) + src.tracked_type = tracked_type + src.minimum_amount = minimum_amount + src.maximum_amount = maximum_amount + total_amount += 1 diff --git a/code/modules/unit_tests/unit_test.dm b/code/modules/unit_tests/unit_test.dm index fbcec6159f00..8647b026adc4 100644 --- a/code/modules/unit_tests/unit_test.dm +++ b/code/modules/unit_tests/unit_test.dm @@ -15,6 +15,8 @@ GLOBAL_DATUM(current_test, /datum/unit_test) GLOBAL_VAR_INIT(failed_any_test, FALSE) /// When unit testing, all logs sent to log_mapping are stored here and retrieved in log_mapping unit test. GLOBAL_LIST_EMPTY(unit_test_mapping_logs) +/// Global assoc list of required mapping items, [item typepath] to [required item datum]. +GLOBAL_LIST_EMPTY(required_map_items) /// A list of every test that is currently focused. /// Use the PERFORM_ALL_TESTS macro instead. @@ -165,43 +167,55 @@ GLOBAL_VAR_INIT(focused_tests, focused_tests()) GLOB.current_test = test var/duration = REALTIMEOFDAY + var/skip_test = (test_path in SSmapping.config.skipped_tests) + var/test_output_desc = "[test_path]" + var/message = "" log_world("::group::[test_path]") - test.Run() - duration = REALTIMEOFDAY - duration - GLOB.current_test = null - GLOB.failed_any_test |= !test.succeeded + if(skip_test) + log_world("[TEST_OUTPUT_YELLOW("SKIPPED")] Skipped run on map [SSmapping.config.map_name].") - var/list/log_entry = list() - var/list/fail_reasons = test.fail_reasons + else + + test.Run() + + duration = REALTIMEOFDAY - duration + GLOB.current_test = null + GLOB.failed_any_test |= !test.succeeded - for(var/reasonID in 1 to LAZYLEN(fail_reasons)) - var/text = fail_reasons[reasonID][1] - var/file = fail_reasons[reasonID][2] - var/line = fail_reasons[reasonID][3] + var/list/log_entry = list() + var/list/fail_reasons = test.fail_reasons - test.log_for_test(text, "error", file, line) + for(var/reasonID in 1 to LAZYLEN(fail_reasons)) + var/text = fail_reasons[reasonID][1] + var/file = fail_reasons[reasonID][2] + var/line = fail_reasons[reasonID][3] - // Normal log message - log_entry += "\tFAILURE #[reasonID]: [text] at [file]:[line]" + test.log_for_test(text, "error", file, line) - var/message = log_entry.Join("\n") - log_test(message) + // Normal log message + log_entry += "\tFAILURE #[reasonID]: [text] at [file]:[line]" - var/test_output_desc = "[test_path] [duration / 10]s" - if (test.succeeded) - log_world("[TEST_OUTPUT_GREEN("PASS")] [test_output_desc]") + if(length(log_entry)) + message = log_entry.Join("\n") + log_test(message) + + test_output_desc += " [duration / 10]s" + if (test.succeeded) + log_world("[TEST_OUTPUT_GREEN("PASS")] [test_output_desc]") log_world("::endgroup::") - if (!test.succeeded) + if (!test.succeeded && !skip_test) log_world("::error::[TEST_OUTPUT_RED("FAIL")] [test_output_desc]") - test_results[test_path] = list("status" = test.succeeded ? UNIT_TEST_PASSED : UNIT_TEST_FAILED, "message" = message, "name" = test_path) + var/final_status = skip_test ? UNIT_TEST_SKIPPED : (test.succeeded ? UNIT_TEST_PASSED : UNIT_TEST_FAILED) + test_results[test_path] = list("status" = final_status, "message" = message, "name" = test_path) qdel(test) + /// Builds (and returns) a list of atoms that we shouldn't initialize in generic testing, like Create and Destroy. /// It is appreciated to add the reason why the atom shouldn't be initialized if you add it to this list. /datum/unit_test/proc/build_list_of_uncreatables() diff --git a/monkestation/code/modules/cassettes/machines/cassette_rack.dm b/monkestation/code/modules/cassettes/machines/cassette_rack.dm index 3d3ef21aaebd..1b9141d52237 100644 --- a/monkestation/code/modules/cassettes/machines/cassette_rack.dm +++ b/monkestation/code/modules/cassettes/machines/cassette_rack.dm @@ -47,6 +47,7 @@ /obj/structure/cassette_rack/prefilled/Initialize(mapload) . = ..() + REGISTER_REQUIRED_MAP_ITEM(1, INFINITY) for(var/i in 1 to spawn_blanks) new /obj/item/device/cassette_tape/blank(src) for(var/id in unique_random_tapes(spawn_random)) diff --git a/monkestation/code/modules/cassettes/machines/dj_station.dm b/monkestation/code/modules/cassettes/machines/dj_station.dm index c0e6155c2b6d..67ac5075633c 100644 --- a/monkestation/code/modules/cassettes/machines/dj_station.dm +++ b/monkestation/code/modules/cassettes/machines/dj_station.dm @@ -35,6 +35,7 @@ GLOBAL_VAR(dj_booth) /obj/machinery/cassette/dj_station/Initialize(mapload) . = ..() + REGISTER_REQUIRED_MAP_ITEM(1, INFINITY) GLOB.dj_booth = src register_context() diff --git a/monkestation/code/modules/cassettes/machines/postbox.dm b/monkestation/code/modules/cassettes/machines/postbox.dm index 5d066a6843ce..14d5c7eb0660 100644 --- a/monkestation/code/modules/cassettes/machines/postbox.dm +++ b/monkestation/code/modules/cassettes/machines/postbox.dm @@ -10,6 +10,10 @@ anchored = TRUE density = TRUE +/obj/machinery/cassette/mailbox/Initialize(mapload) + . = ..() + REGISTER_REQUIRED_MAP_ITEM(1, INFINITY) + /obj/machinery/cassette/mailbox/attackby(obj/item/weapon, mob/user, params) if(!istype(weapon, /obj/item/device/cassette_tape) || !user.client) diff --git a/monkestation/code/modules/cassettes/machines/radio_mic.dm b/monkestation/code/modules/cassettes/machines/radio_mic.dm index 1e933ab7943d..75ecbcdc7994 100644 --- a/monkestation/code/modules/cassettes/machines/radio_mic.dm +++ b/monkestation/code/modules/cassettes/machines/radio_mic.dm @@ -25,6 +25,8 @@ /obj/item/radio/radio_mic/Initialize(mapload) . = ..() + REGISTER_REQUIRED_MAP_ITEM(1, INFINITY) + frequency = FREQ_RADIO broadcasting = TRUE use_command = TRUE diff --git a/monkestation/code/modules/cassettes/machines/stationary_mixer.dm b/monkestation/code/modules/cassettes/machines/stationary_mixer.dm index 71ce7031dbd0..7bd3e0e6b13a 100644 --- a/monkestation/code/modules/cassettes/machines/stationary_mixer.dm +++ b/monkestation/code/modules/cassettes/machines/stationary_mixer.dm @@ -10,6 +10,10 @@ ///Selection used to remove songs var/selection +/obj/machinery/cassette/adv_cassette_deck/Initialize(mapload) + . = ..() + REGISTER_REQUIRED_MAP_ITEM(1, INFINITY) + /obj/machinery/cassette/adv_cassette_deck/wrench_act(mob/living/user, obj/item/wrench) ..() default_unfasten_wrench(user, wrench, 15) diff --git a/monkestation/code/modules/cryopods/_cryopod.dm b/monkestation/code/modules/cryopods/_cryopod.dm index 4ea563ea72a7..3c85fe48b6f4 100644 --- a/monkestation/code/modules/cryopods/_cryopod.dm +++ b/monkestation/code/modules/cryopods/_cryopod.dm @@ -180,6 +180,7 @@ MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/computer/cryopod, 32) /obj/machinery/cryopod/Initialize(mapload) ..() + REGISTER_REQUIRED_MAP_ITEM(1, INFINITY) if(!quiet) GLOB.valid_cryopods += src return INITIALIZE_HINT_LATELOAD //Gotta populate the cryopod computer GLOB first diff --git a/monkestation/code/modules/holomaps/machinery.dm b/monkestation/code/modules/holomaps/machinery.dm index 46e435c5d4db..9204f8c77b3a 100644 --- a/monkestation/code/modules/holomaps/machinery.dm +++ b/monkestation/code/modules/holomaps/machinery.dm @@ -269,9 +269,12 @@ icon_state = "station_map_engi" circuit = /obj/item/circuitboard/machine/station_map/engineering -/obj/machinery/station_map/engineering/attack_hand(mob/user) +/obj/machinery/station_map/engineering/Initialize(mapload) . = ..() + REGISTER_REQUIRED_MAP_ITEM(1, INFINITY) +/obj/machinery/station_map/engineering/attack_hand(mob/user) + . = ..() if(.) holomap_datum.update_map(handle_overlays()) diff --git a/monkestation/code/modules/store/atm/_atm.dm b/monkestation/code/modules/store/atm/_atm.dm index 73ae049fad53..87aeeff4e101 100644 --- a/monkestation/code/modules/store/atm/_atm.dm +++ b/monkestation/code/modules/store/atm/_atm.dm @@ -7,8 +7,6 @@ max_integrity = 10000 - pixel_y = 30 - icon = 'monkestation/icons/obj/machines/atm.dmi' icon_state = "atm" @@ -21,8 +19,11 @@ ///static variable to check if a lottery is running var/static/lottery_running = FALSE +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/atm, 30) + /obj/machinery/atm/Initialize(mapload) . = ..() + REGISTER_REQUIRED_MAP_ITEM(1, INFINITY) if(!lottery_running) lottery_running = TRUE addtimer(CALLBACK(src, PROC_REF(pull_lottery_winner)), 20 MINUTES) diff --git a/tools/UpdatePaths/Scripts/74985_stamps.txt b/tools/UpdatePaths/Scripts/74985_stamps.txt new file mode 100644 index 000000000000..ae165537cb41 --- /dev/null +++ b/tools/UpdatePaths/Scripts/74985_stamps.txt @@ -0,0 +1,7 @@ +/obj/item/stamp/captain : /obj/item/stamp/head/captain {@OLD} +/obj/item/stamp/ce : /obj/item/stamp/head/ce {@OLD} +/obj/item/stamp/cmo : /obj/item/stamp/head/cmo {@OLD} +/obj/item/stamp/hop : /obj/item/stamp/head/hop {@OLD} +/obj/item/stamp/hos : /obj/item/stamp/head/hos {@OLD} +/obj/item/stamp/qm : /obj/item/stamp/head/qm {@OLD} +/obj/item/stamp/rd : /obj/item/stamp/head/rd {@OLD} diff --git a/tools/UpdatePaths/Scripts/monkestation/2346_varedited_atms_to_subtype_directionals.txt b/tools/UpdatePaths/Scripts/monkestation/2346_varedited_atms_to_subtype_directionals.txt new file mode 100644 index 000000000000..8703f62a9d17 --- /dev/null +++ b/tools/UpdatePaths/Scripts/monkestation/2346_varedited_atms_to_subtype_directionals.txt @@ -0,0 +1,5 @@ +/obj/machinery/atm{pixel_x=@UNSET;pixel_y=30} : /obj/machinery/atm/directional/north{@OLD;pixel_x=@SKIP;pixel_y=@SKIP} +/obj/machinery/atm{pixel_x=@UNSET;pixel_y=-30} : /obj/machinery/atm/directional/south{@OLD;pixel_x=@SKIP;pixel_y=@SKIP} +/obj/machinery/atm{pixel_x=-30;pixel_y=0} : /obj/machinery/atm/directional/west{@OLD;pixel_x=@SKIP;pixel_y=@SKIP} +/obj/machinery/atm{pixel_x=30;pixel_y=0} : /obj/machinery/atm/directional/east{@OLD;pixel_x=@SKIP;pixel_y=@SKIP} +/obj/machinery/atm : /obj/machinery/atm/directional/north